    /* ═══════════════════════════════════════════════
   CSS VARIABLES & ROOT
═══════════════════════════════════════════════ */
    :root {
        --blue-primary: #2563eb;
        --blue-light: #3b82f6;
        --blue-dark: #1d4ed8;
        --cyan: #06b6d4;
        --indigo: #4f46e5;
        --purple: #7c3aed;

        /* Light theme */
        --bg: #f8faff;
        --bg-card: #ffffff;
        --bg-nav: rgba(248, 250, 255, 0.92);
        --bg-section: #eef2ff;
        --text-primary: #0f172a;
        --text-secondary: #475569;
        --text-muted: #94a3b8;
        --border: #e2e8f0;
        --shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
        --shadow-hover: 0 12px 40px rgba(37, 99, 235, 0.18);
        --hero-bg: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%);
        --grid-color: rgba(37, 99, 235, 0.06);
    }

    [data-theme="dark"] {
        --bg: #080e1e;
        --bg-card: #111827;
        --bg-nav: rgba(8, 14, 30, 0.95);
        --bg-section: #0d1626;
        --text-primary: #f1f5f9;
        --text-secondary: #94a3b8;
        --text-muted: #64748b;
        --border: #1e293b;
        --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        --shadow-hover: 0 12px 40px rgba(37, 99, 235, 0.3);
        --hero-bg: linear-gradient(135deg, #020817 0%, #0d1b3e 50%, #1e3a8a 100%);
        --grid-color: rgba(37, 99, 235, 0.08);
    }

    /* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--bg);
        color: var(--text-primary);
        transition: background 0.3s, color 0.3s;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
        font-family: 'Syne', sans-serif;
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    img {
        max-width: 100%;
    }

    button {
        cursor: pointer;
        border: none;
        outline: none;
    }

    ul {
        list-style: none;
    }

    /* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-nav);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        transition: all 0.3s;
    }

    .nav.scrolled {
        box-shadow: var(--shadow);
    }

    .nav-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-family: 'Syne', sans-serif;
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--text-primary);
    }

    .nav-logo-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--blue-primary), var(--purple));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1rem;
    }

    .nav-logo span {
        color: var(--blue-primary);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .nav-links a {
        padding: 0.45rem 0.85rem;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-secondary);
        transition: all 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--bg-section);
        color: var(--blue-primary);
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    /* Theme toggle */
    .theme-toggle {
        width: 52px;
        height: 28px;
        border-radius: 14px;
        background: var(--border);
        position: relative;
        transition: background 0.3s;
        border: none;
        cursor: pointer;
    }

    [data-theme="dark"] .theme-toggle {
        background: var(--blue-primary);
    }

    .theme-toggle::before {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: white;
        transition: transform 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    [data-theme="dark"] .theme-toggle::before {
        transform: translateX(24px);
    }

    .theme-icon {
        font-size: 0.8rem;
        color: var(--text-secondary);
    }

    .btn-nav {
        padding: 0.5rem 1.1rem;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--blue-primary), var(--indigo));
        color: white;
        font-size: 0.88rem;
        font-weight: 600;
        font-family: 'DM Sans', sans-serif;
        transition: all 0.25s;
        box-shadow: 0 2px 12px rgba(37, 99, 235, 0.3);
    }

    .btn-nav:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    }

    /* Hamburger */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile nav */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-nav);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem 1.5rem;
        z-index: 999;
        flex-direction: column;
        gap: 0.25rem;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        padding: 0.75rem 1rem;
        border-radius: 10px;
        font-weight: 500;
        color: var(--text-secondary);
        transition: all 0.2s;
    }

    .mobile-menu a:hover {
        background: var(--bg-section);
        color: var(--blue-primary);
    }

    /* ═══════════════════════════════════════════════
   PAGES
═══════════════════════════════════════════════ */
    .page {
        display: none;
    }

    .page.active {
        display: block;
    }

    /* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
    .hero {
        background: var(--hero-bg);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding-top: 70px;
    }

    .hero-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(var(--grid-color) 1px, transparent 1px),
            linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
        background-size: 60px 60px;
        opacity: 0.4;
    }

    .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.2;
        animation: floatOrb 8s ease-in-out infinite;
    }

    .hero-orb-1 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, #2563eb, transparent);
        top: -200px;
        right: -100px;
    }

    .hero-orb-2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, #7c3aed, transparent);
        bottom: -100px;
        left: -100px;
        animation-delay: -4s;
    }

    @keyframes floatOrb {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-30px) scale(1.05);
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(37, 99, 235, 0.2);
        border: 1px solid rgba(37, 99, 235, 0.4);
        color: #93c5fd;
        padding: 0.35rem 1rem;
        border-radius: 50px;
        font-size: 0.82rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
        animation: fadeUp 0.6s ease both;
    }

    .hero-title {
        font-size: clamp(2.8rem, 6vw, 5rem);
        font-weight: 800;
        color: white;
        line-height: 1.05;
        margin-bottom: 0.5rem;
        animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero-title .accent {
        background: linear-gradient(135deg, #60a5fa, #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-tagline {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        color: #93c5fd;
        font-weight: 300;
        margin-bottom: 2.5rem;
        animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-btns {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--blue-primary), var(--indigo));
        color: white;
        font-weight: 600;
        font-size: 1rem;
        font-family: 'DM Sans', sans-serif;
        box-shadow: 0 4px 24px rgba(37, 99, 235, 0.4);
        transition: all 0.25s;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
    }

    .btn-secondary {
        padding: 0.875rem 2rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        font-weight: 600;
        font-size: 1rem;
        font-family: 'DM Sans', sans-serif;
        transition: all 0.25s;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    .hero-stats {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 4rem;
        animation: fadeUp 0.6s 0.5s ease both;
    }

    .hero-stat {
        text-align: center;
        color: white;
    }

    .hero-stat strong {
        display: block;
        font-family: 'Syne', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: #60a5fa;
    }

    .hero-stat span {
        font-size: 0.82rem;
        color: #93c5fd;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ═══════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════ */
    .section {
        padding: 5rem 1.5rem;
    }

    .section-alt {
        background: var(--bg-section);
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .section-label {
        display: inline-block;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.1));
        border: 1px solid rgba(37, 99, 235, 0.2);
        color: var(--blue-primary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 0.3rem 0.9rem;
        border-radius: 50px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .section-sub {
        font-size: 1.05rem;
        color: var(--text-secondary);
        max-width: 580px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════
   ABOUT PREVIEW
═══════════════════════════════════════════════ */
    .about-preview {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-text .section-label {
        text-align: left;
    }

    .about-text h2 {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        font-weight: 800;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .about-text p {
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .about-feat {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-secondary);
    }

    .about-feat i {
        color: var(--blue-primary);
        font-size: 0.85rem;
    }

    .about-visual {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        background: linear-gradient(135deg, #1e3a8a, #4f46e5);
        padding: 2.5rem;
        min-height: 380px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .about-visual-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.1;
        background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
        background-size: 20px 20px;
    }

    .about-visual-icon {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
    }

    .about-visual h3 {
        font-size: 1.4rem;
        color: white;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

    .about-visual p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-top: 0.5rem;
        position: relative;
        z-index: 1;
    }

    /* ═══════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════ */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: all 0.3s;
        cursor: default;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue-primary), var(--purple));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
        transition: transform 0.3s;
    }

    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(-5deg);
    }

    .service-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.6rem;
    }

    .service-card p {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.65;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        margin-top: 1.2rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--blue-primary);
        transition: gap 0.2s;
    }

    .service-card:hover .service-link {
        gap: 0.7rem;
    }

    /* Color variants */
    .ic-blue {
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
    }

    .ic-purple {
        background: rgba(124, 58, 237, 0.1);
        color: #7c3aed;
    }

    .ic-cyan {
        background: rgba(6, 182, 212, 0.1);
        color: #06b6d4;
    }

    .ic-green {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
    }

    .ic-orange {
        background: rgba(249, 115, 22, 0.1);
        color: #f97316;
    }

    .ic-pink {
        background: rgba(236, 72, 153, 0.1);
        color: #ec4899;
    }

    .ic-yellow {
        background: rgba(245, 158, 11, 0.1);
        color: #f59e0b;
    }

    .ic-red {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }

    .ic-teal {
        background: rgba(20, 184, 166, 0.1);
        color: #14b8a6;
    }

    /* ═══════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════ */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .why-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        box-shadow: var(--shadow);
        transition: all 0.3s;
    }

    .why-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

    .why-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blue-primary), var(--indigo));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        margin: 0 auto 1.25rem;
    }

    .why-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .why-card p {
        font-size: 0.87rem;
        color: var(--text-secondary);
        line-height: 1.65;
    }

    /* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .testimonial-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: all 0.3s;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

    .stars {
        color: #f59e0b;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .testimonial-card p {
        font-size: 0.93rem;
        color: var(--text-secondary);
        line-height: 1.75;
        font-style: italic;
        margin-bottom: 1.5rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1rem;
        color: white;
        font-family: 'Syne', sans-serif;
    }

    .author-info strong {
        display: block;
        font-size: 0.9rem;
        font-weight: 700;
    }

    .author-info span {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    /* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
    .cta-section {
        background: linear-gradient(135deg, #1e3a8a, #4f46e5);
        border-radius: 28px;
        padding: 4rem 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px,
                transparent 0, transparent 50%);
        background-size: 30px 30px;
    }

    .cta-section h2 {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        color: white;
        margin-bottom: 1rem;
        position: relative;
    }

    .cta-section p {
        color: rgba(255, 255, 255, 0.75);
        max-width: 500px;
        margin: 0 auto 2rem;
        line-height: 1.7;
        position: relative;
    }

    .cta-btns {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }

    .btn-white {
        padding: 0.875rem 2rem;
        border-radius: 12px;
        background: white;
        color: var(--blue-dark);
        font-weight: 700;
        font-size: 1rem;
        font-family: 'DM Sans', sans-serif;
        transition: all 0.25s;
    }

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .btn-outline-white {
        padding: 0.875rem 2rem;
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: white;
        font-weight: 600;
        font-size: 1rem;
        font-family: 'DM Sans', sans-serif;
        background: transparent;
        transition: all 0.25s;
    }

    .btn-outline-white:hover {
        border-color: white;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
    .page-hero {
        background: var(--hero-bg);
        padding: 8rem 1.5rem 5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-hero .hero-grid {
        opacity: 0.3;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        color: white;
        position: relative;
        z-index: 2;
    }

    .page-hero p {
        color: #93c5fd;
        margin-top: 1rem;
        font-size: 1.1rem;
        position: relative;
        z-index: 2;
    }

    .about-full {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .about-full p {
        color: var(--text-secondary);
        line-height: 1.85;
        margin-bottom: 1.25rem;
    }

    .values-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .value-item {
        background: var(--bg-section);
        border-radius: 14px;
        padding: 1.25rem;
        border: 1px solid var(--border);
    }

    .value-item i {
        color: var(--blue-primary);
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        display: block;
    }

    .value-item h4 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
    }

    .value-item p {
        font-size: 0.83rem;
        margin: 0;
    }

    .team-section {
        text-align: center;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .team-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: var(--shadow);
        transition: all 0.3s;
    }

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blue-primary), var(--purple));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: white;
        margin: 0 auto 1rem;
    }

    .team-card h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .team-card .role {
        font-size: 0.82rem;
        color: var(--blue-primary);
        font-weight: 600;
    }

    /* ═══════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════ */
    .services-category {
        margin-bottom: 4rem;
    }

    .category-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--border);
    }

    .category-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .category-header h2 {
        font-size: 1.4rem;
        font-weight: 800;
    }

    .services-detail-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.25rem;
    }

    .service-detail-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: var(--shadow);
        transition: all 0.3s;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .service-detail-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

    .sdc-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .sdc-text h4 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.35rem;
    }

    .sdc-text p {
        font-size: 0.82rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* ═══════════════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════════════ */
    .gallery-filter {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        color: var(--text-secondary);
        font-size: 0.87rem;
        font-weight: 500;
        font-family: 'DM Sans', sans-serif;
        transition: all 0.2s;
        cursor: pointer;
    }

    .filter-btn.active,
    .filter-btn:hover {
        background: var(--blue-primary);
        border-color: var(--blue-primary);
        color: white;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }

    .gallery-item {
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        background: var(--bg-card);
        border: 1px solid var(--border);
        aspect-ratio: 4/3;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .gallery-item:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow-hover);
    }

    .gallery-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        font-size: 2.5rem;
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
        flex-direction: column;
        gap: 0.5rem;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay span {
        color: white;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .gallery-overlay i {
        color: white;
        font-size: 1.5rem;
    }

    /* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 3rem;
        align-items: start;
    }

    .contact-info h2 {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .contact-info p {
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .contact-items {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        transition: all 0.3s;
    }

    .contact-item:hover {
        transform: translateX(4px);
        box-shadow: var(--shadow-hover);
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--blue-primary), var(--indigo));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.1rem;
    }

    .contact-item h4 {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.25rem;
    }

    .contact-item p {
        font-size: 0.95rem;
        color: var(--text-primary);
        margin: 0;
    }

    .contact-form {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: var(--shadow);
    }

    .contact-form h3 {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .contact-form>p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 2rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        border: 1.5px solid var(--border);
        background: var(--bg);
        color: var(--text-primary);
        font-family: 'DM Sans', sans-serif;
        font-size: 0.95rem;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--blue-primary);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .btn-submit {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--blue-primary), var(--indigo));
        color: white;
        font-weight: 700;
        font-size: 1rem;
        font-family: 'DM Sans', sans-serif;
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
        transition: all 0.25s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
    }

    .map-placeholder {
        margin-top: 3rem;
        border-radius: 20px;
        overflow: hidden;
        background: var(--bg-section);
        border: 1px solid var(--border);
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        color: var(--text-muted);
    }

    .map-placeholder i {
        font-size: 3rem;
        color: var(--blue-primary);
    }

    .map-placeholder p {
        font-size: 0.9rem;
    }

    /* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
    .footer {
        background: #080e1e;
        color: #94a3b8;
        padding: 4rem 1.5rem 2rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        max-width: 1280px;
        margin: 0 auto 3rem;
    }

    .footer-brand .nav-logo {
        margin-bottom: 1rem;
    }

    .footer-brand .nav-logo-icon {
        background: linear-gradient(135deg, var(--blue-primary), var(--purple));
    }

    .footer-brand .nav-logo {
        color: white;
        font-size: 1.05rem;
    }

    .footer-brand p {
        font-size: 0.88rem;
        line-height: 1.75;
        max-width: 280px;
    }

    .footer-social {
        display: flex;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .social-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        font-size: 0.95rem;
        transition: all 0.2s;
        cursor: pointer;
    }

    .social-btn:hover {
        background: var(--blue-primary);
        border-color: var(--blue-primary);
        color: white;
    }

    .footer-col h4 {
        font-family: 'Syne', sans-serif;
        color: white;
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-col ul li a {
        font-size: 0.87rem;
        color: #64748b;
        transition: color 0.2s;
    }

    .footer-col ul li a:hover {
        color: #60a5fa;
    }

    .footer-bottom {
        max-width: 1280px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.82rem;
        color: #475569;
    }

    /* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════ */
    .whatsapp-float {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 999;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #25d366;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transition: all 0.3s;
        animation: pulse-wa 2s infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }

    @keyframes pulse-wa {

        0%,
        100% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }

        50% {
            box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
        }
    }

    /* ═══════════════════════════════════════════════
   SUCCESS MESSAGE
═══════════════════════════════════════════════ */
    .success-msg {
        display: none;
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.3);
        color: #10b981;
        border-radius: 10px;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        margin-top: 1rem;
        text-align: center;
    }

    .success-msg.show {
        display: block;
    }

    /* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .about-preview,
        .about-full,
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .about-visual {
            min-height: 260px;
        }
    }

    @media (max-width: 768px) {

        .nav-links,
        .btn-nav {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .hero-stats {
            gap: 1.5rem;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .section {
            padding: 3.5rem 1.25rem;
        }

        .cta-section {
            padding: 3rem 1.5rem;
        }

        .contact-form {
            padding: 1.75rem;
        }

        .about-features {
            grid-template-columns: 1fr;
        }

        .values-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .hero-btns {
            flex-direction: column;
            align-items: stretch;
        }

        .btn-primary,
        .btn-secondary {
            text-align: center;
        }

        .gallery-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 {
        transition-delay: 0.1s;
    }

    .reveal-delay-2 {
        transition-delay: 0.2s;
    }

    .reveal-delay-3 {
        transition-delay: 0.3s;
    }