        /* ============================================
           CSS VARIABLES & RESET
           ============================================ */
        :root {
            --navy-900: #091528;
            --navy-800: #0B1D3A;
            --navy-700: #112B52;
            --navy-600: #173D6F;
            --navy-500: #1E5090;
            --navy-400: #3A6EA5;
            --navy-300: #6B98C4;
            --navy-200: #A2C0DC;
            --navy-100: #D4E2F0;
            --navy-50: #EDF2F8;

            --gold-600: #A17B2D;
            --gold-500: #C9982E;
            --gold-400: #D4A853;
            --gold-300: #E2C17A;
            --gold-200: #EDDAA5;
            --gold-100: #F5EBD0;
            --gold-50: #FBF6EC;

            --white: #FFFFFF;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;

            --success: #059669;
            --error: #DC2626;

            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, sans-serif;

            --shadow-sm: 0 1px 2px rgba(9,21,40,0.05);
            --shadow-md: 0 4px 16px rgba(9,21,40,0.08);
            --shadow-lg: 0 8px 32px rgba(9,21,40,0.12);
            --shadow-xl: 0 16px 48px rgba(9,21,40,0.16);
            --shadow-gold: 0 4px 24px rgba(201,152,46,0.25);

            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-body);
            color: var(--gray-800);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        button { cursor: pointer; border: none; background: none; font-family: inherit; }

        /* ============================================
           UTILITY CLASSES
           ============================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold-500);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--navy-800);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-500);
            max-width: 600px;
            line-height: 1.7;
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(9,21,40,0.06);
            transition: all 0.3s ease;
        }

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

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .nav-logo img {
            height: 48px;
            width: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.925rem;
            font-weight: 500;
            color: var(--gray-600);
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-500);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--navy-800);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--navy-800);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--navy-700);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .nav-cta::after { display: none !important; }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 4px;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--navy-800);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            position: relative;
            padding: 160px 0 100px;
            overflow: hidden;
            background: linear-gradient(160deg, var(--navy-50) 0%, var(--white) 40%, var(--gold-50) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201,152,46,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(11,29,58,0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .hero-content {
            animation: slideInLeft 0.8s ease forwards;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            border: 1px solid var(--gold-200);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 0.825rem;
            font-weight: 600;
            color: var(--gold-600);
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            fill: var(--gold-500);
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 700;
            color: var(--navy-900);
            line-height: 1.12;
            margin-bottom: 12px;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--gold-500);
        }

        .hero-tagline {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--navy-400);
            font-style: italic;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--gray-500);
            line-height: 1.75;
            max-width: 520px;
            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold-500);
            color: var(--white);
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-gold);
        }

        .btn-primary:hover {
            background: var(--gold-600);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(201,152,46,0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            color: var(--navy-800);
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid var(--navy-200);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--navy-800);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .hero-visual {
            position: relative;
            animation: slideInRight 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-screenshot {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            aspect-ratio: 16/10;
        }

        .screenshot-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--navy-50), var(--gray-50));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            font-size: 0.9rem;
            text-align: center;
        }

        .screenshot-placeholder svg {
            width: 48px;
            height: 48px;
            opacity: 0.5;
        }

        .hero-float-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-100);
            animation: float 4s ease-in-out infinite;
        }

        .hero-float-card.card-1 {
            bottom: -20px;
            left: -30px;
            animation-delay: 0s;
        }

        .hero-float-card.card-2 {
            top: -15px;
            right: -20px;
            animation-delay: 1.5s;
        }

        .float-card-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-400);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .float-card-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy-800);
        }

        .float-card-value.success { color: var(--success); }

        /* ============================================
           SOCIAL PROOF BAR
           ============================================ */
        .social-proof {
            padding: 48px 0;
            border-bottom: 1px solid var(--gray-100);
            background: var(--white);
        }

        .social-proof-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .proof-stat {
            text-align: center;
        }

        .proof-stat-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--navy-800);
        }

        .proof-stat-label {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-top: 4px;
        }

        .proof-divider {
            width: 1px;
            height: 48px;
            background: var(--gray-200);
        }

        /* ============================================
           FEATURES SECTION
           ============================================ */
        .features {
            padding: 100px 0;
            background: var(--white);
        }

        .features-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .features-header .section-subtitle {
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .feature-card {
            padding: 36px 32px;
            border-radius: var(--radius-lg);
            background: var(--white);
            border: 1px solid var(--gray-100);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            border-color: var(--gold-200);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: var(--navy-50);
        }

        .feature-icon svg {
            width: 26px;
            height: 26px;
            stroke: var(--navy-700);
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* ============================================
           SCREENSHOTS / PRODUCT SHOWCASE
           ============================================ */
        .showcase {
            padding: 100px 0;
            background: var(--navy-900);
            position: relative;
            overflow: hidden;
        }

        .showcase::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(201,152,46,0.06) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 50%, rgba(58,110,165,0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .showcase-header .section-title {
            color: var(--white);
        }

        .showcase-header .section-subtitle {
            color: var(--navy-300);
            margin: 0 auto;
        }

        .showcase-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .showcase-tab {
            padding: 10px 24px;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--navy-300);
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
        }

        .showcase-tab:hover {
            color: var(--white);
            background: rgba(255,255,255,0.1);
        }

        .showcase-tab.active {
            color: var(--navy-900);
            background: var(--gold-500);
            border-color: var(--gold-500);
        }

        .showcase-screen {
            max-width: 960px;
            margin: 0 auto;
            background: var(--gray-800);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 32px 80px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.06);
        }

        .showcase-titlebar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 20px;
            background: rgba(0,0,0,0.3);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .showcase-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .showcase-dot.red { background: #FF5F57; }
        .showcase-dot.yellow { background: #FEBC2E; }
        .showcase-dot.green { background: #28C840; }

        .showcase-screen-content {
            aspect-ratio: 16/9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            font-size: 0.9rem;
            gap: 12px;
            padding: 40px;
            text-align: center;
            background: linear-gradient(135deg, var(--navy-800), var(--gray-800));
        }

        .showcase-screen-content svg {
            width: 56px;
            height: 56px;
            opacity: 0.3;
        }

        .showcase-caption {
            text-align: center;
            margin-top: 24px;
            font-size: 0.9rem;
            color: var(--navy-400);
        }

        /* ============================================
           WHY CHOOSE SECTION
           ============================================ */
        .why-choose {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .why-content .section-subtitle {
            margin-bottom: 36px;
        }

        .why-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .why-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .why-item-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--gold-100);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .why-item-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--gold-600);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
        }

        .why-item h4 {
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 4px;
        }

        .why-item p {
            font-size: 0.925rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        .why-visual {
            position: relative;
        }

        .why-screenshot {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            aspect-ratio: 4/3;
            background: var(--white);
        }

        /* ============================================
           PRICING SECTION
           ============================================ */
        .pricing {
            padding: 100px 0;
            background: var(--white);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .pricing-header .section-subtitle {
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1060px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            position: relative;
            transition: all 0.3s ease;
        }

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

        .pricing-card.featured {
            border-color: var(--gold-500);
            box-shadow: var(--shadow-gold);
        }

        .pricing-card.featured:hover {
            box-shadow: 0 12px 40px rgba(201,152,46,0.3);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold-500);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 20px;
            border-radius: 100px;
        }

        .pricing-tier {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 4px;
        }

        .pricing-desc {
            font-size: 0.875rem;
            color: var(--gray-500);
            margin-bottom: 24px;
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 8px;
        }

        .pricing-currency {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--navy-800);
        }

        .pricing-value {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: var(--navy-800);
            line-height: 1;
        }

        .pricing-period {
            font-size: 0.85rem;
            color: var(--gray-400);
            margin-bottom: 28px;
        }

        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
            padding-top: 28px;
            border-top: 1px solid var(--gray-100);
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--gray-600);
        }

        .pricing-features li svg {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            margin-top: 2px;
        }

        .pricing-features li svg.check {
            stroke: var(--success);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pricing-features li svg.dash {
            stroke: var(--gray-300);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
        }

        .pricing-features li.disabled {
            color: var(--gray-400);
        }

        .pricing-btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 14px 24px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .pricing-btn-primary {
            background: var(--gold-500);
            color: var(--white);
            box-shadow: var(--shadow-gold);
        }

        .pricing-btn-primary:hover {
            background: var(--gold-600);
            transform: translateY(-2px);
        }

        .pricing-btn-secondary {
            background: var(--navy-800);
            color: var(--white);
        }

        .pricing-btn-secondary:hover {
            background: var(--navy-700);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .pricing-btn-outline {
            background: var(--white);
            color: var(--navy-800);
            border: 2px solid var(--navy-200);
        }

        .pricing-btn-outline:hover {
            border-color: var(--navy-800);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
        .testimonials {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .testimonials-header .section-subtitle {
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            border: 1px solid var(--gray-100);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

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

        .testimonial-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 20px;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: var(--gold-500);
        }

        .testimonial-text {
            font-size: 0.975rem;
            color: var(--gray-600);
            line-height: 1.75;
            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(--navy-100);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy-700);
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--navy-800);
            font-size: 0.95rem;
        }

        .testimonial-role {
            font-size: 0.825rem;
            color: var(--gray-400);
        }

        /* ============================================
           ABOUT / TEAM SECTION
           ============================================ */
        .about {
            padding: 100px 0;
            background: var(--white);
        }

        .about-story {
            max-width: 720px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .about-story-text {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.8;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        .team-card {
            text-align: center;
            padding: 32px 24px;
            border-radius: var(--radius-lg);
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }

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

        .team-avatar {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--navy-200), var(--navy-100));
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--navy-700);
            border: 3px solid var(--white);
            box-shadow: var(--shadow-md);
        }

        .team-name {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 4px;
        }

        .team-role {
            font-size: 0.85rem;
            color: var(--gold-500);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .team-bio {
            font-size: 0.875rem;
            color: var(--gray-500);
            line-height: 1.65;
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .faq-header .section-subtitle {
            margin: 0 auto;
        }

        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius-md);
            border: 1px solid var(--gray-200);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--gold-200);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            width: 100%;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: var(--navy-800);
            gap: 16px;
        }

        .faq-question svg {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            stroke: var(--gray-400);
            fill: none;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-question svg {
            transform: rotate(180deg);
            stroke: var(--gold-500);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 0.95rem;
            color: var(--gray-500);
            line-height: 1.75;
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact {
            padding: 100px 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 64px;
            align-items: start;
        }

        .contact-content .section-subtitle {
            margin-bottom: 32px;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .contact-info-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: var(--navy-50);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-info-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--navy-600);
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .contact-info-label {
            font-size: 0.8rem;
            color: var(--gray-400);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 2px;
        }

        .contact-info-value {
            font-weight: 500;
            color: var(--navy-800);
        }

        .contact-form-wrapper {
            background: var(--gray-50);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--gray-200);
        }

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

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 6px;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--gray-800);
            background: var(--white);
            transition: all 0.2s ease;
            outline: none;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--gold-500);
            box-shadow: 0 0 0 3px rgba(201,152,46,0.12);
        }

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

        .form-submit {
            width: 100%;
            padding: 14px 32px;
            background: var(--navy-800);
            color: var(--white);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .form-submit:hover {
            background: var(--navy-700);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .form-status {
            margin-top: 16px;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            display: none;
        }

        .form-status.success {
            display: block;
            background: #ECFDF5;
            color: var(--success);
            border: 1px solid #A7F3D0;
        }

        .form-status.error {
            display: block;
            background: #FEF2F2;
            color: var(--error);
            border: 1px solid #FECACA;
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta {
            padding: 100px 0;
            background: var(--navy-900);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(201,152,46,0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-inner {
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
            position: relative;
        }

        .cta-inner .section-title {
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta-inner p {
            font-size: 1.125rem;
            color: var(--navy-300);
            line-height: 1.7;
            margin-bottom: 36px;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold-500);
            color: var(--white);
            padding: 16px 36px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-gold);
        }

        .btn-gold:hover {
            background: var(--gold-600);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(201,152,46,0.35);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--navy-300);
            padding: 16px 36px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1.05rem;
            border: 2px solid rgba(255,255,255,0.15);
            transition: all 0.3s ease;
        }

        .btn-ghost:hover {
            border-color: rgba(255,255,255,0.3);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            padding: 48px 0 32px;
            background: var(--navy-900);
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-logo img {
            height: 36px;
            width: auto;
            filter: brightness(0) invert(1);
            opacity: 0.7;
        }

        .footer-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .footer-links a {
            font-size: 0.875rem;
            color: var(--navy-400);
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--gold-300);
        }

        .footer-copy {
            width: 100%;
            text-align: center;
            font-size: 0.8rem;
            color: var(--navy-500);
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-card:last-child {
                grid-column: 1 / -1;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 24px;
                gap: 16px;
                border-bottom: 1px solid var(--gray-200);
                box-shadow: var(--shadow-lg);
            }

            .nav-links.open {
                display: flex;
            }

            .nav-toggle {
                display: flex;
            }

            .hero {
                padding: 120px 0 60px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-visual {
                order: -1;
                opacity: 1;
                animation: fadeInUp 0.8s ease forwards;
            }

            .hero-float-card { display: none; }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary, .btn-secondary {
                justify-content: center;
            }

            .social-proof-inner {
                gap: 24px;
            }

            .proof-divider { display: none; }

            .features-grid,
            .testimonials-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .why-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 440px;
            }

            .pricing-card:last-child {
                max-width: 100%;
            }

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

            .showcase-tabs {
                gap: 6px;
            }

            .showcase-tab {
                padding: 8px 16px;
                font-size: 0.8rem;
            }

            .cta-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-gold, .btn-ghost {
                justify-content: center;
            }

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

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
