    /* ========== CSS VARIABLES ========== */
    :root {
        --navy: #1a1f4e;
        --navy-dark: #0f1235;
        --navy-light: #252b6a;
        --teal: #00c4cc;
        --teal-light: #33d6dc;
        --teal-dark: #00a3aa;
        --deep-blue: #1e1b8a;
        --white: #ffffff;
        --off-white: #f4f7fc;
        --gray-light: #e8edf5;
        --gray: #8892a4;
        --gray-dark: #4a5568;
        --gradient-primary: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 50%, var(--navy-dark) 100%);
        --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
        --gradient-hero: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--deep-blue) 100%);
        --shadow-sm: 0 2px 8px rgba(26, 31, 78, 0.08);
        --shadow-md: 0 8px 30px rgba(26, 31, 78, 0.12);
        --shadow-lg: 0 20px 60px rgba(26, 31, 78, 0.15);
        --shadow-teal: 0 8px 30px rgba(0, 196, 204, 0.3);
        --radius: 12px;
        --radius-lg: 20px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ========== RESET & BASE ========== */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--navy);
        background: var(--white);
        line-height: 1.7;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
        font-family: 'Playfair Display', serif;
        line-height: 1.2;
    }

    .nav-links a:hover, .nav-links a.active {
        color: #000 !important;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: #000 !important;
        position: relative;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    img {
        max-width: 100%;
        display: block;
    }

    ul { list-style: none; }

    .container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ========== UTILITY ========== */
    .section-padding {
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 64px;
    }

    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 16px;
    }

    .section-label::before,
    .section-label::after {
        content: '';
        width: 24px;
        height: 2px;
        background: var(--teal);
        border-radius: 2px;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 16px;
    }

    .section-title span {
        color: var(--teal);
    }

    .section-desc {
        font-size: 1.05rem;
        color: var(--gray);
        line-height: 1.8;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: var(--gradient-teal);
        color: var(--white);
        box-shadow: var(--shadow-teal);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 196, 204, 0.4);
    }

    .btn-outline {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-outline:hover {
        border-color: var(--teal);
        background: rgba(0, 196, 204, 0.1);
        color: var(--teal-light);
    }

    .btn-dark {
        background: var(--navy);
        color: var(--white);
    }

    .btn-dark:hover {
        background: var(--navy-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    /* ========== PRELOADER ========== */
    #preloader {
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: var(--navy-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    #preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .loader {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .loader-icon {
        width: 60px;
        height: 60px;
        border: 3px solid rgba(0, 196, 204, 0.2);
        border-top-color: var(--teal);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    .loader-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 4px;
    }

    .loader-text span { color: var(--teal); }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* ========== NAVIGATION ========== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 10px 0;
        transition: var(--transition);
    }

    .navbar.scrolled {
        background: rgba(15, 18, 53, 0.95);
        backdrop-filter: blur(20px);
        padding: 12px 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-logo img {
        background: #ffffff;
        padding: 6px 12px;
        border-radius: 8px;
    }

    .nav-logo img {
        height: 50px ;
        width: auto;
        max-width: 230px ;
        object-fit: contain;
    }

    @media (max-width: 768px) {
        .nav-logo img {
            height: 50px ;
            max-width: 230px ;
        }
    }

    @media (max-width: 480px) {
        .nav-logo img {
            height: 50px ;
            max-width: 200px ;
        }
    }

    .nav-logo-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--white);
    }

    .nav-logo-text span {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 0.6rem;
        font-weight: 500;
        letter-spacing: 6px;
        color: var(--teal);
        text-transform: uppercase;
        margin-top: -2px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 36px;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.75);
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--teal);
        transition: var(--transition);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--white);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }

    .nav-cta {
        padding: 10px 24px !important;
        font-size: 0.85rem !important;
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
    }

    .nav-toggle span {
        width: 26px;
        height: 2.5px;
        background: #000 !important;
        border-radius: 4px;
        transition: var(--transition);
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ========== HERO ========== */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: var(--gradient-hero);
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(0, 196, 204, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(30, 27, 138, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero-grid-bg {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(0, 196, 204, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 196, 204, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
    }

    .hero-particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--teal);
        border-radius: 50%;
        opacity: 0;
        animation: floatParticle 6s infinite;
    }

    .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
    .particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; }
    .particle:nth-child(3) { left: 40%; top: 30%; animation-delay: 2s; }
    .particle:nth-child(4) { left: 60%; top: 70%; animation-delay: 0.5s; }
    .particle:nth-child(5) { left: 80%; top: 40%; animation-delay: 3s; }
    .particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 1.5s; }
    .particle:nth-child(7) { left: 50%; top: 15%; animation-delay: 4s; }
    .particle:nth-child(8) { left: 70%; top: 55%; animation-delay: 2.5s; }

    @keyframes floatParticle {
        0%, 100% { opacity: 0; transform: translateY(0); }
        50% { opacity: 0.6; transform: translateY(-40px); }
    }

    .hero .container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content {
        animation: fadeInUp 1s ease forwards;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        background: rgba(0, 196, 204, 0.1);
        border: 1px solid rgba(0, 196, 204, 0.2);
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--teal);
        margin-bottom: 28px;
    }

    .hero-badge i { font-size: 0.7rem; }

    .hero-title {
        font-size: clamp(2.4rem, 5vw, 3.8rem);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 24px;
        line-height: 1.15;
    }

    .hero-title .highlight {
        position: relative;
        display: inline-block;
        color: var(--teal);
    }

    .hero-title .highlight::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(0, 196, 204, 0.2);
        border-radius: 4px;
    }

    .hero-desc {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.6);
        max-width: 500px;
        margin-bottom: 40px;
        line-height: 1.8;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 48px;
    }

    .hero-stats {
        display: flex;
        gap: 40px;
    }

    .hero-stat {
        position: relative;
        padding-left: 16px;
    }

    .hero-stat::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: var(--gradient-teal);
        border-radius: 4px;
    }

    .hero-stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--white);
    }

    .hero-stat-label {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 500;
    }

    .hero-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeInRight 1s 0.3s ease forwards;
        opacity: 0;
    }

    .hero-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        padding: 40px;
        width: 100%;
        max-width: 440px;
    }

    .hero-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
    }

    .hero-card-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
    }

    .hero-card-badge {
        padding: 4px 12px;
        background: rgba(0, 196, 204, 0.15);
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--teal);
    }

    .chart-bars {
        display: flex;
        align-items: flex-end;
        gap: 12px;
        height: 160px;
        margin-bottom: 32px;
    }

    .chart-bar {
        flex: 1;
        border-radius: 8px 8px 4px 4px;
        position: relative;
        animation: growBar 1s ease forwards;
        animation-delay: var(--delay);
        transform-origin: bottom;
        transform: scaleY(0);
    }

    @keyframes growBar {
        to { transform: scaleY(1); }
    }

    .chart-bar:nth-child(1) { height: 45%; background: rgba(0, 196, 204, 0.3); --delay: 0.5s; }
    .chart-bar:nth-child(2) { height: 65%; background: rgba(0, 196, 204, 0.4); --delay: 0.6s; }
    .chart-bar:nth-child(3) { height: 50%; background: rgba(0, 196, 204, 0.5); --delay: 0.7s; }
    .chart-bar:nth-child(4) { height: 80%; background: rgba(0, 196, 204, 0.6); --delay: 0.8s; }
    .chart-bar:nth-child(5) { height: 60%; background: rgba(0, 196, 204, 0.7); --delay: 0.9s; }
    .chart-bar:nth-child(6) { height: 90%; background: var(--teal); --delay: 1s; }
    .chart-bar:nth-child(7) { height: 100%; background: var(--gradient-teal); --delay: 1.1s; }

    .hero-card-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .metric-box {
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius);
        padding: 16px;
    }

    .metric-box-label {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .metric-box-value {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--white);
    }

    .metric-box-value.positive { color: var(--teal); }

    .hero-floating-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius);
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        animation: float 4s ease-in-out infinite;
    }

    .hero-floating-card.card-1 {
        top: -10px;
        left: -30px;
        animation-delay: 0s;
    }

    .hero-floating-card.card-2 {
        bottom: 30px;
        right: -20px;
        animation-delay: 2s;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .floating-icon.teal {
        background: rgba(0, 196, 204, 0.2);
        color: var(--teal);
    }

    .floating-icon.blue {
        background: rgba(30, 27, 138, 0.3);
        color: #8b8aff;
    }

    .floating-text-label {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .floating-text-value {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--white);
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInRight {
        from { opacity: 0; transform: translateX(30px); }
        to { opacity: 1; transform: translateX(0); }
    }

    /* ========== CLIENTS BAR ========== */
    .clients-bar {
        background: var(--off-white);
        padding: 40px 0;
        border-bottom: 1px solid var(--gray-light);
    }

    .clients-bar .container {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .clients-label {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 2px;
        white-space: nowrap;
    }

    .clients-logos {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex: 1;
        gap: 32px;
        overflow: hidden;
    }

    .client-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--gray);
        opacity: 0.4;
        transition: var(--transition);
        white-space: nowrap;
    }

    .client-logo:hover { opacity: 0.8; }

    /* ========== ABOUT ========== */
    .about {
        background: var(--white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-image {
        position: relative;
    }

    .about-image-main {
        width: 100%;
        height: 500px;
        background: var(--gradient-primary);
        border-radius: var(--radius-lg);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-image-main::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(0, 196, 204, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 196, 204, 0.05) 1px, transparent 1px);
        background-size: 30px 30px;
    }

    .about-image-icon {
        font-size: 6rem;
        color: rgba(0, 196, 204, 0.2);
        z-index: 1;
    }

    .about-exp-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--white);
        border-radius: var(--radius);
        padding: 24px 32px;
        box-shadow: var(--shadow-lg);
        text-align: center;
    }

    .about-exp-number {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--teal);
        line-height: 1;
    }

    .about-exp-text {
        font-size: 0.8rem;
        color: var(--gray);
        font-weight: 600;
        margin-top: 4px;
    }

    .about-content .section-label { justify-content: flex-start; }
    .about-content .section-label::before { display: none; }

    .about-text {
        font-size: 1.05rem;
        color: var(--gray-dark);
        margin-bottom: 32px;
        line-height: 1.9;
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }

    .about-feature {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .about-feature-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(0, 196, 204, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--teal);
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .about-feature span {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--navy);
    }

    /* ========== SERVICES ========== */
    .services {
        background: var(--off-white);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .service-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px 32px;
        transition: var(--transition);
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-teal);
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 196, 204, 0.1);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: rgba(0, 196, 204, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--teal);
        margin-bottom: 24px;
        transition: var(--transition);
    }

    .service-card:hover .service-icon {
        background: var(--gradient-teal);
        color: var(--white);
        box-shadow: var(--shadow-teal);
    }

    .service-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
    }

    .service-desc {
        font-size: 0.92rem;
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--teal);
    }

    .service-link i {
        transition: var(--transition);
    }

    .service-link:hover i {
        transform: translateX(4px);
    }

    /* ========== WHY US / FEATURES ========== */
    .why-us {
        background: var(--gradient-hero);
        position: relative;
        overflow: hidden;
    }

    .why-us::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(0, 196, 204, 0.06) 0%, transparent 60%);
    }

    .why-us .section-title { color: var(--white); }
    .why-us .section-desc { color: rgba(255, 255, 255, 0.5); }

    .why-us-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        position: relative;
        z-index: 1;
    }

    .why-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        text-align: center;
        transition: var(--transition);
    }

    .why-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(0, 196, 204, 0.3);
        transform: translateY(-4px);
    }

    .why-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: rgba(0, 196, 204, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--teal);
        margin: 0 auto 20px;
    }

    .why-card-title {
        font-family: 'Inter', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 10px;
    }

    .why-card-desc {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.7;
    }

    /* ========== PROCESS ========== */
    .process {
        background: var(--white);
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        position: relative;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(to right, var(--teal), rgba(0, 196, 204, 0.1));
    }

    .process-step {
        text-align: center;
        position: relative;
    }

    .step-number {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--off-white);
        border: 3px solid var(--gray-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--navy);
        transition: var(--transition);
        position: relative;
        z-index: 1;
    }

    .process-step:hover .step-number {
        background: var(--gradient-teal);
        border-color: var(--teal);
        color: var(--white);
        box-shadow: var(--shadow-teal);
    }

    .step-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .step-desc {
        font-size: 0.88rem;
        color: var(--gray);
        line-height: 1.7;
    }

    /* ========== STATS ========== */
    .stats {
        background: var(--off-white);
        padding: 80px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .stat-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px 24px;
        text-align: center;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
    }

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: rgba(0, 196, 204, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--teal);
        margin: 0 auto 16px;
    }

    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 0.85rem;
        color: var(--gray);
        font-weight: 500;
    }

    /* ========== TESTIMONIALS ========== */
    .testimonials {
        background: var(--white);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .testimonial-card {
        background: var(--off-white);
        border-radius: var(--radius-lg);
        padding: 36px;
        transition: var(--transition);
        border: 1px solid transparent;
    }

    .testimonial-card:hover {
        background: var(--white);
        box-shadow: var(--shadow-md);
        border-color: rgba(0, 196, 204, 0.15);
    }

    .testimonial-stars {
        display: flex;
        gap: 4px;
        margin-bottom: 20px;
    }

    .testimonial-stars i {
        font-size: 0.85rem;
        color: #f5b731;
    }

    .testimonial-text {
        font-size: 0.95rem;
        color: var(--gray-dark);
        line-height: 1.8;
        margin-bottom: 24px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gradient-teal);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--white);
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--navy);
    }

    .testimonial-role {
        font-size: 0.8rem;
        color: var(--gray);
    }

    /* ========== CTA ========== */
    .cta {
        background: var(--gradient-hero);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle at 20% 50%, rgba(0, 196, 204, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(30, 27, 138, 0.12) 0%, transparent 50%);
    }

    .cta-content {
        position: relative;
        text-align: center;
        max-width: 680px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 20px;
    }

    .cta-title span { color: var(--teal); }

    .cta-desc {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 40px;
        line-height: 1.8;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* ========== CONTACT ========== */
    .contact {
        background: var(--off-white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: start;
    }

    .contact-info-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-info-card {
        display: flex;
        gap: 16px;
        background: var(--white);
        border-radius: var(--radius);
        padding: 24px;
        transition: var(--transition);
    }

    .contact-info-card:hover {
        box-shadow: var(--shadow-md);
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(0, 196, 204, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--teal);
        flex-shrink: 0;
    }

    .contact-info-label {
        font-size: 0.8rem;
        color: var(--gray);
        font-weight: 500;
        margin-bottom: 4px;
    }

    .contact-info-value {
        font-size: 1rem;
        font-weight: 600;
        color: var(--navy);
    }

    .contact-social {
        display: flex;
        gap: 12px;
        margin-top: 12px;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--navy);
        transition: var(--transition);
        border: 1px solid var(--gray-light);
    }

    .social-link:hover {
        background: var(--gradient-teal);
        color: var(--white);
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: var(--shadow-teal);
    }

    .contact-form {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 44px;
        box-shadow: var(--shadow-sm);
    }

    .contact-form h3 {
        font-size: 1.5rem;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .contact-form > p {
        font-size: 0.9rem;
        color: var(--gray);
        margin-bottom: 28px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--gray-light);
        border-radius: var(--radius);
        font-family: 'Inter', sans-serif;
        font-size: 0.92rem;
        color: var(--navy);
        transition: var(--transition);
        background: var(--off-white);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--teal);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(0, 196, 204, 0.1);
    }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

    .form-submit {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 1rem;
    }

    /* ========== FOOTER ========== */
    .footer {
        background: var(--navy-dark);
        padding: 80px 0 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 48px;
        padding-bottom: 60px;
    }

    .footer-brand-text {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.8;
        margin: 20px 0;
    }

    .footer-title {
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.45);
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: var(--teal);
        padding-left: 4px;
    }

    .footer-newsletter p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 16px;
        line-height: 1.7;
    }

    .newsletter-form {
        display: flex;
        gap: 8px;
    }

    .newsletter-form input {
        flex: 1;
        padding: 12px 16px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        transition: var(--transition);
    }

    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

    .newsletter-form input:focus {
        outline: none;
        border-color: var(--teal);
    }

    .newsletter-form button {
        padding: 12px 24px;
        border-radius: 50px;
        background: var(--gradient-teal);
        color: var(--white);
        border: none;
        font-weight: 600;
        font-size: 0.85rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .newsletter-form button:hover {
        box-shadow: var(--shadow-teal);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom p {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
    }

    .footer-bottom p span { color: var(--teal); }

    .footer-bottom-links {
        display: flex;
        gap: 24px;
    }

    .footer-bottom-links a {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
    }

    .footer-bottom-links a:hover {
        color: var(--teal);
    }

    /* ========== BACK TO TOP ========== */
    .back-to-top {
        position: fixed;
        bottom: 32px;
        right: 32px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gradient-teal);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        cursor: pointer;
        border: none;
        box-shadow: var(--shadow-teal);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-4px);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
        .hero .container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .hero-desc { margin-left: auto; margin-right: auto; }
        .hero-buttons { justify-content: center; }
        .hero-stats { justify-content: center; }
        .hero-visual { margin-top: 40px; }
        .hero-floating-card.card-1 { left: 10px; }
        .hero-floating-card.card-2 { right: 10px; }
        .services-grid { grid-template-columns: repeat(2, 1fr); }
        .why-us-grid { grid-template-columns: repeat(2, 1fr); }
        .process-steps { grid-template-columns: repeat(2, 1fr); }
        .process-steps::before { display: none; }
        .stats-grid { grid-template-columns: repeat(2, 1fr); }
        .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
        .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: -200px;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: #fff ;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            transition: var(--transition);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        }
        .nav-links.open { right: 0; }
        .nav-toggle { display: flex; z-index: 1001; }
        .about-grid { grid-template-columns: 1fr; gap: 40px; }
        .about-image { order: -1; }
        .services-grid { grid-template-columns: 1fr; }
        .why-us-grid { grid-template-columns: 1fr; }
        .contact-grid { grid-template-columns: 1fr; }
        .form-row { grid-template-columns: 1fr; }
        .hero-card { max-width: 100%; }
        .clients-bar .container { flex-direction: column; gap: 20px; }
        .clients-logos { flex-wrap: wrap; justify-content: center; }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; text-align: center; }
        .section-padding { padding: 70px 0; }
    }

    @media (max-width: 480px) {
        .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
        .hero-floating-card { display: none; }
        .about-features { grid-template-columns: 1fr; }
        .process-steps { grid-template-columns: 1fr; }
        .stats-grid { grid-template-columns: 1fr; }
        .testimonials-grid { grid-template-columns: 1fr; }
        .hero-title { font-size: 2rem; }
        .contact-form { padding: 28px 20px; }
    }