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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: #0f1e38;
            background: #ffffff;
            line-height: 1.6;
        }

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

        button {
            font-family: 'Plus Jakarta Sans', sans-serif;
            cursor: pointer;
            border: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ===== NAVIGATION ===== */
        nav#navbar { position: fixed; top: 0; left: 0; right: 0; background: #fff; border-bottom: 1px solid #e5e7eb; z-index: 999; transition: box-shadow .3s; }
        nav#navbar.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
        .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
        .scrolled .nav-logo img { padding: 0; height: 45px; }
        .nav-logo { display: flex; align-items: center; align-self: stretch; }
        .nav-logo img { padding: 5px 0; height: var(--nav-h); width: auto; object-fit: contain; }
        .nav-link { font-size: .95rem; font-weight: 500; color: #0f1e38; transition: color .2s; cursor: pointer; padding: 0; }
        .nav-link:hover { color: #2563eb; }
        .nav-cta { background: #2563eb; color: #fff; font-size: .875rem; font-weight: 700; padding: 10px 22px; border-radius: 8px; transition: opacity .2s; display: inline-block; }
        .nav-cta:hover { opacity: .85; text-decoration: none; }
        .nav-right { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
        .nav-sep { width: 1px; height: 16px; background: #d1d5db; flex-shrink: 0; }

        /* ===== HERO SECTION ===== */
        /* ===== HERO — VARIANT C (left headline + right capability list) ===== */
        .hero {
            padding: 72px 0 80px;
            background: #ffffff;
            margin-top: 72px;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 500px;
            gap: 100px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-features {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #6b7280;
            padding: 5px 14px;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            line-height: 1;
        }

        .hero-feature-item .hf-check {
            color: #2563eb;
            font-weight: 800;
            font-size: 0.75rem;
        }

        .hero-eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #2563eb;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .hero-headline {
            font-size: clamp(2.6rem, 3.8vw, 4.2rem);
            font-weight: 900;
            line-height: 1.08;
            margin-bottom: 24px;
            color: #0f1e38;
            text-align: left;
            letter-spacing: -1.5px;
        }

        .hero-subheading {
            font-size: 1.05rem;
            color: #6b7280;
            margin-bottom: 28px;
            max-width: 440px;
            line-height: 1.7;
            text-align: left;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: flex-start;
            margin-bottom: 48px;
        }

        /* ===== HERO CAPABILITY LIST ===== */
        .hero-caps-list {
            display: flex;
            flex-direction: column;
        }

        .hero-cap-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .hero-cap-item:first-child { padding-top: 0; }
        .hero-cap-item:last-child { border-bottom: none; padding-bottom: 0; }

        .hero-cap-icon {
            width: 44px;
            height: 44px;
            background: #eff6ff;
            border: 1px solid #bfdbfe;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 2px;
            color: #2563eb;
            font-weight: 700;
        }

        .hero-cap-body { flex: 1; }

        .hero-cap-title {
            font-size: 1rem;
            font-weight: 700;
            color: #0f1e38;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .hero-cap-desc {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.5;
        }

        .hero-cap-stat { flex-shrink: 0; text-align: right; }

        .hero-cap-stat-num {
            font-size: 1.4rem;
            font-weight: 900;
            color: #2563eb;
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .hero-cap-stat-label {
            font-size: 0.65rem;
            color: #9ca3af;
            margin-top: 3px;
            line-height: 1;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: #111827;
            color: #ffffff;
        }

        .btn-primary:hover {
            background: #1f2937;
        }

        .btn-secondary {
            background: transparent;
            color: #2563eb;
            border: 2px solid #2563eb;
        }

        .btn-secondary:hover {
            background: #eff6ff;
        }

        .trust-strip { display: none; }

        /* Hero stats (wms-style) */
        .hero-stats { display: flex; gap: 32px; flex-wrap: nowrap; margin-top: 28px; align-items: flex-start; }
        .hero-stat  { display: flex; flex-direction: column; gap: 0; }
        .hero-stat-num   { font-size: 1.35rem; font-weight: 900; color: #0f1e38; letter-spacing: -.02em; line-height: 1; }
        .hero-stat-label { font-size: .72rem; color: #6b7280; margin-top: 4px; }

        .dot {
            width: 4px;
            height: 4px;
            background: #d1d5db;
            border-radius: 50%;
        }

        /* ===== PLATFORM SECTION ===== */
        #platform {
            background: #ffffff;
            padding: 80px 0;
        }

        /* ===== SECTION COUNTER / TREE STRUCTURE ===== */
        body { counter-reset: section-counter; }
        section.counted { counter-increment: section-counter; }
        section.counted [class$="-label"]::before,
        section.counted .eyebrow::before {
            content: counter(section-counter, decimal-leading-zero) ' — ';
            font-weight: 400;
            font-size: 0.75rem;
            color: #9ca3af;
            letter-spacing: 0;
            text-transform: none;
        }
        /* Unified section label spacing */
        section.counted [class$="-label"],
        section.counted .eyebrow {
            margin-bottom: 24px;
            display: block;
        }

        /* Shared eyebrow label used across all sections */
        .eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 24px;
        }

        .platform-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #2563eb;
            text-transform: uppercase;
            margin-bottom: 16px;
            text-align: left;
        }

        .platform-headline {
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 20px;
            color: #0f1e38;
            text-align: left;
        }

        .platform-subheading {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 64px;
            max-width: 600px;
            text-align: left;
        }

        .tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 64px;
            border-bottom: 2px solid #e5e7eb;
            overflow-x: auto;
            padding-bottom: 0;
        }

        .tab {
            padding: 12px 20px;
            background: transparent;
            border: none;
            font-size: 0.95rem;
            font-weight: 500;
            color: #6b7280;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .tab:hover {
            color: #374151;
        }

        .tab.active {
            color: #2563eb;
            border-bottom-color: #2563eb;
        }

        .tab-icon {
            font-size: 1.2rem;
        }

        .tab-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: contents;
        }

        .tab-text {
            display: flex;
            flex-direction: column;
        }

        .tab-badge {
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #2563eb;
            text-transform: uppercase;
            margin-bottom: 12px;
            width: fit-content;
        }

        .tab-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #0f1e38;
        }

        .tab-desc {
            font-size: 0.95rem;
            color: #6b7280;
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .tab-bullets {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .tab-bullet {
            font-size: 0.95rem;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tab-bullet::before {
            content: '→';
            color: #2563eb;
            font-weight: 600;
            flex-shrink: 0;
        }

        .tab-link {
            color: #2563eb;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease;
        }

        .tab-link:hover {
            gap: 10px;
        }

        .tab-visual {
            background: #f8fafe;
            border: 1px solid #dce8fd;
            border-radius: 16px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            min-height: 340px;
        }

        .visual-stat {
            display: flex;
            align-items: baseline;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .visual-stat:last-child {
            border-bottom: none;
        }

        .visual-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: #0f1e38;
            line-height: 1;
            min-width: 90px;
        }

        .visual-label {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.4;
        }

        /* ===== CHALLENGES SECTION ===== */
        .challenges {
            background: #ffffff;
            padding: 80px 0;
        }

        .challenges-headline {
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 16px;
            color: #0f1e38;
            text-align: left;
        }

        .challenges-subheading {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 56px;
            max-width: 600px;
            text-align: left;
        }

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

        .challenge-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .challenge-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #d1d5db;
            margin-bottom: 24px;
        }

        .challenge-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0f1e38;
            margin-bottom: 12px;
        }

        .challenge-desc {
            font-size: 0.95rem;
            color: #6b7280;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .challenge-fix {
            background: #eff6ff;
            border: 1px solid #dbeafe;
            border-radius: 8px;
            padding: 16px;
            margin-top: auto;
        }

        .challenge-fix-title {
            font-size: 0.8rem;
            font-weight: 700;
            color: #2563eb;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .challenge-fix-items {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .challenge-fix-item {
            font-size: 0.85rem;
            color: #1d4ed8;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .challenge-fix-item::before {
            content: '✓';
            font-weight: 700;
            flex-shrink: 0;
        }

        /* ===== HOW IT WORKS SECTION ===== */
        .how-it-works {
            background: #f8f9fa;
            padding: 100px 0;
        }

        .how-headline {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 48px;
            color: #0f1e38;
        }

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

        .step {
            display: flex;
            flex-direction: column;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: #2563eb;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 24px;
            flex-shrink: 0;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f1e38;
            margin-bottom: 12px;
        }

        .step-desc {
            font-size: 0.95rem;
            color: #6b7280;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .step-visual {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 32px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d1d5db;
            font-size: 3rem;
        }

        /* ===== STATS SECTION ===== */
        .stats {
            background: #f9fafb;
            padding: 80px 0;
        }

        .stats-top {
            margin-bottom: 64px;
            max-width: 640px;
        }

        .stats-top h2 {
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            font-weight: 800;
            color: #0f1e38;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .stats-paragraph {
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.75;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border-top: 1px solid #e5e7eb;
            padding-top: 64px;
        }

        .stat {
            padding: 0 40px 0 0;
            border-right: 1px solid #e5e7eb;
        }

        .stat:first-child { padding-left: 0; }
        .stat:last-child { border-right: none; padding-right: 0; }
        .stat:not(:first-child) { padding-left: 40px; }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: #0f1e38;
            line-height: 1;
            margin-bottom: 10px;
            letter-spacing: -1px;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.5;
        }

        /* ===== PRICING SECTION ===== */
        #pricing {
            background: #ffffff;
            padding: 80px 0;
        }

        .pricing-headline {
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            font-weight: 800;
            text-align: left;
            margin-bottom: 48px;
            color: #0f1e38;
        }

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

        .pricing-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card.featured {
            background: #2563eb;
            color: #ffffff;
            border: none;
            transform: translateY(-8px);
            box-shadow: 0 4px 16px rgba(37,99,235,.12);
        }

        .pricing-card:not(.featured):hover {
            border-color: #d1d5db;
            box-shadow: 0 4px 16px rgba(0,0,0,.08);
        }

        .pricing-plan {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 4px;
        }

        .pricing-price-period {
            font-size: 0.9rem;
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid;
            border-color: inherit;
        }

        .pricing-desc {
            font-size: 0.9rem;
            margin-bottom: 24px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .pricing-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
            flex: 1;
        }

        .pricing-feature {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-feature::before {
            content: '✓';
            font-weight: 700;
            flex-shrink: 0;
            opacity: 0.8;
        }

        .pricing-cta {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }

        .pricing-card:not(.featured) .pricing-cta {
            background: #2563eb;
            color: #ffffff;
            border: none;
        }

        .pricing-card:not(.featured) .pricing-cta:hover {
            background: #1d4ed8;
        }

        .pricing-card.featured .pricing-cta {
            background: #ffffff;
            color: #2563eb;
            border: none;
        }

        .pricing-card.featured .pricing-cta:hover {
            background: #f3f4f6;
        }

        /* ===== FAQ SECTION ===== */
        .faq {
            background: #f4f8ff;
            padding: 80px 0;
        }

        .faq-container {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 80px;
            align-items: start;
        }

        .faq-header {
            display: flex;
            flex-direction: column;
        }

        .faq-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 24px;
        }
        .faq-headline {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #0f1e38;
        }

        .faq-subheading {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .faq-contact-btn {
            background: transparent;
            color: #2563eb;
            border: 1.5px solid #2563eb;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            width: fit-content;
        }

        .faq-contact-btn:hover {
            background: #eff6ff;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .accordion-item {
            border-bottom: 1px solid #e5e7eb;
            padding: 24px 0;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            padding: 0;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
        }

        .accordion-title {
            font-size: 1rem;
            font-weight: 600;
            color: #0f1e38;
            transition: color 0.2s ease;
        }

        .accordion-header:hover .accordion-title {
            color: #2563eb;
        }

        .accordion-toggle {
            font-size: 1.5rem;
            color: #d1d5db;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-toggle {
            transform: rotate(180deg);
            color: #2563eb;
        }

        .accordion-content {
            display: none;
            margin-top: 16px;
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.7;
        }

        .accordion-item.active .accordion-content {
            display: block;
        }

        /* ===== FINAL CTA SECTION ===== */
        .final-cta {
            background: #f8f9fa;
            padding: 80px 40px;
            text-align: center;
        }

        .final-cta-headline {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #0f1e38;
        }

        .final-cta-sub {
            font-size: 1.05rem;
            color: #6b7280;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

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

        /* ===== FOOTER ===== */
        footer {
            background: #ffffff;
            border-top: 1px solid #e5e7eb;
            padding: 64px 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #0f1e38;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .footer-col-logo {
            display: flex;
            flex-direction: column;
        }

        .footer-col-logo img {
            height: auto;
            max-height: 36px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
            object-position: left center;
            margin-bottom: 12px;
        }

        .footer-tagline {
            font-size: 0.85rem;
            color: #6b7280;
            line-height: 1.6;
        }

        .footer-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link {
            font-size: 0.9rem;
            color: #6b7280;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: #2563eb;
        }

        .footer-bottom {
            border-top: 1px solid #e5e7eb;
            padding-top: 32px;
            text-align: center;
            font-size: 0.85rem;
            color: #6b7280;
        }

        /* ===== MODAL ===== */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: #ffffff;
            border-radius: 12px;
            padding: 48px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: transparent;
            border: none;
            font-size: 1.5rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .modal-close:hover {
            color: #6b7280;
        }

        .modal-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 8px;
            color: #0f1e38;
        }

        .modal-subtitle {
            font-size: 0.9rem;
            color: #6b7280;
            margin-bottom: 32px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }

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

        .form-group.form-row > label {
            grid-column: 1;
        }

        .form-group.form-row input {
            grid-column: 1;
        }

        .form-group.form-row .form-group:nth-child(2) {
            grid-column: 2;
            margin-bottom: 0;
        }

        label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #0f1e38;
            margin-bottom: 8px;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            padding: 10px 12px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 0.9rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: #0f1e38;
            transition: border-color 0.2s ease;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px #eff6ff;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            background: #2563eb;
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            width: 100%;
            transition: background 0.2s ease;
            margin-top: 12px;
        }

        .form-submit:hover {
            background: #1d4ed8;
        }

        .modal-message {
            display: none;
            padding: 16px;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            border-radius: 8px;
            color: #047857;
            text-align: center;
            margin-bottom: 16px;
        }

        .modal-message.success {
            display: block;
        }

        /* ===== BUILT FOR LOGISTICS SECTION ===== */
        .built-for {
            padding: 80px 0;
            background: #ffffff;
        }

        .built-for-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 16px;
        }

        .built-for-headline {
            font-size: clamp(2rem, 3.2vw, 2.8rem);
            font-weight: 800;
            color: #0f1e38;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .built-for-headline em {
            font-style: normal;
            color: #2563eb;
        }

        .built-for-sub {
            font-size: 1.05rem;
            color: #6b7280;
            margin-bottom: 56px;
            max-width: 680px;
            line-height: 1.7;
        }

        .built-for-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
        }

        .built-card {
            padding: 36px;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .built-card:hover {
            border-color: rgba(37,99,235,.25);
            box-shadow: 0 4px 20px rgba(37,99,235,.07);
        }

        .built-card-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            display: block;
        }

        .built-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #0f1e38;
            margin-bottom: 10px;
        }

        .built-card-desc {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .built-card-points {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .built-card-point {
            font-size: 0.875rem;
            color: #374151;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
        }

        .built-card-point::before {
            content: '→';
            color: #2563eb;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* ===== IN-HOUSE vs V-TER SECTION ===== */
        .why-vter {
            padding: 80px 0;
            background: #f0f6ff;
        }
        .why-vter-label {
            font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: #2563eb; margin-bottom: 16px;
        }
        .why-vter-headline {
            font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800;
            color: #0f1e38; margin-bottom: 16px; line-height: 1.2;
        }
        .why-vter-headline em { font-style: normal; color: #2563eb; }
        .why-vter-sub {
            font-size: 1.05rem; color: #6b7280; margin-bottom: 48px;
            max-width: 600px; line-height: 1.7;
        }

        /* VS TABLE */
        .vs-table { border-radius: 16px; overflow: hidden; border: 1px solid #dbeafe; }

        /* Column header */
        .vs-head {
            display: grid; grid-template-columns: 1fr 44px 1fr;
        }
        .vs-head-bad {
            padding: 12px 28px; background: #fff5f5;
            font-size: 0.65rem; font-weight: 700; letter-spacing: .12em;
            text-transform: uppercase; color: #f87171;
            border-bottom: 1px solid #fecaca;
        }
        .vs-head-bad::before { content: '✕  '; color: #ef4444; }
        .vs-head-sep {
            background: #fafafa; border-left: 1px solid #fecaca;
            border-right: 1px solid #dbeafe; border-bottom: 1px solid #e5e7eb;
        }
        .vs-head-good {
            padding: 12px 28px; background: #2563eb;
            font-size: 0.65rem; font-weight: 700; letter-spacing: .12em;
            text-transform: uppercase; color: #bfdbfe;
            border-bottom: 1px solid #1d4ed8;
        }
        .vs-head-good::before { content: '✓  '; color: #86efac; }

        /* Each row */
        .vs-row {
            border-bottom: 1px solid #f3f4f6;
        }
        .vs-row:last-child { border-bottom: none; }

        .vs-topic {
            display: flex; align-items: flex-start; gap: 12px;
            padding: 20px 28px 0;
            background: #fff;
            border-bottom: 1px solid #f3f4f6;
        }
        .vs-topic-num {
            width: 26px; height: 26px; border-radius: 50%;
            background: #f3f4f6; border: 1.5px solid #e5e7eb;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.65rem; font-weight: 800; color: #9ca3af; flex-shrink: 0;
        }
        .vs-topic-label {
            font-size: 0.9rem; font-weight: 700; color: #0f1e38;
            padding-bottom: 20px;
        }

        .vs-cols {
            display: grid; grid-template-columns: 1fr 44px 1fr;
            align-items: stretch;
        }
        .vs-bad {
            padding: 20px 28px 28px; background: #fff9f9;
            border-left: 3px solid #fca5a5;
        }
        .vs-bad p {
            font-size: 0.875rem; color: #b91c1c; opacity: .55; line-height: 1.7; margin: 0;
        }
        .vs-sep {
            display: flex; align-items: center; justify-content: center;
            background: #fff;
            border-left: 1px solid #fecaca; border-right: 1px solid #dbeafe;
        }
        .vs-sep-badge {
            width: 34px; height: 34px; border-radius: 50%;
            background: #fff; border: 2px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0,0,0,.10);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.55rem; font-weight: 900; color: #6b7280; text-transform: uppercase;
            letter-spacing: .06em;
        }
        .vs-good {
            padding: 20px 28px 28px;
            background: #eff6ff;
            border-left: 3px solid #2563eb;
            display: flex; flex-direction: column; gap: 8px;
        }
        .vs-bullet {
            display: flex; align-items: flex-start; gap: 9px;
            font-size: 0.875rem; font-weight: 600; color: #1e3a5f; line-height: 1.5;
        }
        .vs-bullet::before {
            content: '✓'; color: #2563eb; font-size: 0.8rem;
            font-weight: 800; flex-shrink: 0; margin-top: 1px;
        }

        @media (max-width: 768px) {
            .vs-head, .vs-cols { grid-template-columns: 1fr; }
            .vs-head-sep, .vs-sep { display: none; }
            .vs-bad { border-left-width: 0; border-top: 3px solid #fca5a5; }
            .vs-good { border-left-width: 0; border-top: 3px solid #2563eb; }
            .vs-topic { padding: 16px 20px 0; }
            .vs-topic-label { padding-bottom: 16px; }
            .vs-bad, .vs-good { padding: 16px 20px 20px; }
        }

        /* ===== PRICING TREE ===== */
        .ptree-tag {
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .ptree-badge {
            background: #2563eb;
            color: #fff;
            font-size: 0.62rem;
            padding: 2px 10px;
            border-radius: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .ptree-price-row {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 16px;
        }
        .ptree-price {
            font-size: 3rem;
            font-weight: 900;
            color: #0f1e38;
            line-height: 1;
            letter-spacing: -1.5px;
        }
        .ptree-period {
            color: #6b7280;
            font-size: 0.875rem;
        }
        .ptree-btn {
            display: inline-block;
            margin-top: 24px;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
            transition: background 0.15s, color 0.15s;
        }
        .ptree-btn-primary {
            background: #2563eb;
            color: #fff;
        }
        .ptree-btn-primary:hover { background: #1d4ed8; }
        .ptree-btn-secondary {
            background: transparent;
            color: #2563eb;
            border: 1.5px solid #2563eb;
        }
        .ptree-btn-secondary:hover { background: #eff6ff; }
        .tree-row.ptree-featured {
            background: #f8fafe;
            border-radius: 12px;
            border: 1px solid #bfdbfe !important;
            padding: 40px 32px;
            margin: 0 -32px;
        }
        .tree-row.ptree-featured .tree-circle {
            background: #2563eb;
            color: #fff;
            border-color: #2563eb;
        }
        .tree-row.ptree-featured .ptree-price { color: #1e40af; }

        /* ===== FAQ OPEN TREE ===== */
        .faq-open-header {
            margin-bottom: 64px;
        }
        .faq-open-header .faq-label { margin-bottom: 16px; }
        .faq-open-header .faq-headline { margin-bottom: 12px; }
        .faq-open-header .faq-subheading { margin-bottom: 24px; }
        .faq-open-header .faq-contact-btn {
            display: inline-block;
            background: transparent;
            color: #2563eb;
            border: 1.5px solid #2563eb;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
        }

        /* ===== COMPANY STAT TREE ===== */
        .company-stat-tree {
            display: flex;
            flex-direction: column;
        }
        .company-stat-item {
            display: flex;
            flex-direction: column;
            padding: 32px 0;
            border-top: 1px solid #e5e7eb;
        }
        .company-stat-item:last-child { border-bottom: 1px solid #e5e7eb; }
        .company-stat-num {
            font-size: 2.8rem;
            font-weight: 900;
            color: #0f1e38;
            letter-spacing: -1px;
            line-height: 1;
            margin-bottom: 8px;
        }
        .company-stat-lbl {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.5;
        }

        /* ===== ENHANCED IMPLEMENTATION TIMELINE ===== */
        .implementation {
            padding: 80px 0;
            background: #ffffff;
        }

        .impl-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 16px;
        }

        .impl-headline {
            font-size: clamp(2rem, 3.2vw, 2.8rem);
            font-weight: 800;
            color: #0f1e38;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .impl-sub {
            font-size: 1.05rem;
            color: #6b7280;
            margin-bottom: 56px;
            max-width: 600px;
            line-height: 1.7;
        }

        /* Stacked steps (SendTek-style) */
        .impl-steps {
            display: flex;
            flex-direction: column;
            margin-top: 72px;
        }

        .impl-step-row {
            border-top: 1px solid #e5e7eb;
        }

        .impl-step-row:last-child {
            border-bottom: 1px solid #e5e7eb;
        }

        .impl-step-header {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 22px 0;
        }

        .impl-step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #d1d5db;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 700;
            color: #9ca3af;
            flex-shrink: 0;
        }

        .impl-step-row:first-child .impl-step-circle {
            border-color: #2563eb;
            background: #2563eb;
            color: #ffffff;
        }

        .impl-step-header-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #0f1e38;
            flex: 1;
        }

        .impl-step-week-badge {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #9ca3af;
        }

        .impl-step-body {
            margin-left: 60px;
            padding-bottom: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .impl-step-tag {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #2563eb;
            background: #eff6ff;
            padding: 4px 10px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 14px;
        }

        .impl-step-desc {
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .impl-checklist {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .impl-checklist li {
            font-size: 0.875rem;
            color: #374151;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
        }

        .impl-checklist li::before {
            content: '✓';
            color: #16a34a;
            font-weight: 700;
            flex-shrink: 0;
        }

        .impl-step-visual {
            background: #f9fafb;
            border-radius: 10px;
            padding: 24px;
        }

        .impl-visual-title {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #9ca3af;
            margin-bottom: 16px;
        }

        .impl-visual-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 0;
            border-bottom: 1px solid #e5e7eb;
            font-size: 0.875rem;
            color: #374151;
        }

        .impl-visual-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .impl-visual-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d1d5db;
            flex-shrink: 0;
        }

        .impl-step-row:first-child .impl-visual-dot {
            background: #2563eb;
        }

        /* ===== OUR APPROACH SECTION ===== */
        .approach {
            padding: 80px 0;
            background: #ffffff;
        }

        .approach-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 16px;
        }

        .approach-headline {
            font-size: clamp(2rem, 3.2vw, 2.8rem);
            font-weight: 800;
            color: #0f1e38;
            line-height: 1.2;
        }

        .approach-headline em {
            font-style: normal;
            color: #2563eb;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
            margin-top: 64px;
        }

        .approach-card {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 40px 36px 32px;
            display: flex;
            flex-direction: column;
            transition: border-color 0.2s, background 0.2s;
        }

        .approach-card:hover {
            background: #ffffff;
            border-color: rgba(37,99,235,.25);
            box-shadow: 0 4px 20px rgba(37,99,235,.07);
        }

        .approach-icon {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .approach-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0f1e38;
            margin-bottom: 10px;
        }

        .approach-card-desc {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .approach-list {
            list-style: none;
            padding: 0;
            margin: 0 0 auto 0;
            display: flex;
            flex-direction: column;
            gap: 9px;
            flex: 1;
        }

        .approach-list li {
            font-size: 0.875rem;
            color: #374151;
            padding-left: 18px;
            position: relative;
            line-height: 1.5;
        }

        .approach-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #2563eb;
            font-weight: 700;
        }

        .approach-tag {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
            font-size: 0.85rem;
            font-weight: 600;
            color: #2563eb;
        }

        /* ===== COMPANY SECTION ===== */
        .company-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .company-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .company-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 16px;
        }

        .company-headline {
            font-size: clamp(2rem, 3.2vw, 2.8rem);
            font-weight: 800;
            color: #0f1e38;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .company-headline em {
            font-style: normal;
            color: #2563eb;
        }

        .company-text {
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .company-cta {
            margin-top: 32px;
        }

        .company-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .company-stat-card {
            padding: 28px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
        }

        .company-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #0f1e38;
            line-height: 1;
            margin-bottom: 8px;
        }

        .company-stat-label {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.4;
        }

        /* ===== TREE LIST (shared: built-for, challenges, approach) ===== */
        .tree-list {
            margin-top: 72px;
            display: flex;
            flex-direction: column;
        }
        .tree-row {
            display: grid;
            grid-template-columns: 64px 1fr;
            gap: 40px;
            border-top: 1px solid #e5e7eb;
            padding: 48px 0;
            align-items: start;
        }
        .tree-row.tree-split {
            grid-template-columns: 64px 1fr 1fr;
        }
        .tree-marker {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 4px;
        }
        .tree-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #2563eb;
            color: #2563eb;
            font-size: 0.72rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            letter-spacing: 0.5px;
        }
        .tree-line {
            flex: 1;
            width: 2px;
            background: linear-gradient(to bottom, #bfdbfe 60%, transparent);
            margin-top: 10px;
            min-height: 40px;
        }
        .tree-row:last-child .tree-line { display: none; }
        .tree-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f1e38;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .tree-desc {
            color: #6b7280;
            margin-bottom: 20px;
            line-height: 1.65;
            max-width: 560px;
        }
        .tree-bullets {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .tree-bullet {
            color: #374151;
            font-size: 0.875rem;
            padding-left: 18px;
            position: relative;
            line-height: 1.5;
        }
        .tree-bullet::before {
            content: '—';
            position: absolute;
            left: 0;
            color: #2563eb;
            font-weight: 600;
        }
        .tree-fix {
            padding-left: 36px;
            border-left: 1px solid #e5e7eb;
        }
        .tree-fix-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 16px;
        }
        .why-vter .tree-body-label {
            font-size: 0.7rem !important;
            font-weight: 700 !important;
            letter-spacing: 1.5px !important;
            text-transform: uppercase !important;
            color: #9ca3af !important;
            margin-bottom: 10px !important;
            display: block !important;
        }
        .tree-tag {
            display: inline-block;
            margin-top: 20px;
            padding: 5px 14px;
            background: #eff6ff;
            color: #2563eb;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 20px;
        }

        /* ===== PRODUCT TREE (platform section) ===== */
        .product-tree {
            margin-top: 72px;
            display: flex;
            flex-direction: column;
        }
        .product-row {
            display: grid;
            grid-template-columns: 64px 1fr 200px;
            gap: 48px;
            border-top: 1px solid #e5e7eb;
            padding: 48px 0;
            align-items: start;
        }
        .product-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 4px;
        }
        .product-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #2563eb;
            color: #fff;
            font-size: 0.72rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            letter-spacing: 0.5px;
        }
        .product-connector {
            flex: 1;
            width: 2px;
            background: linear-gradient(to bottom, #bfdbfe 60%, transparent);
            margin-top: 10px;
            min-height: 40px;
        }
        .product-row:last-child .product-connector { display: none; }
        .product-tag {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 8px;
        }
        .product-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f1e38;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .product-desc {
            color: #6b7280;
            margin-bottom: 16px;
            line-height: 1.65;
        }
        .product-bullets {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 20px;
        }
        .product-bullet {
            color: #374151;
            font-size: 0.875rem;
            padding-left: 18px;
            position: relative;
            line-height: 1.5;
        }
        .product-bullet::before {
            content: '—';
            position: absolute;
            left: 0;
            color: #2563eb;
            font-weight: 600;
        }
        .product-link-row {
            color: #2563eb;
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
        }
        .product-link-row:hover { text-decoration: underline; }
        .product-stat-box {
            background: #f8fafe;
            border: 1px solid #dce8fd;
            border-radius: 12px;
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            align-self: start;
            margin-top: 4px;
        }
        .product-stat-num {
            font-size: 2rem;
            font-weight: 900;
            color: #0f1e38;
            line-height: 1;
            letter-spacing: -0.5px;
        }
        .product-stat-label {
            font-size: 0.78rem;
            color: #6b7280;
            line-height: 1.4;
            margin-top: 4px;
        }

        /* ===== INTEGRATIONS ===== */
        .integrations {
            padding: 80px 0;
            background: #f8faff;
        }

        .integrations-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 24px;
            display: block;
        }

        .integrations-headline {
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            font-weight: 900;
            color: #0f1e38;
            letter-spacing: -1px;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .integrations-subheading {
            font-size: 1rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 0;
            max-width: 560px;
        }

        .tree-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .int-pill {
            font-size: 0.82rem;
            font-weight: 600;
            color: #374151;
            padding: 6px 14px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            white-space: nowrap;
            transition: border-color 0.15s, color 0.15s;
        }

        .int-pill:hover {
            border-color: #bfdbfe;
            color: #2563eb;
        }

        .int-pill.int-pill-more {
            color: #9ca3af;
            border-style: dashed;
            background: transparent;
        }

        .int-pill.int-pill-api {
            background: #eff6ff;
            border-color: #bfdbfe;
            color: #2563eb;
        }

        /* ===== SOCIAL PROOF ===== */
        .social-proof {
            padding: 80px 0;
        }

        .social-proof-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563eb;
            margin-bottom: 24px;
            display: block;
        }

        .social-proof-headline {
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            font-weight: 900;
            color: #0f1e38;
            letter-spacing: -1px;
            line-height: 1.15;
            margin-bottom: 72px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: #e5e7eb;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            overflow: hidden;
        }

        .testimonial-card {
            background: #fff;
            border: 1px solid #e8eef8;
            padding: 36px;
            display: flex;
            flex-direction: column;
        }

        .testimonial-quote-mark {
            font-size: 3.5rem;
            color: #dce8fd;
            font-family: Georgia, serif;
            line-height: 0.8;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .testimonial-text {
            font-size: 0.975rem;
            line-height: 1.75;
            color: #374151;
            flex: 1;
            flex: 1;
            margin-bottom: 32px;
        }

        .testimonial-footer {
            border-top: 1px solid #f3f4f6;
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .testimonial-name {
            font-size: 0.875rem;
            font-weight: 700;
            color: #0f1e38;
            margin-bottom: 2px;
        }

        .testimonial-role {
            font-size: 0.75rem;
            color: #9ca3af;
        }

        .testimonial-result {
            background: #eff6ff;
            border: 1px solid #bfdbfe;
            border-radius: 8px;
            padding: 6px 12px;
            font-size: 0.7rem;
            font-weight: 700;
            color: #2563eb;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .nav-container {
                padding: 0 20px;
            }

            .nav-center {
                display: none;
            }

            .challenges-grid,
            .steps-grid,
            .pricing-grid,
            .built-for-grid,
            .approach-grid,
            .company-stats,
            .impl-step-body {
                grid-template-columns: 1fr;
            }

            .tree-row,
            .tree-row.tree-split {
                grid-template-columns: 48px 1fr;
                gap: 20px;
                padding: 32px 0;
            }
            .tree-row.tree-split .tree-fix {
                grid-column: 2;
                border-left: none;
                border-top: 1px solid #e5e7eb;
                padding-left: 0;
                padding-top: 20px;
                margin-top: 8px;
            }
            .product-row {
                grid-template-columns: 48px 1fr;
                gap: 20px;
                padding: 32px 0;
            }
            .product-stat-box {
                grid-column: 2;
                align-self: auto;
                margin-top: 16px;
            }

            .impl-step-body {
                margin-left: 0;
                gap: 24px;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px 24px;
                padding-top: 32px;
            }

            .stat {
                padding: 0 !important;
                border-right: none !important;
            }

            .stat-number {
                font-size: 2.8rem;
            }

            .company-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .why-vter .container {
                overflow-x: auto;
            }

            .dropdown-menu {
                min-width: 100vw;
                left: 0;
                right: 0;
                transform: none;
                grid-template-columns: 1fr;
                border-radius: 0;
                border: 1px solid #e5e7eb;
                border-top: none;
            }

            .tab-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

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

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

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

            .hero-headline {
                font-size: clamp(2rem, 5vw, 3rem);
                letter-spacing: -1px;
            }

            .hero-subheading {
                max-width: 100%;
            }

            .final-cta-buttons {
                flex-direction: column;
            }

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

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .nav-container {
                padding: 0 16px;
            }


            .hero-ctas {
                flex-direction: column;
            }

            .trust-strip {
                gap: 12px;
            }

            .modal {
                padding: 32px 24px;
                width: 95%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        /* ===== DESIGN SYSTEM VARIABLES ===== */
        :root {
            --nav-h:      72px;
            --ink:        #0f1e38;
            --off:        #f8faff;
            --dark-bg:    #16294a;
            --darkest-bg: #0e1c2e;
            --amber:      #F59E0B;
        }

        .hero-headline {
            font-size: clamp(3rem, 5vw, 5rem) !important;
            letter-spacing: -2.5px !important;
            line-height: 1.04 !important;
        }

        /* ===== HERO CAPS LIST — dark panel ===== */
        .hero-caps-list {
            background: var(--dark-bg);
            border-radius: 20px;
            padding: 36px 40px;
            border: 1px solid rgba(255,255,255,0.06);
            box-shadow: 0 32px 80px rgba(0,0,0,0.35);
        }

        .hero-cap-item {
            border-bottom-color: rgba(255,255,255,0.08) !important;
        }

        .hero-cap-icon {
            background: rgba(37,99,235,0.25) !important;
            border-color: rgba(37,99,235,0.4) !important;
            color: #60a5fa !important;
        }

        .hero-cap-title {
            color: #f1f5f9 !important;
        }

        .hero-cap-desc {
            color: rgba(255,255,255,0.45) !important;
        }

        .hero-cap-stat-num {
            color: var(--amber) !important;
        }

        .hero-cap-stat-label {
            color: rgba(255,255,255,0.35) !important;
        }

        /* ===== STATS SECTION — light blue with bold blue numbers ===== */
        .stats {
            background: #eef4ff !important;
            padding: 80px 0 !important;
            position: relative;
            overflow: hidden;
        }

        .stats .eyebrow {
            color: #2563eb !important;
        }

        .stats-top h2 {
            color: #0f1e38 !important;
            font-size: clamp(2.4rem, 4vw, 3.2rem) !important;
        }

        .stats-paragraph {
            color: #4b5563 !important;
        }

        .stats-row {
            border-top-color: #c7d9f8 !important;
            padding-top: 64px !important;
        }

        .stat {
            border-right-color: #c7d9f8 !important;
        }

        .stat-number {
            font-size: 4.5rem !important;
            color: #1d4ed8 !important;
            letter-spacing: -2px !important;
        }

        .stat-label {
            color: #4b5563 !important;
            font-size: 0.875rem !important;
            margin-top: 8px;
        }

        /* ===== FINAL CTA — darkest section ===== */
        .final-cta {
            background: var(--darkest-bg) !important;
            padding: 80px 40px !important;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(ellipse at 50% 120%, rgba(37,99,235,0.15) 0%, transparent 65%);
            pointer-events: none;
        }

        .final-cta-headline {
            font-size: clamp(2.8rem, 5vw, 4.5rem) !important;
            color: #ffffff !important;
            letter-spacing: -2px !important;
            margin-bottom: 24px !important;
        }

        .final-cta-sub {
            color: rgba(255,255,255,0.55) !important;
        }

        /* Primary CTA button — amber, matches hero stats accent */
        .final-cta .btn-primary {
            background: #F59E0B !important;
            color: #0f1e38 !important;
            border-color: #F59E0B !important;
            font-weight: 700 !important;
        }

        .final-cta .btn-primary:hover {
            background: #FBBF24 !important;
            border-color: #FBBF24 !important;
        }

        .final-cta .btn-secondary {
            border-color: rgba(255,255,255,0.2) !important;
            color: rgba(255,255,255,0.65) !important;
        }

        .final-cta .btn-secondary:hover {
            background: rgba(255,255,255,0.07) !important;
            border-color: rgba(255,255,255,0.4) !important;
            color: #ffffff !important;
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
        }

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

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* ===== MARQUEE — carrier pills ===== */
        .marquee-track {
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }

        .marquee-row {
            display: flex;
            gap: 8px;
            margin-bottom: 8px;
            width: max-content;
            animation: marquee-left 35s linear infinite;
        }

        .marquee-row-reverse {
            animation: marquee-right 40s linear infinite;
        }

        @keyframes marquee-left {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        @keyframes marquee-right {
            from { transform: translateX(-50%); }
            to   { transform: translateX(0); }
        }

        .marquee-track:hover .marquee-row,
        .marquee-track:hover .marquee-row-reverse {
            animation-play-state: paused;
        }

        /* ===== FIX: prevent section counter bleeding into stat labels ===== */
        .stats .stat-label::before,
        .company-stat-lbl::before,
        .hero-cap-stat-label::before,
        #platform .product-stat-label::before,
        .approach .tree-tag::before,
        .approach .tree-bullet::before,
        .approach .tree-title::before,
        .approach .tree-desc::before,
        .why-vter .tree-tag::before,
        .why-vter .tree-bullet::before,
        .why-vter .tree-fix-label::before,
        .why-vter .tree-body-label::before {
            content: none !important;
        }

        /* ===== FAQ LIGHT THEME — stronger Q circles ===== */
        .faq .tree-circle {
            background: #2563eb !important;
            border-color: #2563eb !important;
            color: #ffffff !important;
            font-weight: 800;
        }
        .faq .tree-row {
            border-top-color: #dce8fd !important;
        }
        .faq .tree-row:last-child {
            border-bottom: 1px solid #dce8fd;
        }
        .faq .tree-line {
            background: linear-gradient(to bottom, #bfdbfe 60%, transparent) !important;
        }

        /* ===== AMBER HIGHLIGHTS ===== */
        .hero-features .hf-check {
            color: var(--amber) !important;
        }

        .product-stat-num {
            color: #2563eb;
        }

        /* ===== DARK SECTION NAV SEPARATOR ===== */
        .stats + section,
        .final-cta + footer {
            border-top: none;
        }

        /* ===== PLATFORM SECTION — subtle tint to separate from white hero ===== */
        #platform {
            background: #f8faff;
        }

        /* ===== APPROACH SECTION ===== */
        .approach {
            background: #ffffff !important;
            padding: 80px 0 !important;
        }

        /* ===== MOBILE OVERRIDES for new styles ===== */
        @media (max-width: 768px) {
            .stat-number { font-size: 3.2rem !important; }
            .hero-headline { font-size: clamp(2.2rem, 7vw, 3.5rem) !important; letter-spacing: -1.5px !important; }
            .hero-caps-list { padding: 24px; }
            .final-cta { padding: 80px 24px !important; }
            .final-cta-headline { font-size: clamp(2rem, 6vw, 3rem) !important; }
        }

/* ── FAB ── */
.fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #eff6ff; color: #1d4ed8;
  font-family: var(--font); font-size: .875rem; font-weight: 700;
  border: 1.5px solid #93c5fd; border-radius: 100px;
  padding: 14px 24px; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,99,235,.18);
  transition: background .15s, box-shadow .15s, transform .15s;
}
.fab:hover { background: #dbeafe; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,99,235,.25); }
.fab svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 640px) { .fab { bottom: 20px; right: 16px; padding: 12px 18px; font-size: .8125rem; } }

/* ── QUESTION MODAL ── */
.q-overlay {
  display: none; position: fixed; inset: 0; z-index: 1200;
  background: rgba(17,24,39,.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.q-overlay.open { display: flex; }
.q-box {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  width: 100%; max-width: 480px; padding: 40px; position: relative;
}
.q-close {
  position: absolute; top: 18px; right: 18px; background: none; border: none;
  font-size: 1.1rem; color: var(--muted); cursor: pointer; line-height: 1;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.q-close:hover { background: var(--off); }
.q-title { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.q-sub { font-size: .875rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.q-group { margin-bottom: 16px; }
.q-group label { display: block; font-size: .8125rem; font-weight: 600; color: var(--ink-mid); margin-bottom: 6px; }
.q-group input, .q-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-md); font-family: var(--font); font-size: .875rem;
  color: var(--ink); background: var(--white); transition: border-color .15s;
}
.q-group input:focus, .q-group textarea:focus { outline: none; border-color: var(--blue-500); }
.q-group textarea { min-height: 100px; resize: vertical; }
.q-btn {
  width: 100%; padding: 12px; background: var(--ink); color: var(--white);
  border: none; border-radius: var(--radius-md); font-family: var(--font);
  font-size: .875rem; font-weight: 700; cursor: pointer; transition: opacity .15s; margin-top: 8px;
}
.q-btn:hover { opacity: .85; }
.q-success { display: none; text-align: center; padding: 20px 0; }
.q-success h3 { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.q-success p { color: var(--muted); font-size: .875rem; }

/* ── INLINE EXPAND (click accordion) ── */
.expand-row { cursor: pointer; transition: background .2s; border-radius: 8px; }
.expand-row.is-open { background: rgba(37,99,235,.03); }
.expand-title {
  font-weight: 700; color: var(--ink, #0f1e38);
  text-decoration: underline dotted rgba(15,30,56,.18);
  text-underline-offset: 4px;
  transition: color .2s, text-decoration-color .2s;
}
.expand-row.is-open .expand-title {
  color: var(--blue-700, #2563eb);
  text-decoration-style: solid;
  text-decoration-color: rgba(37,99,235,.4);
}
.expand-cue { display: inline-flex; align-items: center; margin-left: 8px; vertical-align: middle; color: var(--blue-700, #2563eb); opacity: .45; transition: opacity .15s; }
.expand-cue svg { width: 13px; height: 13px; transition: transform .3s ease; }
.expand-row.is-open .expand-cue { opacity: 1; }
.expand-row.is-open .expand-cue svg { transform: rotate(90deg); }
.expand-detail { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .4s ease, opacity .3s ease; }
.expand-row.is-open .expand-detail { max-height: 600px; opacity: 1; }

#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0f1e38; color: #e5e7eb;
  padding: 20px 40px; border-top: 1px solid rgba(255,255,255,.1);
  animation: cookieSlide .35s ease;
}
@keyframes cookieSlide { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cookie-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 260px; }
.cookie-text strong { font-size: .9rem; font-weight: 700; color: #fff; }
.cookie-text span { font-size: .83rem; line-height: 1.6; color: #9ca3af; }
.cookie-text a { color: #60a5fa; text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .85rem; font-weight: 700;
  padding: 10px 22px; border-radius: 8px; cursor: pointer; border: none;
  transition: opacity .2s;
}
.cookie-btn:hover { opacity: .85; }
.cookie-decline {
  background: transparent; color: #9ca3af;
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,.5); opacity: 1; }
.cookie-accept { background: #2563eb; color: #fff; }
@media (max-width: 640px) {
  #cookie-banner { padding: 20px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

.product-link-aside { font-size: .75em; font-weight: 500; color: #9ca3af; margin-left: 4px; }
