/* ==========================================
   MODERN IT SERVICE WEBSITE - COMPLETE REDESIGN
   ========================================== */

:root {
    --primary: #0ea5e9;
    --secondary: #06b6d4;
    --primary-dark: #0284c7;
    --success: #22c55e;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-family: var(--font-primary);
    --container-padding: 24px;
    --section-padding: 96px;
    --section-padding-mobile: 64px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 44px rgba(14, 165, 233, 0.16);
    --shadow-xl: 0 24px 60px rgba(14, 165, 233, 0.22);
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dark Mode Variables */
body.dark-mode {
    --dark: #e2e8f0;
    --dark-light: #cbd5e1;
    --gray: #94a3b8;
    --gray-light: #64748b;
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(14, 165, 233, 0.3);
    --shadow-xl: 0 20px 60px rgba(14, 165, 233, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 80px);
    max-width: 1200px;
    background: rgba(240, 249, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
    transition: all 0.3s ease;
}

body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.25);
}

.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dark-mode-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.dark-mode-toggle:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

body.dark-mode .dark-mode-toggle {
    background: rgba(14, 165, 233, 0.2);
}

.menu-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    color: var(--primary);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

body.dark-mode .menu-toggle {
    background: rgba(14, 165, 233, 0.2);
}

.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    display: block;
    max-height: 300px;
    padding: 16px 0;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    margin-top: 8px;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-link {
    display: block;
    padding: 12px 28px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
}

body.dark-mode .mobile-menu-link:hover {
    background: rgba(14, 165, 233, 0.2);
}

body.dark-mode .dark-mode-toggle i::before {
    content: "\f185";
    /* sun icon */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--dark);
    font-family: var(--font-heading);
}

/* Logo image handling: show light by default, dark when body.dark-mode is active */
.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    width: 120px;
    object-fit: contain;
    display: block;
}

/* Slightly smaller on small screens */
@media (max-width: 600px) {
    .logo-img {
        width: 96px;
        height: 96px;
    }
}

.logo-img--dark {
    display: none;
}

body.dark-mode .logo-img--dark {
    display: block;
}

body.dark-mode .logo-img--light {
    display: none;
}

/* Footer always uses dark logo */
.footer .logo-img--light {
    display: none !important;
}

.footer .logo-img--dark {
    display: block !important;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    transition: all 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: 160px 0 var(--section-padding);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 100%);
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 85%;
    height: auto;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 24px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-accent);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8;
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 16px;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

body.dark-mode .service-card {
    background: var(--bg-white);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-card-header {
    margin-bottom: 24px;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-heading);
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray);
    font-size: 15px;
}

.service-list i {
    color: var(--success);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.service-btn:hover {
    background: var(--primary);
    color: white;
}

.service-btn i {
    transition: transform 0.3s;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

body.dark-mode .benefits {
    background: var(--bg-light);
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--bg-light);
    z-index: 0;
}

body.dark-mode .benefits::before {
    background: rgba(14, 165, 233, 0.05);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.benefits-content {
    max-width: 500px;
}

.benefits-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.benefits-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.feature-text p {
    font-size: 15px;
    color: var(--gray);
}

.benefits-cards {
    display: grid;
    gap: 24px;
}

.benefit-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    border: 2px solid transparent;
}

body.dark-mode .benefit-card {
    background: var(--bg-white);
    border-color: rgba(14, 165, 233, 0.1);
}

body.dark-mode .benefit-card:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}

.benefit-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.benefit-icon-large {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.benefit-text {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing {
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid var(--bg-light);
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    position: relative;
}

body.dark-mode .pricing-card {
    background: var(--bg-white);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
}

.pricing-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.pricing-description {
    font-size: 14px;
    color: var(--gray);
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 2px solid var(--bg-light);
    border-bottom: 2px solid var(--bg-light);
}

.price-currency {
    font-size: 18px;
    color: var(--gray);
    font-weight: 600;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin: 0 8px;
}

.price-amount.special {
    font-size: 32px;
}

.price-period {
    font-size: 16px;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray);
}

.pricing-features i {
    color: var(--success);
    font-size: 18px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.pricing-btn.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.pricing-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.pricing-btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* ==========================================
   INFO BANNER
   ========================================== */

.info-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
}

.info-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.info-banner-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-banner-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-banner-content p {
    font-size: 14px;
    opacity: 0.9;
}

.info-banner-content a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.info-banner-content a:hover {
    text-decoration: underline;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.04) 0%, rgba(6, 182, 212, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before,
.contact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact::before {
    top: -40%;
    right: -15%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
}

.contact::after {
    bottom: -25%;
    left: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
}

.contact-shell {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: stretch;
    z-index: 1;
}

.contact-lead {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.12);
}

.contact-lead-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin: 12px 0 24px;
}

.contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.12), rgba(6, 182, 212, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.18);
    margin-bottom: 16px;
}

.contact-avatar {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.18);
    font-size: 18px;
}

