 :root {
            --navy: #0D1B3E;
            --navy-2: #1A2A4E;
            --accent: #1A3A6E;
            --white: #FFFFFF;
            --off-white: #F4F6FB;
            --border: #D8DDE8;
            --subtext: #9AA3B8;
            --glow: rgba(26, 58, 110, 0.5);
            --glow-soft: rgba(26, 58, 110, 0.2);
            --glow-bright: rgba(100, 149, 237, 0.35);
        }
*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--off-white);
            color: var(--navy);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Droid Serif', Georgia, serif;
        }

        /* ═══ NAVBAR ═══ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            padding: 0 6%;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(244, 246, 251, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s ease, box-shadow 0.3s ease;
            will-change: transform;
            transform: translateZ(0);
            backface-visibility: hidden;
            -webkit-font-smoothing: antialiased;
        }

        nav.scrolled {
            background: rgba(244, 246, 251, 0.97);
            box-shadow: 0 4px 30px rgba(13, 27, 62, 0.08);
        }

        .logo {
            font-family: 'Droid Serif', Georgia, serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--navy);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo span {
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            font-size: 0.6rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            display: block;
            color: var(--subtext);
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.3px;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.25s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--navy) !important;
            color: var(--white) !important;
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.82rem !important;
            font-weight: 500 !important;
            transition: all 0.3s !important;
            box-shadow: 0 4px 20px rgba(13, 27, 62, 0.25);
        }

        .nav-cta:hover {
            background: var(--accent) !important;
            box-shadow: 0 6px 30px rgba(26, 58, 110, 0.4) !important;
            transform: translateY(-1px);
        }

        .nav-cta::after {
            display: none !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ═══ HERO ═══ */
        .hero {
            min-height: 100vh;
            padding: 120px 6% 80px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #F4F6FB 0%, #EEF1FA 40%, #E8EDF8 100%);
            z-index: 0;
        }

        .hero-glow-1 {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(26, 58, 110, 0.12) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            z-index: 1;
            animation: floatGlow 8s ease-in-out infinite;
        }

        .hero-glow-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(100, 149, 237, 0.1) 0%, transparent 70%);
            bottom: 0;
            left: 10%;
            z-index: 1;
            animation: floatGlow 10s ease-in-out infinite reverse;
        }

        @keyframes floatGlow {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-left {
            max-width: 560px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 27, 62, 0.06);
            border: 1px solid rgba(13, 27, 62, 0.12);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease forwards;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        .hero h1 {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            line-height: 1.15;
            color: var(--navy);
            margin-bottom: 1.2rem;
            animation: fadeInUp 0.7s ease 0.1s both;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--accent);
        }

        .hero-desc {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--subtext);
            margin-bottom: 2rem;
            max-width: 440px;
            animation: fadeInUp 0.7s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.7s ease 0.3s both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--navy);
            color: var(--white);
            padding: 14px 30px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 30px rgba(13, 27, 62, 0.3);
        }

        .btn-primary:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(26, 58, 110, 0.45);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--navy);
            padding: 14px 30px;
            border-radius: 50px;
            border: 1.5px solid var(--border);
            font-size: 0.88rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-2px);
        }

        /* ═══ HERO RIGHT - DASHBOARD CARD ═══ */
        .hero-right {
            position: relative;
            animation: fadeInRight 0.9s ease 0.2s both;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .dashboard-card {
            background: var(--navy);
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 30px 80px rgba(13, 27, 62, 0.35), 0 0 60px rgba(26, 58, 110, 0.2);
            position: relative;
            overflow: hidden;
        }

        .dashboard-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(100, 149, 237, 0.08) 0%, transparent 60%);
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 22px;
        }

        .dash-logo {
            font-family: 'Droid Serif', serif;
            font-size: 0.9rem;
            color: var(--white);
            font-weight: 700;
        }

        .dash-dots {
            display: flex;
            gap: 5px;
        }

        .dash-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
        }

        .dash-dots span:first-child {
            background: rgba(255, 100, 100, 0.7);
        }

        .dash-dots span:nth-child(2) {
            background: rgba(255, 200, 80, 0.7);
        }

        .dash-dots span:last-child {
            background: rgba(80, 200, 120, 0.7);
        }

        .dash-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 20px;
        }

        .dash-stat {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 16px;
            transition: all 0.3s;
        }

        .dash-stat:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(100, 149, 237, 0.3);
            box-shadow: 0 0 20px rgba(100, 149, 237, 0.15);
        }

        .dash-stat-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.45);
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .dash-stat-value {
            font-family: 'Droid Serif', serif;
            font-size: 1.6rem;
            color: var(--white);
            font-weight: 700;
            line-height: 1;
        }

        .dash-stat-change {
            font-size: 0.68rem;
            color: #5DD68A;
            margin-top: 4px;
        }

        .dash-chart {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            padding: 16px;
            margin-bottom: 16px;
        }

        .dash-chart-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 12px;
        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 6px;
            height: 60px;
        }

        .chart-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            background: rgba(100, 149, 237, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .chart-bar::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(100, 149, 237, 0.5), rgba(100, 149, 237, 0.1));
        }

        .chart-bar:hover {
            background: rgba(100, 149, 237, 0.55);
            box-shadow: 0 0 15px rgba(100, 149, 237, 0.4);
        }

        .chart-bar.active {
            background: rgba(100, 149, 237, 0.7) !important;
            box-shadow: 0 0 20px rgba(100, 149, 237, 0.5);
        }

        .dash-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .dash-tag {
            font-size: 0.68rem;
            padding: 5px 12px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.3px;
        }

        .dash-tag.active {
            background: rgba(100, 149, 237, 0.2);
            border-color: rgba(100, 149, 237, 0.4);
            color: rgba(150, 190, 255, 0.9);
            box-shadow: 0 0 12px rgba(100, 149, 237, 0.2);
        }

        /* ═══ FLOATING BADGES ═══ */
        .float-badge {
            position: absolute;
            background: var(--white);
            border-radius: 16px;
            padding: 12px 16px;
            box-shadow: 0 8px 30px rgba(13, 27, 62, 0.15);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--navy);
            z-index: 10;
            animation: floatBadge 6s ease-in-out infinite;
        }

        .float-badge-1 {
            top: -20px;
            right: -20px;
            animation-delay: 0s;
        }

        .float-badge-2 {
            bottom: 40px;
            left: -30px;
            animation-delay: 2s;
        }

        @keyframes floatBadge {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .float-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
        }

        /* ═══ STATS STRIP ═══ */
        .stats-strip {
            padding: 0 6%;
            margin-bottom: 0;
        }

        .stats-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: -30px;
            position: relative;
            z-index: 5;
        }

        .stat-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 22px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
            box-shadow: 0 2px 12px rgba(13, 27, 62, 0.06);
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(13, 27, 62, 0.12), 0 0 0 1px rgba(26, 58, 110, 0.1);
        }

        .stat-info {
            flex: 1;
        }

        .stat-label {
            font-size: 0.7rem;
            letter-spacing: 0.5px;
            color: var(--subtext);
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .stat-num {
            font-family: 'Droid Serif', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1;
        }

        .stat-btn {
            font-size: 0.65rem;
            padding: 5px 12px;
            border-radius: 50px;
            background: var(--off-white);
            border: 1px solid var(--border);
            color: var(--subtext);
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            transition: all 0.2s;
        }

        .stat-btn:hover {
            background: var(--navy);
            color: white;
            border-color: var(--navy);
        }

        /* ═══ SERVICES SECTION ═══ */
        .section {
            padding: 100px 6%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 12px;
            position: relative;
        }

        .section-tag::before,
        .section-tag::after {
            content: '—';
            margin: 0 8px;
            opacity: 0.4;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: var(--navy);
            line-height: 1.2;
        }

        .section-title em {
            font-style: italic;
            color: var(--accent);
        }

        .section-sub {
            font-size: 0.9rem;
            color: var(--subtext);
            margin-top: 12px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 36px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--navy), var(--accent));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(13, 27, 62, 0.12), 0 0 40px rgba(26, 58, 110, 0.08);
            border-color: rgba(26, 58, 110, 0.2);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card.featured {
            background: var(--navy);
            border-color: var(--navy);
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .service-card.featured:hover {
            box-shadow: 0 20px 60px rgba(13, 27, 62, 0.4), 0 0 60px rgba(26, 58, 110, 0.3);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--off-white);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--navy);
            border-color: var(--navy);
            box-shadow: 0 0 20px rgba(13, 27, 62, 0.3);
        }

        .service-card.featured .service-icon {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .service-num {
            font-size: 0.7rem;
            letter-spacing: 2px;
            color: var(--subtext);
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .service-card.featured .service-num {
            color: rgba(255, 255, 255, 0.4);
        }

        .service-title {
            font-size: 1.3rem;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .service-card.featured .service-title {
            color: var(--white);
            font-size: 1.5rem;
        }

        .service-desc {
            font-size: 0.85rem;
            color: var(--subtext);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-card.featured .service-desc {
            color: rgba(255, 255, 255, 0.55);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--accent);
            text-decoration: none;
            transition: gap 0.2s;
        }

        .service-card.featured .service-link {
            color: rgba(255, 255, 255, 0.7);
        }

        .service-link:hover {
            gap: 10px;
        }

        .service-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .service-features li::before {
            content: '✓';
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(100, 149, 237, 0.2);
            border: 1px solid rgba(100, 149, 237, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            flex-shrink: 0;
            color: rgba(150, 190, 255, 0.9);
        }

        /* ═══ PRICING SECTION ═══ */
        .pricing-section {
            padding: 100px 6%;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        .pricing-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(100, 149, 237, 0.12) 0%, transparent 70%);
            top: -100px;
            right: 0;
            pointer-events: none;
        }

        .pricing-glow-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(100, 149, 237, 0.08) 0%, transparent 70%);
            bottom: -50px;
            left: -100px;
            pointer-events: none;
        }

        .pricing-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .pricing-section .section-title {
            color: var(--white);
        }

        .pricing-section .section-tag {
            color: rgba(150, 190, 255, 0.8);
        }

        .pricing-section .section-sub {
            color: rgba(255, 255, 255, 0.45);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .price-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 36px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .price-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(100, 149, 237, 0.3);
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(100, 149, 237, 0.12);
        }

        .price-card.popular {
            background: rgba(100, 149, 237, 0.1);
            border-color: rgba(100, 149, 237, 0.35);
            box-shadow: 0 0 40px rgba(100, 149, 237, 0.15);
        }

        .popular-badge {
            position: absolute;
            top: -1px;
            right: 24px;
            background: rgba(100, 149, 237, 0.9);
            color: white;
            font-size: 0.65rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 0 0 10px 10px;
            font-weight: 600;
        }

        .plan-tier {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 8px;
        }

        .plan-name {
            font-family: 'Droid Serif', serif;
            font-size: 1.4rem;
            color: var(--white);
            margin-bottom: 6px;
        }

        .plan-desc {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .plan-price {
            margin-bottom: 28px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .plan-price .amount {
            font-family: 'Droid Serif', serif;
            font-size: 2.5rem;
            color: var(--white);
            font-weight: 700;
            line-height: 1;
        }

        .plan-price .currency {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.5);
            vertical-align: top;
            margin-top: 8px;
            display: inline-block;
        }

        .plan-price .period {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.3);
            display: block;
            margin-top: 4px;
        }

        .plan-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 11px;
            margin-bottom: 30px;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .plan-features li .check {
            color: rgba(100, 200, 150, 0.9);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .plan-features li.muted {
            color: rgba(255, 255, 255, 0.25);
        }

        .plan-features li.muted .check {
            color: rgba(255, 255, 255, 0.2);
        }

        .plan-cta {
            display: block;
            text-align: center;
            padding: 13px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.3px;
        }

        .plan-cta:hover {
            border-color: rgba(255, 255, 255, 0.35);
            color: white;
            background: rgba(255, 255, 255, 0.06);
        }

        .price-card.popular .plan-cta {
            background: rgba(100, 149, 237, 0.25);
            border-color: rgba(100, 149, 237, 0.5);
            color: rgba(180, 210, 255, 0.9);
            box-shadow: 0 0 20px rgba(100, 149, 237, 0.15);
        }

        .price-card.popular .plan-cta:hover {
            background: rgba(100, 149, 237, 0.4);
            box-shadow: 0 0 30px rgba(100, 149, 237, 0.3);
            color: white;
        }

        /* ═══ TESTIMONIALS ═══ */
        .testimonials-section {
            padding: 100px 6%;
            background: var(--off-white);
        }

        .testimonials-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-carousel {
            margin-top: 60px;
            overflow: hidden;
            width: 100%;
        }

        .testimonials-track {
            display: flex;
            gap: 20px;
            width: max-content;
            animation: scroll-carousel 100s linear infinite;
        }

        .testimonials-carousel:hover .testimonials-track {
            animation-play-state: paused;
        }

        @keyframes scroll-carousel {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 10px));
            }
        }

        .testi-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s;
            width: calc((100vw - 12%) / 3 - 13.33px);
            max-width: 360px;
            min-width: 280px;
            flex-shrink: 0;
        }

        .testi-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(13, 27, 62, 0.1);
            border-color: rgba(26, 58, 110, 0.15);
        }

        .testi-stars {
            color: #F5C842;
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-bottom: 14px;
        }

        .testi-text {
            font-size: 0.85rem;
            line-height: 1.75;
            color: #4A5568;
            margin-bottom: 20px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .testi-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Droid Serif', serif;
            font-size: 0.9rem;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testi-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--navy);
        }

        .testi-role {
            font-size: 0.72rem;
            color: var(--subtext);
        }

        /* ═══ CTA SECTION ═══ */
        .cta-section {
            padding: 100px 6%;
            background: var(--white);
        }

        .cta-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: var(--navy);
            border-radius: 32px;
            padding: 70px 60px;
            position: relative;
            overflow: hidden;
        }

        .cta-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(100, 149, 237, 0.15) 0%, transparent 70%);
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            pointer-events: none;
        }

        .cta-inner h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            color: white;
            margin-bottom: 16px;
            position: relative;
        }

        .cta-inner p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 36px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            position: relative;
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            color: var(--navy);
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .btn-outline-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: rgba(255, 255, 255, 0.75);
            padding: 14px 32px;
            border-radius: 50px;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            font-size: 0.88rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-outline-white:hover {
            border-color: rgba(255, 255, 255, 0.5);
            color: white;
            background: rgba(255, 255, 255, 0.06);
        }

        /* ═══ FOOTER ═══ */
        footer {
            background: var(--navy);
            padding: 60px 6% 30px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 50px;
        }

        .footer-brand .logo {
            color: white;
            font-size: 1.1rem;
        }

        .footer-brand .logo span {
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-brand p {
            font-size: 0.82rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 14px;
            max-width: 260px;
        }

        .footer-col h4 {
            font-family: 'Droid Serif', serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 16px;
            font-weight: 400;
        }

        .footer-col a {
            display: block;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: rgba(255, 255, 255, 0.75);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.75rem;
        }

        /* ═══ ANIMATIONS ═══ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══ MOBILE ═══ */
        @media (max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-right {
                display: none;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
                margin-top: 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card.featured {
                grid-column: span 1;
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-track {
                gap: 15px;
            }

            .testi-card {
                width: calc(100vw - 12% - 7.5px);
                max-width: none;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 24px;
                gap: 1rem;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 10px 30px rgba(13, 27, 62, 0.1);
            }

            .cta-inner {
                padding: 40px 24px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

        @media (max-width: 560px) {
            .stats-inner {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }
        }
        /* ═══════════════ OUR WORK ═══════════════ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13,27,62,0.12);
  border-color: rgba(26,58,110,0.18);
}

/* ── CARD TOP (mockup area) ── */
.case-top {
  padding: 28px 24px 20px;
  position: relative;
  min-height: 200px;
}

.case-top-1 {
  background: linear-gradient(135deg, #EEF1FA 0%, #E2E8F8 100%);
}
.case-top-2 {
  background: linear-gradient(135deg, #0D1B3E 0%, #1A2A4E 100%);
}
.case-top-3 {
  background: linear-gradient(135deg, #1A3A6E 0%, #0D1B3E 100%);
}

.case-badge {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
}

.case-top-1 .case-badge {
  background: rgba(13,27,62,0.08);
  border-color: rgba(13,27,62,0.15);
  color: var(--navy);
}

/* ── MOCKUP LINES (fake browser UI) ── */
.case-mockup-lines {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.cml-nav {
  height: 28px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
}

.cml-nav::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FF6B6B;
  box-shadow: 10px 0 0 #FFD93D, 20px 0 0 #6BCB77;
}

.cml-hero {
  padding: 14px 14px 10px;
  background: var(--navy);
}

.cml-h {
  height: 10px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  margin-bottom: 6px;
  width: 80%;
}
.cml-h.short { width: 55%; }

.cml-p {
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin-bottom: 10px;
  width: 90%;
}

.cml-btn {
  height: 16px;
  width: 60px;
  background: white;
  border-radius: 20px;
  opacity: 0.9;
}

.cml-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  background: var(--off-white);
}

.cml-card {
  height: 32px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* ── CARD BOTTOM ── */
.case-bottom {
  padding: 24px;
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.case-num {
  font-family: 'Droid Serif', serif;
  font-size: 0.75rem;
  color: var(--subtext);
  letter-spacing: 2px;
}

.case-tag-row {
  display: flex;
  gap: 6px;
}

.case-tag {
  font-size: 0.62rem;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--subtext);
  font-weight: 500;
}

.case-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.case-problem,
.case-solution {
  font-size: 0.78rem;
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 8px;
}

.case-problem strong,
.case-solution strong {
  color: var(--navy);
  font-weight: 600;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.case-result { text-align: center; }

.case-result-num {
  font-family: 'Droid Serif', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 3px;
}

.case-result-label {
  font-size: 0.65rem;
  color: var(--subtext);
  letter-spacing: 0.3px;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .case-results { grid-template-columns: repeat(3, 1fr); }
  .case-bottom { padding: 18px; }
}