.contact-highlight-text h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-highlight-text p {
    font-size: 14px;
    color: var(--gray);
}

.contact-highlight-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-highlight-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14, 165, 233, 0.3);
}

.contact-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray);
}

.contact-note i {
    color: var(--primary);
}

.contact-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    border-radius: 18px;
    padding: 18px 20px;
    text-decoration: none;
    border: 1px solid rgba(14, 165, 233, 0.14);
    box-shadow: 0 10px 32px rgba(14, 165, 233, 0.12);
    transition: all 0.25s ease;
}

.contact-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(14, 165, 233, 0.18);
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.option-icon.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.option-icon.primary {
    background: rgba(14, 165, 233, 0.12);
}

.option-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.option-sub {
    font-size: 14px;
    color: var(--gray);
}

.option-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.contact-option.whatsapp .option-value {
    color: #25d366;
}

.option-action {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.25s ease, background 0.25s ease;
}

.contact-option:hover .option-action {
    transform: translateX(3px);
    background: var(--gradient-primary);
    color: white;
}

.contact-option.whatsapp .option-action {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-option.whatsapp:hover .option-action {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.contact-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.12);
}

.inline-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.inline-item i {
    color: var(--primary);
}

.inline-divider {
    width: 1px;
    height: 20px;
    background: rgba(14, 165, 233, 0.2);
}

/* ==========================================
   TRUST SECTION
   ========================================== */

.trust {
    background: var(--bg-light);
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
    margin: 0 auto 20px;
}

.trust-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 14px;
    color: var(--gray);
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
    background: var(--bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(14, 165, 233, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-family: var(--font-heading);
    flex: 1;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 28px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
    margin-top: 120px;
}

body.dark-mode .footer {
    background: var(--bg-white);
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    color: var(--dark);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand-col {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-logo .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

body.dark-mode .footer-logo .logo-text {
    color: var(--dark);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

body.dark-mode .footer-tagline {
    color: var(--gray);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
}

body.dark-mode .footer-social a {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
}

body.dark-mode .footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

body.dark-mode .footer-col h4 {
    color: var(--dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 1);
}

body.dark-mode .footer-col a {
    color: var(--gray);
}

body.dark-mode .footer-col a:hover {
    color: var(--dark);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-divider {
    background: rgba(14, 165, 233, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

body.dark-mode .footer-bottom {
    color: var(--gray-light);
}

/* ==========================================
   LEGAL PAGES
   ========================================== */

.legal-content {
    padding: 160px 0 var(--section-padding);
    background: var(--bg-light);
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.legal-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 40px;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    margin-top: 24px;
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.legal-section ul li {
    color: var(--gray);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.legal-section ul li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 8px;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-back-link {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--bg-light);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-back i {
    font-size: 18px;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   FLOATING ACTION BUTTON
   ========================================== */

.fab-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s;
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(14, 165, 233, 0.5);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-content {
        max-width: 100%;
    }

    .info-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    /* ===== GLOBAL MOBILE UX/UI ===== */

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Better scroll behavior */
    html {
        scroll-padding-top: 80px;
    }

    /* ===== NAVIGATION - Optimized Touch Targets ===== */

    .navbar {
        top: 12px;
        width: calc(100% - 24px);
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
    }

    .nav-content {
        padding: 14px 20px;
    }

    .logo {
        gap: 10px;
    }

    .logo-text {
        font-size: 18px;
        font-weight: 700;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 12px;
    }

    /* Touch-optimized buttons */
    .menu-toggle,
    .dark-mode-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 14px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile menu */
    .mobile-menu.active {
        margin-top: 12px;
        padding: 12px 0;
    }

    .mobile-menu-links {
        gap: 8px;
    }

    .mobile-menu-link {
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 14px;
    }

    /* ===== HERO - Mobile-First Design ===== */

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
        gap: 8px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .hero-badge i {
        font-size: 14px;
    }

    /* Better hierarchy */
    .hero-title {
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .hero-text {
        font-size: 18px;
        margin-bottom: 16px;
        font-weight: 600;
        color: var(--primary);
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
        color: var(--gray);
    }

    /* Touch-optimized CTAs */
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        padding: 18px 28px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 16px;
        min-height: 56px;
        justify-content: center;
    }

    .btn-hero i {
        font-size: 18px;
    }

    /* Cleaner stats */
    .hero-stats {
        gap: 20px;
        margin-top: 40px;
        padding: 24px;
        background: rgba(14, 165, 233, 0.05);
        border-radius: 16px;
    }

    .stat-item {
        gap: 12px;
        flex: 1;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 24px;
        font-weight: 800;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Image positioning */
    .hero-image {
        order: 1;
        margin-top: 20px;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
    }

    /* ===== SECTION HEADERS - Better Hierarchy ===== */

    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .section-badge {
        font-size: 13px;
        padding: 8px 16px;
        gap: 8px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .section-badge i {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
        color: var(--gray);
    }

    /* ===== SERVICES - Card-Based Mobile Design ===== */

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 32px 24px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
    }

    .service-card-header {
        margin-bottom: 24px;
    }

    .service-icon-wrapper {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .service-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .service-list {
        gap: 14px;
        margin: 24px 0;
    }

    .service-list li {
        font-size: 15px;
        line-height: 1.6;
        padding: 12px;
        background: rgba(14, 165, 233, 0.03);
        border-radius: 12px;
    }

    .service-list i {
        font-size: 16px;
    }

    .service-btn {
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 14px;
        min-height: 52px;
    }

    .featured-badge {
        font-size: 12px;
        padding: 6px 14px;
        border-radius: 10px;
    }

    /* ===== BENEFITS - Mobile-Optimized Layout ===== */

    .benefits-wrapper {
        gap: 40px;
    }

    .benefits-content {
        text-align: center;
    }

    .benefits-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .benefits-features {
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-item {
        gap: 16px;
        padding: 16px;
        background: rgba(14, 165, 233, 0.03);
        border-radius: 14px;
        text-align: left;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        flex-shrink: 0;
    }

    .feature-text h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .feature-text p {
        font-size: 14px;
    }

    .benefit-card {
        padding: 32px 24px;
        border-radius: 20px;
        text-align: center;
    }

    .benefit-icon-large {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin: 0 auto 20px;
        border-radius: 16px;
    }

    .benefit-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .benefit-text {
        font-size: 15px;
        line-height: 1.6;
    }

    /* ===== PRICING - Enhanced Mobile Cards ===== */

    .pricing-grid {
        gap: 24px;
    }

    .pricing-card {
        padding: 36px 28px;
        border-radius: 24px;
        box-shadow: 0 4px 24px rgba(14, 165, 233, 0.12);
    }

    .pricing-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .pricing-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .pricing-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .pricing-price {
        margin: 32px 0;
    }

    .price-amount {
        font-size: 48px;
        font-weight: 800;
    }

    .price-period {
        font-size: 16px;
    }

    .price-currency {
        font-size: 18px;
    }

    .pricing-features {
        gap: 14px;
        margin: 28px 0;
    }

    .pricing-features li {
        font-size: 15px;
        padding: 12px;
        background: rgba(14, 165, 233, 0.03);
        border-radius: 12px;
    }

    .pricing-btn {
        padding: 18px 32px;
        font-size: 16px;
        border-radius: 14px;
        min-height: 56px;
        font-weight: 600;
    }

    .popular-badge {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 12px;
    }

    /* ===== INFO BANNER - Stacked Mobile Layout ===== */

    .info-banner {
        padding: 40px 0;
        overflow: hidden;
    }

    .info-banner .container {
        padding: 0;
    }

    .info-banner-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .info-banner-grid::-webkit-scrollbar {
        display: none;
    }

    .info-banner-item {
        flex: 0 0 85%;
        min-width: 85%;
        padding: 24px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        background: var(--bg-white);
        border: 2px solid rgba(14, 165, 233, 0.1);
    }

    .info-banner-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 14px;
        background: var(--gradient-primary);
        color: white;
    }

    .info-banner-content h4 {
        font-size: 15px;
        margin-bottom: 4px;
        color: var(--dark);
        font-weight: 700;
    }

    .info-banner-content p,
    .info-banner-content a {
        font-size: 14px;
        color: var(--gray);
    }

    .info-banner-content a {
        color: var(--primary);
        font-weight: 600;
    }
}

/* ===== FAQ - Improved Touch Interaction ===== */

.faq-grid {
    gap: 16px;
}

.faq-item {
    padding: 24px 20px;
    border-radius: 16px;
}

.faq-question {
    padding-right: 40px;
}

.faq-question h3 {
    font-size: 16px;
    line-height: 1.4;
}

.faq-question i {
    font-size: 16px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    padding-top: 16px;
}

/* ===== CONTACT - Mobile-First Design ===== */

.contact-shell {
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-lead {
    padding: 28px 22px;
}

.contact-lead-text {
    font-size: 16px;
}

.contact-meta {
    gap: 10px;
}

.meta-pill {
    width: 100%;
    justify-content: flex-start;
    font-size: 13px;
}

.contact-highlight {
    flex-direction: column;
    align-items: flex-start;
}

.contact-highlight-btn {
    width: 100%;
    justify-content: center;
}

.contact-stack {
    gap: 12px;
}

.contact-option {
    padding: 18px;
}

.option-title {
    font-size: 17px;
}

.option-sub {
    font-size: 13px;
}

.option-value {
    font-size: 14px;
}

.contact-inline {
    flex-direction: column;
    align-items: flex-start;
}

.inline-divider {
    width: 100%;
    height: 1px;
    background: rgba(14, 165, 233, 0.15);
}

/* ===== TRUST - Grid Layout ===== */

.trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trust-item {
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
}

.trust-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin: 0 auto 16px;
    border-radius: 14px;
}

.trust-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 14px;
}

/* ===== FOOTER - Mobile Optimized ===== */

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-wrapper {
        gap: 16px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand-col {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 13px;
        justify-content: flex-start;
    }

    .footer-divider {
        margin: 8px 0;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 16px;
        font-size: 12px;
    }
}

/* ==========================================
   HERO INFO CARDS & NEW SECTIONS
   ========================================== */

.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.hero-info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.hero-info-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-8px);
}

.hero-info-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.hero-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.hero-info-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-logo {
    aspect-ratio: 3/2;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.partner-logo.placeholder {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
}

/* USPs Section */
.usps {
    padding: var(--section-padding) 0;
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.usp-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.usp-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.usp-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.usp-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.usp-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Main Services - Category Cards */
.main-services {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.main-service-card {
    background: var(--bg-white);
    padding: 48px 36px;
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.main-service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
}

.main-service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.main-service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.service-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-intro {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 28px;
}

.service-highlights {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.service-highlights li {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-highlights i {
    color: var(--success);
    font-size: 16px;
}

.btn-service {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4);
}

/* Mobile Responsive - Main Services */
@media (max-width: 768px) {
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .main-service-card {
        padding: 36px 28px;
    }

    .service-heading {
        font-size: 18px;
    }
}

/* Services Section */
.service-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-top: 12px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 60px 0 80px 0;
}

.contact-card {
    background: var(--bg-white);
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.contact-card .contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.contact-card .contact-icon.whatsapp {
    color: #25d366;
}

.contact-card:hover .contact-icon.whatsapp {
    background: #25d366;
    color: white;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4);
}

.contact-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.meta-badge {
    background: rgba(14, 165, 233, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.meta-badge:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
}

.meta-badge i {
    font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0 60px 0;
    }

    .contact-meta {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================
   PAGE LAYOUTS
   ========================================== */

/* About Page */
.about-main {
    padding: 100px 0 80px;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 24px;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark);
}

.about-list i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Services Page */
.services-main {
    padding: 100px 0 80px;
}

.services-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

/* Services Detail Page */
.services-detail-main {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-hero {
    text-align: center;
    margin-bottom: 80px;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 100px;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-header i {
    font-size: 56px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
}

.category-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.category-header p {
    font-size: 16px;
    color: var(--gray);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 40px 20px;
    background: #F8F9FA;
    border-radius: 16px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    border-radius: 12px;
    color: white;
    font-size: 24px;
}

.item-content {
    flex-grow: 1;
}

.item-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.item-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-details:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-details::after {
    content: "→";
}

body.dark-mode .service-item {
    background: #1a1a2e;
    border-color: transparent;
}

body.dark-mode .service-item:hover {
    border-color: var(--primary);
}

body.dark-mode .item-content h3 {
    color: var(--light);
}

body.dark-mode .item-content p {
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .category-header h2 {
        font-size: 28px;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 24px;
    }
}

/* Services Tabs Interface */
.services-tabs-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
}

.services-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 0 20px;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-white);
    color: var(--dark);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.tab-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.tab-button.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.tab-button i {
    font-size: 18px;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.content-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.content-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 40px 20px;
    background: #F8F9FA;
    border-radius: 16px;
}

.flipcard {
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.flipcard-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.flipcard:hover .flipcard-inner {
    transform: rotateY(180deg);
}

.flipcard-front,
.flipcard-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.flipcard-front {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    position: relative;
}

.flipcard-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65));
}

.card-overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
}

.card-overlay i {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #0074A6;
    font-size: 24px;
}

.card-front-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
}

.card-front-content h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
}

.flipcard-back {
    transform: rotateY(180deg);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flipcard-back>i {
    color: #0074A6;
    font-size: 36px;
    margin-bottom: 8px;
}

.flipcard-back h3 {
    color: #0074A6;
    font-size: 20px;
    margin: 0 0 10px;
}

.flipcard-back ul {
    width: 100%;
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    text-align: left;
}

.flipcard-back li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #4b5563;
    font-size: 13px;
}

.flipcard-back li i {
    color: #4CAF50;
}

.btn-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid #0074A6;
    border-radius: 8px;
    color: #0074A6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #0074A6;
    color: #fff;
}

body.dark-mode .flipcard-back {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
}

body.dark-mode .flipcard-back h3 {
    color: #38bdf8;
}

body.dark-mode .flipcard-back li {
    color: #d1d5db;
}

body.dark-mode .btn-more {
    border-color: #38bdf8;
    color: #38bdf8;
}

body.dark-mode .btn-more:hover {
    background: #38bdf8;
    color: #0b1220;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-tabs {
        gap: 12px;
        padding: 0 10px;
    }

    .tab-button {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }

    .tab-button i {
        font-size: 16px;
    }

    .tab-button span {
        display: none;
    }

    .content-header h2 {
        font-size: 28px;
    }

    .content-header p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 30px 10px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 20px 10px;
    }
}

/* Contact Page */
.contact-main {
    padding: 100px 0 80px;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    background: var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

.contact-option i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-option {
    color: var(--dark);
    font-weight: 600;
    font-size: 18px;
}

.contact-note {
    background: rgba(14, 165, 233, 0.1);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--dark);
    font-size: 15px;
}

.contact-note i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Remote Support Page */
.remote-support-main {
    padding: 100px 0 80px;
}

.remote-support-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark);
}

.remote-support-desc {
    text-align: center;
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.remote-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.remote-support-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.remote-support-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.remote-support-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.remote-support-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-light);
}

.remote-support-card-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.remote-support-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.remote-support-downloads {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Language Switcher */
.lang-switcher {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.lang-switcher:hover {
    background: var(--primary);
    color: white;
}

body.dark-mode .lang-switcher {
    background: var(--dark);
    border-color: var(--primary);
    color: var(--primary);
}

body.dark-mode .lang-switcher:hover {
    background: var(--primary);
    color: white;
}

/* ==========================================
   RESPONSIVE SECTIONS
   ========================================== */

@media (max-width: 768px) {
    .hero-info-cards {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .usps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .remote-support-grid,
    .contact-options {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-title,
    .services-title,
    .contact-title,
    .remote-support-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .about-main,
    .services-main,
    .contact-main,
    .remote-support-main {
        padding: 60px 0 40px;
    }

    .remote-support-card,
    .contact-option {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {

    .usp-card,
    .hero-info-card {
        padding: 24px 16px;
    }

    .about-list li,
    .about-text p,
    .remote-support-desc {
        font-size: 14px;
    }

    .btn-download {
        font-size: 13px;
        padding: 10px 16px;
        flex: 1;
    }

    .remote-support-downloads {
        flex-direction: column;
    }

    .contact-note {
        font-size: 13px;
        padding: 16px;
    }
}

/* ===== FAB BUTTON - Touch Optimized ===== */

.fab-button {
    width: 56px;
    height: 56px;
    font-size: 22px;
    bottom: 24px;
    right: 24px;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

/* ===== SERVICE DETAIL PAGE ===== */

.service-detail-main {
    padding: 80px 0 60px;
    background: var(--bg-light);
    min-height: 100vh;
}

.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 60px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.service-hero-back {
    position: absolute;
    top: 24px;
    left: 24px;
}

.service-hero-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-hero-back a:hover {
    gap: 12px;
}

.service-hero-content {
    padding-top: 40px;
}

.service-category-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    color: white;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.service-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.service-hero p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
}

.service-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 120px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.service-description {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.description-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.description-wrapper p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.description-wrapper p:last-child {
    margin-bottom: 0;
}

.service-section {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.section-header-small {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.section-header-small i {
    font-size: 32px;
    color: var(--primary);
}

.section-header-small h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-family: var(--font-heading);
}

/* Typical Problems */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problem-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
    cursor: default;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    border-radius: 12px;
    color: white;
    font-size: 24px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Solutions Timeline */
.solutions-timeline {
    display: grid;
    gap: 32px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    color: white;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    color: white;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 24px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.service-cta {
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
}

.service-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-cta p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

body.dark-mode .service-hero {
    background: #1a1a2e;
}

body.dark-mode .service-hero h1 {
    color: var(--light);
}

body.dark-mode .service-description {
    background: #1a1a2e;
}

body.dark-mode .description-wrapper h2 {
    color: var(--light);
}

body.dark-mode .service-section {
    background: #1a1a2e;
}

body.dark-mode .section-header-small h2 {
    color: var(--light);
}

body.dark-mode .problem-card {
    background: #0f0f1e;
}

body.dark-mode .problem-card h3 {
    color: var(--light);
}

body.dark-mode .timeline-content h3 {
    color: var(--light);
}

body.dark-mode .faq-question {
    background: #0f0f1e;
    color: var(--light);
}

body.dark-mode .faq-item {
    border-color: #0f0f1e;
}

@media (max-width: 768px) {
    .service-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px;
    }

    .service-hero h1 {
        font-size: 32px;
    }

    .service-hero-icon {
        font-size: 80px;
        order: -1;
    }

    .service-description,
    .service-section {
        padding: 32px 24px;
    }

    .section-header-small h2 {
        font-size: 24px;
    }

    .timeline-item {
        grid-template-columns: auto 1fr;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .service-cta {
        padding: 40px 24px;
    }

    .service-cta h2 {
        font-size: 26px;
    }
}

/* ===== ANIMATIONS - Reduced Motion Respect ===== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   PAGE SECTIONS - GENERIC STYLING
   ========================================== */

.page-hero {
    position: relative;
    padding: 120px 0 80px;
    padding-top: 180px;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(14, 165, 233, 0.05) 100%);
    overflow: hidden;
}

body.dark-mode .page-hero {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.page-hero .hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.page-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.page-hero .hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

body.dark-mode .page-hero .hero-title {
    color: var(--dark);
}

body.dark-mode .page-hero .hero-subtitle {
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
        padding-top: 140px;
    }

    .page-hero .hero-title {
        font-size: 36px;
    }

    .page-hero .hero-subtitle {
        font-size: 16px;
    }
}

/* Page Section */
.page-section {
    padding: var(--section-padding) 0;
}

.page-section.alt-bg {
    background: var(--bg-light);
}

body.dark-mode .page-section.alt-bg {
    background: var(--bg-white);
}

@media (max-width: 768px) {
    .page-section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-header.text-center {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.dark-mode .section-badge {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

body.dark-mode .section-title {
    color: var(--dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

body.dark-mode .section-subtitle {
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    gap: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}

body.dark-mode .about-text p {
    color: var(--gray-light);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

body.dark-mode .stat-label {
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Value Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

body.dark-mode .value-card {
    background: var(--dark-light);
    box-shadow: var(--shadow-md);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

body.dark-mode .value-card h3 {
    color: var(--dark);
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

body.dark-mode .value-card p {
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        font-size: 36px;
    }
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.showcase-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-align: center;
}

body.dark-mode .showcase-item {
    background: var(--dark-light);
    box-shadow: var(--shadow-md);
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.showcase-icon {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 20px;
}

.showcase-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

body.dark-mode .showcase-item h3 {
    color: var(--dark);
}

.showcase-item p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

body.dark-mode .showcase-item p {
    color: var(--gray-light);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   SERVICES PAGE STYLES
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

body.dark-mode .service-card {
    background: var(--dark-light);
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    transition: color 0.3s ease;
}

body.dark-mode .service-card h3 {
    color: var(--dark);
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

body.dark-mode .service-card p {
    color: var(--gray-light);
}

.service-arrow {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--primary);
}

.service-card:hover .service-arrow {
    opacity: 1;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-card-icon {
        font-size: 32px;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .service-card p {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-card {
        padding: 16px 12px;
    }

    .service-card-icon {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 12px;
    }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.method-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

body.dark-mode .method-card {
    background: var(--dark-light);
    box-shadow: var(--shadow-md);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    font-size: 52px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: white;
    font-weight: 600;
}

.method-icon.phone-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.method-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #1ea953 100%);
}

.method-icon.email-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.method-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

body.dark-mode .method-card h3 {
    color: var(--dark);
}

.method-card p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

body.dark-mode .method-card p {
    color: var(--gray-light);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    font-size: 16px;
}

.contact-link:hover {
    gap: 12px;
}

.method-hours {
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 10px !important;
}

body.dark-mode .method-hours {
    color: var(--gray);
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

body.dark-mode .info-card {
    background: var(--dark-light);
}

.info-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

body.dark-mode .info-card h3 {
    color: var(--dark);
}

.info-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

body.dark-mode .info-content p {
    color: var(--gray-light);
}

.info-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.text-muted {
    color: var(--gray-light) !important;
    font-size: 12px !important;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Contact Form */
.form-wrapper {
    max-width: 600px;
    margin: 50px auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

body.dark-mode .form-wrapper {
    background: var(--dark-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
}

body.dark-mode .form-group label {
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--dark);
    background: var(--bg-white);
    transition: border-color 0.3s ease;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: var(--dark);
    color: var(--dark-light);
    border-color: rgba(14, 165, 233, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.form-checkbox a {
    color: var(--primary);
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }
}

/* ==========================================
   SUPPORT PAGE STYLES
   ========================================== */

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.support-tool {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

body.dark-mode .support-tool {
    background: var(--dark-light);
    box-shadow: var(--shadow-md);
}

.support-tool:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tool-icon {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 20px;
}

.support-tool h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

body.dark-mode .support-tool h3 {
    color: var(--dark);
}

.support-tool p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

body.dark-mode .support-tool p {
    color: var(--gray-light);
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    text-align: left;
}

.tool-features span {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tool-features span i {
    color: var(--success);
    font-weight: bold;
}

body.dark-mode .tool-features span {
    color: var(--gray-light);
}

.tool-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-secondary {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tool-buttons {
        flex-direction: column;
    }
}

/* Support Instructions */
.support-instructions {
    margin-top: 50px;
}

.instruction-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

body.dark-mode .instruction-box {
    background: var(--dark-light);
}

.instruction-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

body.dark-mode .instruction-box h4 {
    color: var(--dark);
}

.instruction-box ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.instruction-box li {
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 15px;
}

body.dark-mode .instruction-box li {
    color: var(--gray-light);
}

.security-note {
    background: rgba(16, 185, 129, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--success);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
}

body.dark-mode .step-card {
    background: var(--dark-light);
    box-shadow: var(--shadow-md);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-icon {
    font-size: 48px;
    color: var(--primary);
    margin: 30px 0 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

body.dark-mode .step-card h3 {
    color: var(--dark);
}

.step-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

body.dark-mode .step-card p {
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 50px auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.dark-mode .faq-item {
    background: var(--dark-light);
    border-color: rgba(14, 165, 233, 0.2);
}

.faq-toggle {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

body.dark-mode .faq-toggle {
    color: var(--dark);
}

.faq-toggle:hover {
    background: rgba(14, 165, 233, 0.05);
}

body.dark-mode .faq-toggle:hover {
    background: rgba(14, 165, 233, 0.1);
}

.faq-toggle i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-toggle {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
}

body.dark-mode .faq-item.active .faq-toggle {
    background: rgba(14, 165, 233, 0.15);
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 20px 24px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

body.dark-mode .faq-content p {
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .faq-container {
        margin: 40px auto;
    }

    .faq-toggle {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-content p {
        padding: 16px 20px;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: var(--section-padding) 0;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

body.dark-mode .cta-content h2 {
    color: var(--dark);
}

.cta-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

body.dark-mode .cta-content p {
    color: var(--gray-light);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .cta-section {
        padding: var(--section-padding-mobile) 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Services Tab Flipcards - Square Stable Layout */
.services-content .services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.services-content .flipcard {
    width: 100%;
    aspect-ratio: 1 / 1;
    perspective: 1000px;
    position: relative;
    cursor: pointer;
}

.services-content .flipcard-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    will-change: transform;
}

.services-content .flipcard:hover .flipcard-inner {
    transform: rotateY(180deg);
}

.services-content .flipcard-front,
.services-content .flipcard-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 14px;
    overflow: hidden;
}

.services-content .flipcard-front {
    background: #ffffff;
    border: 1px solid rgba(30, 144, 255, 0.15);
    box-shadow: 0 8px 22px rgba(2, 132, 199, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 12px;
}

.services-content .flipcard-front::before {
    display: none;
}

.services-content .card-overlay {
    position: static;
}

.services-content .card-overlay i {
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    color: #1e90ff;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
}

.services-content .card-front-content {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
}

.services-content .card-front-content h3 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.35;
    text-align: center;
}

.services-content .flipcard-back {
    transform: rotateY(180deg);
    background: #1e90ff;
    color: #ffffff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}

.services-content .flipcard-back>i {
    display: none;
}

.services-content .flipcard-back h3 {
    color: #ffffff;
    margin: 0;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.35;
}

.services-content .flipcard-back ul {
    list-style: none;
    margin: auto 0 0;
    padding: 0;
}

.services-content .flipcard-back li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #ffffff;
    font-size: clamp(0.72rem, 0.95vw, 0.82rem);
    line-height: 1.35;
    margin-bottom: 5px;
}

.services-content .flipcard-back li i {
    color: #ffffff;
    margin-top: 1px;
}

.services-content .btn-more {
    margin-top: 10px;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
}

.services-content .btn-more:hover {
    background: #ffffff;
    color: #1e90ff;
}

@media (max-width: 1024px) {
    .services-content .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services-content .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================
   GLOBAL UI POLISH
   ========================================== */
body {
    background: var(--bg-light);
    color: var(--dark);
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

.hero,
.page-hero {
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
}

.main-service-card,
.service-card,
.service-item,
.value-card,
.showcase-item,
.method-card,
.info-card,
.support-tool,
.step-card,
.pricing-card,
.benefit-card,
.faq-item,
.contact-card,
.contact-option,
.form-wrapper,
.remote-support-card,
.service-description,
.service-section,
.legal-wrapper {
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: var(--shadow-md);
}

.main-service-card:hover,
.service-card:hover,
.service-item:hover,
.value-card:hover,
.showcase-item:hover,
.method-card:hover,
.info-card:hover,
.support-tool:hover,
.step-card:hover,
.pricing-card:hover,
.benefit-card:hover,
.contact-card:hover,
.contact-option:hover,
.remote-support-card:hover {
    box-shadow: var(--shadow-lg);
}

.section-title,
.hero-title,
.services-hero h1,
.legal-title,
.about-title,
.services-title,
.contact-title,
.remote-support-title {
    letter-spacing: -0.02em;
}

.btn-primary,
.btn-service,
.btn-hero,
.btn-download,
.service-btn,
.pricing-btn.primary,
.contact-link {
    border-radius: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 10px;
}

.flipcard-front,
.flipcard-back {
    border: 1px solid rgba(14, 165, 233, 0.15);
}

body.dark-mode .main-service-card,
body.dark-mode .service-card,
body.dark-mode .service-item,
body.dark-mode .value-card,
body.dark-mode .showcase-item,
body.dark-mode .method-card,
body.dark-mode .info-card,
body.dark-mode .support-tool,
body.dark-mode .step-card,
body.dark-mode .pricing-card,
body.dark-mode .benefit-card,
body.dark-mode .faq-item,
body.dark-mode .contact-card,
body.dark-mode .contact-option,
body.dark-mode .form-wrapper,
body.dark-mode .remote-support-card,
body.dark-mode .service-description,
body.dark-mode .service-section,
body.dark-mode .legal-wrapper,
body.dark-mode .flipcard-front,
body.dark-mode .flipcard-back {
    border-color: rgba(56, 189, 248, 0.2);
}

/* Services page: 3 cards per row centered */
.services-content .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-content .services-grid .flipcard {
    width: 100%;
    max-width: 360px;
}

@media (max-width: 1024px) {
    .services-content .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .services-content .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service cards: back side background images */
.services-content .tab-content#it-services .flipcard-back {
    --service-back-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1200&q=80');
}

.services-content .tab-content#web-design .flipcard-back {
    --service-back-image: url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?auto=format&fit=crop&w=1200&q=80');
}

.services-content .tab-content#it-consulting .flipcard-back {
    --service-back-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80');
}

.services-content .flipcard-back {
    position: relative;
    background-image:
        linear-gradient(155deg, rgba(8, 47, 73, 0.86), rgba(2, 132, 199, 0.74)),
        var(--service-back-image, url('https://images.unsplash.com/photo-1518773553398-650c184e0bb3?auto=format&fit=crop&w=1200&q=80'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-content .flipcard-back>i,
.services-content .flipcard-back h3,
.services-content .flipcard-back li {
    color: #f8fafc;
}

.services-content .flipcard-back li i {
    color: #86efac;
}

.services-content .flipcard-back .btn-more {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.services-content .flipcard-back .btn-more:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

body.dark-mode .services-content .flipcard-back {
    background-image:
        linear-gradient(155deg, rgba(2, 6, 23, 0.88), rgba(3, 105, 161, 0.72)),
        var(--service-back-image, url('https://images.unsplash.com/photo-1518773553398-650c184e0bb3?auto=format&fit=crop&w=1200&q=80'));
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner__content {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-banner__content p {
    margin: 0;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner__content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.cookie-banner__content a:hover {
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cookie-btn--secondary {
    background: rgba(14, 165, 233, 0.12);
    color: var(--primary-dark);
}

.cookie-btn--primary {
    background: var(--gradient-primary);
    color: #ffffff;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

body.dark-mode .cookie-banner {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(56, 189, 248, 0.35);
}

body.dark-mode .cookie-banner__content p {
    color: var(--dark);
}

body.dark-mode .cookie-btn--secondary {
    background: rgba(56, 189, 248, 0.18);
    color: #bae6fd;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* ==========================================
   DARK MODE - COMPLETE COVERAGE
   ========================================== */
body.dark-mode {
    background: var(--bg-light);
    color: var(--dark);
}

body.dark-mode .legal-content {
    background: var(--bg-light);
}

body.dark-mode .legal-wrapper,
body.dark-mode .faq-item,
body.dark-mode .instruction-box,
body.dark-mode .contact-option,
body.dark-mode .meta-badge {
    background: var(--bg-white);
}

body.dark-mode .legal-section h2,
body.dark-mode .legal-section h3,
body.dark-mode .legal-section h4,
body.dark-mode .service-heading,
body.dark-mode .service-hero-back a,
body.dark-mode .content-header h2,
body.dark-mode .tab-button {
    color: var(--dark);
}

body.dark-mode .legal-section p,
body.dark-mode .legal-section ul li,
body.dark-mode .faq-answer p,
body.dark-mode .service-intro,
body.dark-mode .service-highlights li,
body.dark-mode .service-list li,
body.dark-mode .contact-note,
body.dark-mode .contact-meta,
body.dark-mode .text-muted {
    color: var(--gray);
}

body.dark-mode .legal-back-link {
    border-top-color: rgba(148, 163, 184, 0.22);
}

body.dark-mode .meta-badge,
body.dark-mode .service-category-badge,
body.dark-mode .tab-button,
body.dark-mode .faq-question {
    border-color: rgba(56, 189, 248, 0.25);
}

body.dark-mode .meta-badge,
body.dark-mode .service-category-badge,
body.dark-mode .contact-note {
    background: rgba(14, 165, 233, 0.14);
}

body.dark-mode .tab-button:hover,
body.dark-mode .faq-question:hover {
    background: rgba(14, 165, 233, 0.16);
    color: var(--dark);
}

body.dark-mode .tab-button.active {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
}

body.dark-mode .services-content .flipcard-front {
    background: var(--bg-white);
    border-color: rgba(56, 189, 248, 0.25);
}

body.dark-mode .services-content .card-front-content h3 {
    color: var(--dark);
}

body.dark-mode .services-content .card-overlay i {
    color: #38bdf8;
}

body.dark-mode .btn-secondary,
body.dark-mode .btn-back,
body.dark-mode .btn-cta,
body.dark-mode .btn-details,
body.dark-mode .btn-primary,
body.dark-mode .btn-service,
body.dark-mode .btn-download {
    color: #ffffff;
}

body.dark-mode .btn-link,
body.dark-mode .legal-section a,
body.dark-mode .contact-link {
    color: #38bdf8;
}