/* Do.Qix Global Stylesheet */
/* All pages link to this file — single source of truth */

/* ============================================
   FONTS — self-hosted Inter (latin subset, variable)
   ============================================ */
/* Inter variable font — single file covers weights 100–900 (we use 400, 500, 600, 700, 900). */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/inter-var.woff2') format('woff2-variations'),
         url('fonts/inter-var.woff2') format('woff2');
}

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

body {
    font-family: 'Inter', sans-serif !important;
    background-color: #0C1830 !important;
    color: #e4e1e9 !important;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section[id] {
    scroll-margin-top: 6rem;
}

::selection {
    background-color: #00e5a0;
    color: #0C1830;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* H1 — Hero headlines only */
h1 {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    line-height: 0.9 !important;
    color: #e4e1e9 !important;
}

/* H2 — Section headings */
h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    color: #e4e1e9 !important;
}

/* H3 — Card titles, subheadings */
h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
}

/* H4 — Minor headings */
h4 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
}

/* Responsive scaling */
@media (min-width: 480px) {
    h1 { font-size: 4rem !important; }
    h2 { font-size: 3rem !important; }
}
@media (min-width: 768px) {
    h1 { font-size: 6rem !important; }
    h2 { font-size: 3.75rem !important; }
    h3 { font-size: 2rem !important; }
    h4 { font-size: 1.25rem !important; }
}

/* Paragraphs */
p {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #c0c0d0;
}

/* Lead / intro paragraphs */
.lead, .text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Labels / eyebrow text — always in a pill */
.label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.2);
    color: #00e5a0;
    width: fit-content;
}

@media (max-width: 640px) {
    .label { margin: 0 auto; }
    #hero .label { margin-top: 1.5rem; }
    main section { text-align: center; }
    main section .flex { justify-content: center; }
    main section ul .flex { justify-content: flex-start; text-align: left; }
    main section p { margin-left: auto; margin-right: auto; }
    section[class*="py-20"], section[class*="pb-20"] { padding-top: 2rem; padding-bottom: 2rem; }
    section[class*="py-24"] { padding-top: 3rem; padding-bottom: 3rem; }
}

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
    height: 2.5rem;
}

@media (min-width: 768px) {
    .scroll-indicator {
        margin-top: 0.5rem;
        height: 3rem;
    }
}

.scroll-indicator-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.scroll-indicator-inner.hidden { opacity: 0; pointer-events: none; }

.scroll-arrow {
    font-size: 2rem;
    color: #00e5a0;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00e5a0;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 1.25rem;
    z-index: 50;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: rgba(0, 229, 160, 0.15);
    border: 1px solid rgba(0, 229, 160, 0.3);
    color: #00e5a0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (hover: hover) {
    .back-to-top:hover {
        background: #00e5a0;
        color: #0C1830;
    }
}

.back-to-top:active {
    background: #00e5a0;
    color: #0C1830;
}

/* Orange variant */
.label.orange {
    background: rgba(255, 128, 0, 0.1);
    border-color: rgba(255, 128, 0, 0.2);
    color: #ff8000;
}

/* Caption — italic closing remarks, section quotes */
.caption {
    font-style: italic;
    font-size: 0.875rem !important;
    color: #9a9aaa;
    margin-top: 2rem;
    text-align: center;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color 150ms ease;
}

a:hover {
    color: #00e5a0;
}

/* Buttons used as links should not inherit link hover color */
a.btn:hover {
    color: inherit;
}

a.btn-primary:hover {
    color: #0C1830;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* ============================================
   COLORS (CSS Custom Properties)
   ============================================ */
:root {
    --color-bg: #0C1830;
    --color-surface: #141419;
    --color-surface-hover: #1a1a22;
    --color-primary: #00e5a0;
    --color-secondary: #ff8000;
    --color-tertiary: #e09c58;
    --color-text-primary: #f0f0f5;
    --color-text-secondary: #c0c0d0;
    --color-text-on-accent: #0C1830;
    --color-border: #1e1e2a;
    --color-danger: #ff6b6b;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(6, 12, 28, 0.85) 0%, rgba(6, 12, 28, 0.85) 98%, transparent 100%);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
    height: 5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 3rem;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #00e5a0;
}

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #c0c0d0;
    display: none;
}

@media (min-width: 768px) {
    .logo-tagline { display: inline; }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #c0c0d0;
    transition: color 150ms ease;
}

.nav-link:hover {
    color: #00e5a0;
}

.nav-link.active {
    color: #00e5a0;
    border-bottom: 2px solid #00e5a0;
    padding-bottom: 4px;
}

/* Hamburger (mobile only) */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

.nav-hamburger span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: #e4e1e9;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .nav-hamburger { display: none; }
}

/* Hide CTA on mobile (shown in mobile menu instead) */
@media (max-width: 767px) {
    .nav-cta { display: none !important; }
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #060C1C;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (min-width: 768px) {
    .mobile-menu { display: none !important; }
}

.mobile-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #c0c0d0;
    text-decoration: none;
    transition: color 150ms ease;
}

.mobile-link:hover,
.mobile-link.active {
    color: #00e5a0;
}

/* ============================================
   BUTTONS
   ============================================ */

/* Button base */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
}

/* Size variants */
.btn.sm { padding: 0.75rem 2rem; font-size: 0.875rem; }
.btn.md { padding: 1.25rem 2.5rem; font-size: 1.125rem; }
.btn.lg { padding: 1.5rem 3rem; font-size: 1.25rem; }
.btn.full { width: 100%; padding: 1rem 2rem; }

/* Primary CTA */
.btn-primary {
    background-color: #00e5a0;
    color: #0C1830;
    transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 10px 25px rgba(0, 229, 160, 0.2);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Primary with glow pulse */
.btn-primary.glow {
    animation: pulse-teal 3s infinite;
    box-shadow: 0 10px 30px rgba(0, 229, 160, 0.3);
}

/* Ghost / outline button */
.btn-ghost {
    background: transparent;
    color: #e4e1e9;
    border: 1px solid #3b4a41;
    transition: all 150ms ease;
}

.btn-ghost:hover {
    background-color: #14203C;
    border-color: #00e5a0;
    color: #00e5a0;
}

/* ============================================
   CARDS
   ============================================ */
:root {
    --card-bg: #14203C;
}

.card {
    background: var(--card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================
   BANNERS
   ============================================ */
.banner {
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 700;
}

.banner.orange {
    background: rgba(255, 128, 0, 0.15);
    border: 1px solid rgba(255, 128, 0, 0.3);
    color: #ff8000;
}

.banner.teal {
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.2);
    color: #00e5a0;
}

/* ============================================
   BULLET LIST
   ============================================ */
.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .bullet-list { align-items: center; }
}

.bullet-list li {
    display: block;
    padding-left: 1.5rem;
    position: relative;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #00e5a0;
    box-shadow: 0 0 0 2px #0C1830, 0 0 0 3px #00e5a0;
}

/* ============================================
   CALLOUT
   ============================================ */
.callout {
    padding: 2rem;
    border-radius: 1rem;
    max-width: 56rem;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .callout {
        flex-direction: row;
        align-items: center;
    }
}
.callout .callout-icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 1.5rem;
}
.callout.orange {
    background: rgba(255, 128, 0, 0.1);
    border: 1px solid rgba(255, 128, 0, 0.15);
}
.callout.orange .callout-icon {
    background: rgba(255, 128, 0, 0.2);
    color: #ff8000;
}
.callout.orange h4 {
    color: #ff8000 !important;
}
.callout.teal {
    background: rgba(0, 229, 160, 0.05);
    border: 1px solid rgba(0, 229, 160, 0.1);
}
.callout.teal .callout-icon {
    background: rgba(0, 229, 160, 0.2);
    color: #00e5a0;
}
.callout.teal h4 {
    color: #00e5a0 !important;
}

/* ============================================
   STAT NUMBERS
   ============================================ */
.stat-number {
    font-family: 'Inter', sans-serif !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em;
    line-height: 1 !important;
}

.stat-number.teal { color: #00e5a0 !important; }
.stat-number.orange { color: #ff8000 !important; }

@media (min-width: 768px) {
    .stat-number { font-size: 3.75rem !important; }
}

/* Extra large stat (e.g. the 30%) */
.stat-number.xl {
    font-size: 7rem !important;
}

@media (min-width: 768px) {
    .stat-number.xl { font-size: 10rem !important; }
}

/* ============================================
   TIMELINE / STEPS
   ============================================ */
.timeline {
    position: relative;
    padding-left: 4rem;
}

/* Vertical connecting line — centred with circles */
.timeline-line {
    position: absolute;
    left: calc(2rem - 1.5px);
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: linear-gradient(to bottom, #00e5a0, rgba(0, 229, 160, 0.4), transparent);
}

/* Step circle — centred on line */
.timeline-circle {
    position: absolute;
    left: calc(-4rem + 2rem - 1.25rem);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.125rem;
    transition: transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-circle:hover {
    transform: scale(1.1);
}

/* First/active step — solid teal */
.timeline-circle.active {
    background-color: #00e5a0;
    color: #0C1830;
    box-shadow: 0 0 20px rgba(0, 229, 160, 0.3);
}

/* Subsequent steps — outline */
.timeline-circle.outline {
    background-color: #0C1830;
    border: 1px solid rgba(0, 229, 160, 0.3);
    color: #00e5a0;
}

@media (min-width: 768px) {
    .timeline {
        padding-left: 8rem;
    }
    .timeline-line {
        left: 55px;
    }
    .timeline-circle {
        left: -100px;
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-card {
    transition: border-color 0.3s, box-shadow 0.3s;
}

.pricing-popular {
    border: 2px solid #00e5a0;
    box-shadow: 0 0 20px rgba(0, 229, 160, 0.1);
}

.pricing-popular .btn-ghost {
    background: #00e5a0;
    color: #0C1830;
    border-color: #00e5a0;
    font-weight: 800;
}

/* Product status badges */
.product-badge {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
    z-index: 5;
}
.product-badge.live {
    background: #00e5a0;
    color: #0C1830;
}
.product-badge.in-progress {
    background: #ff8000;
    color: #0C1830;
}

.pricing-badge {
    display: none;
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    background: #00e5a0;
    color: #0C1830;
    font-size: 0.6875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.pricing-popular .pricing-badge {
    display: block;
}

/* ============================================
   ROI CALCULATOR
   ============================================ */
.roi-calc {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}
.roi-calc .section-header { text-align: center; margin-bottom: 48px; }
.roi-calc .intro {
    color: #c0c0d0;
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Grid */
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Input panel */
.roi-inputs {
    background: var(--card-bg, #14203C);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 32px;
}
.roi-inputs .panel-label {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9a9aaa;
    margin-bottom: 24px;
}

/* Slider groups */
.roi-calc .slider-group { margin-bottom: 24px; }
.roi-calc .slider-group:last-of-type { margin-bottom: 0; }
.roi-calc .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}
.roi-calc .slider-label {
    font-size: 14px;
    font-weight: 600;
    color: #f0f0f5;
    position: relative;
}

/* Info icon */
.roi-calc .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: rgba(0, 229, 160, 0.18);
    color: #00e5a0;
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    cursor: pointer;
    margin-left: 6px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 229, 160, 0.4);
    transition: background .15s, border-color .15s, transform .1s;
    vertical-align: middle;
    position: relative;
    top: -1px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    box-shadow: 0 0 6px rgba(0, 229, 160, 0.15);
}
.roi-calc .info-icon:hover {
    background: rgba(0, 229, 160, 0.3);
    border-color: rgba(0, 229, 160, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 229, 160, 0.25);
}
.roi-calc .slider-value {
    font-weight: 700;
    font-size: 16px;
    color: #00e5a0;
    min-width: 60px;
    text-align: right;
}
.roi-calc .slider-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9a9aaa;
    margin-top: 4px;
}
.roi-calc .total-hours {
    font-size: 12px;
    font-weight: 600;
    color: #9a9aaa;
    margin-top: 6px;
    font-style: italic;
}

/* Tooltips */
.roi-calc .slider-label .tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background: #1E3050;
    color: #f0f0f5;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: normal;
    width: 220px;
    z-index: 10;
    pointer-events: none;
    transition: opacity .15s, visibility .15s;
    border: 1px solid rgba(255,255,255,0.06);
}
.roi-calc .slider-label .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 16px;
    border: 6px solid transparent;
    border-top-color: #1E3050;
}
.roi-calc .slider-label .tooltip.tooltip-visible { visibility: visible; opacity: 1; }

/* Output card info tooltips */
.roi-calc .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.roi-calc .card-tooltip-wrap {
    position: relative;
}
.roi-calc .card-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 8px);
    right: -8px;
    background: #1E3050;
    color: #f0f0f5;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 6px;
    white-space: normal;
    width: 230px;
    z-index: 10;
    pointer-events: none;
    transition: opacity .15s, visibility .15s;
    border: 1px solid rgba(255,255,255,0.06);
}
.roi-calc .card-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 12px;
    border: 6px solid transparent;
    border-top-color: #1E3050;
}
.roi-calc .card-tooltip.tooltip-visible { visibility: visible; opacity: 1; }
.roi-calc .card-tooltip .tip-formula {
    display: block;
    margin-top: 6px;
    padding: 4px 8px;
    background: rgba(0, 229, 160, 0.08);
    border-radius: 4px;
    font-family: monospace;
    font-size: 11px;
    color: #00e5a0;
}
.roi-calc .card-tooltip .tip-affects {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #9a9aaa;
    font-style: italic;
}

/* Range slider (dark theme) */
.roi-calc input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.08);
    outline: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
}
.roi-calc input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00e5a0;
    border: 3px solid var(--card-bg, #14203C);
    box-shadow: 0 0 0 2px rgba(0,229,160,0.3);
    cursor: grab;
}
.roi-calc input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00e5a0;
    border: 3px solid var(--card-bg, #14203C);
    box-shadow: 0 0 0 2px rgba(0,229,160,0.3);
    cursor: grab;
}
.roi-calc input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; }
.roi-calc input[type="range"]:active::-moz-range-thumb { cursor: grabbing; }
.roi-calc input[type="range"]:focus { outline: none; box-shadow: none; }

/* Output panel */
.roi-outputs { display: flex; flex-direction: column; gap: 16px; }

/* Hero result */
.roi-calc .hero-result {
    background: var(--card-bg, #14203C);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: visible;
}
.roi-calc .hero-result::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(0,229,160,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.roi-calc .hero-amount {
    font-weight: 900;
    font-size: 48px;
    line-height: 1.1;
    color: #00e5a0;
    position: relative;
}
.roi-calc .hero-label {
    font-size: 16px;
    color: #9a9aaa;
    margin-top: 4px;
    position: relative;
}

/* Result cards */
.roi-calc .result-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.roi-calc .result-card {
    background: var(--card-bg, #14203C);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px;
}
.roi-calc .result-card .card-value {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #f0f0f5;
}
.roi-calc .result-card.hours .card-value { color: #00e5a0; }
.roi-calc .result-card .card-label {
    font-size: 13px;
    color: #9a9aaa;
    margin-top: 2px;
}

/* Tier suggestion */
.roi-calc .tier-suggestion { text-align: center; grid-column: 1 / -1; }
.roi-calc .tier-text {
    font-size: 14px;
    color: #c0c0d0;
    line-height: 1.6;
}
.roi-calc .roi-multiplier { font-weight: 700; color: #00e5a0; }
.roi-calc .efficiency-note {
    font-size: 12px;
    color: #9a9aaa;
    margin-top: 8px;
    font-style: italic;
    display: none;
}

/* Benchmark nudge */
.roi-calc .benchmark {
    font-size: 14px;
    font-style: italic;
    color: #9a9aaa;
    text-align: center;
    padding: 16px 0;
    line-height: 1.6;
}

/* CTA */
.roi-calc .roi-cta {
    display: block;
    width: 100%;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    color: #0C1830;
    background: #00e5a0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: opacity .2s, box-shadow .2s;
    font-family: 'Inter', sans-serif;
}
.roi-calc .roi-cta:hover { opacity: 0.9; box-shadow: 0 0 24px rgba(0,229,160,0.3); }
.roi-calc .roi-cta .cta-sub {
    display: block;
    font-weight: 400;
    font-size: 13px;
    opacity: 0.7;
    margin-top: 2px;
    color: #0C1830;
}

/* Share button */
.roi-calc .share-btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #00e5a0;
    background: transparent;
    border: 1px solid #00e5a0;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.roi-calc .share-btn:hover { background: #00e5a0; color: #0C1830; }
.roi-calc .share-btn.copied { background: #00e5a0; border-color: #00e5a0; color: #0C1830; pointer-events: none; }

/* Footnote */
.roi-calc .roi-footnote {
    font-size: 11px;
    color: #9a9aaa;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

/* ROI Calculator responsive */
@media (max-width: 768px) {
    .roi-calc { padding: 0 16px; }
    .roi-grid { grid-template-columns: 1fr; gap: 24px; }
    .roi-inputs { padding: 24px; }
    .roi-calc .hero-amount { font-size: 40px; }
    .roi-calc .result-card .card-value { font-size: 20px; }
    .roi-calc input[type="range"]::-webkit-slider-thumb { width: 28px; height: 28px; }
    .roi-calc input[type="range"]::-moz-range-thumb { width: 28px; height: 28px; }
    .roi-calc .slider-header { flex-wrap: wrap; gap: 4px; }
}
@media (max-width: 480px) {
    .roi-calc { padding: 0 12px; }
    .roi-inputs { padding: 20px; }
    .roi-calc .hero-result { padding: 24px 16px; }
    .roi-calc .hero-amount { font-size: 34px; word-break: break-word; }
    .roi-calc .result-cards { grid-template-columns: 1fr; gap: 10px; }
    .roi-calc .result-card { padding: 16px; }
    .roi-calc .result-card .card-value { font-size: 22px; }
    .roi-calc .slider-label { font-size: 13px; }
    .roi-calc .slider-value { font-size: 14px; min-width: 50px; }
    .roi-calc input[type="range"]::-webkit-slider-thumb { width: 32px; height: 32px; }
    .roi-calc input[type="range"]::-moz-range-thumb { width: 32px; height: 32px; }
    .roi-calc .slider-label .tooltip { width: 180px; left: -8px; }
    .roi-calc .card-tooltip { width: 200px; right: -4px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.visible {
    opacity: 1;
    transform: none;
}
.scroll-reveal.stagger-1 { transition-delay: 80ms; }
.scroll-reveal.stagger-2 { transition-delay: 160ms; }
.scroll-reveal.stagger-3 { transition-delay: 240ms; }
.scroll-reveal.stagger-4 { transition-delay: 320ms; }
.scroll-reveal.stagger-5 { transition-delay: 400ms; }

/* Spring Transition (hover interactions) */
.spring-transition {
    transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Teal Glow Pulse (CTA buttons) */
@keyframes pulse-teal {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(0, 229, 160, 0.2); }
}
.animate-pulse-teal {
    animation: pulse-teal 3s infinite;
}

/* Animated rocket icon */
@keyframes rocket-bounce {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-4px) rotate(-45deg); }
}
.animated-rocket {
    display: inline-block;
    animation: rocket-bounce 1.5s ease-in-out infinite;
}

/* ============================================
   HERO
   ============================================ */
.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 160, 0.10) 0%, transparent 70%);
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #0C1830 0%, transparent 30%, transparent 50%, #0C1830 100%),
        linear-gradient(to right, #0C1830, transparent 20%, transparent 80%, #0C1830);
}

/* ============================================
   EXIT-INTENT POPUP
   ============================================ */
#exit-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#exit-popup-overlay.show { display: block; opacity: 1; }

.exit-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 48, 0.85);
    backdrop-filter: blur(4px);
}

.exit-popup-card {
    position: absolute;
    z-index: 1;
    max-width: 36rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 2rem));
    width: calc(100% - 2rem);
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    background: var(--color-surface-container, #14203C);
    border: 1px solid rgba(59, 74, 65, 0.2);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 40px 80px -20px rgba(0, 229, 160, 0.08);
    transition: transform 0.3s ease;
}
#exit-popup-overlay.show .exit-popup-card {
    transform: translate(-50%, -50%);
}

@media (max-width: 480px) {
    .exit-popup-heading { font-size: 1.25rem; }
    .exit-popup-card { padding: 2.5rem 1.5rem 2rem; }
}

.exit-popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #bacbbf;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s;
}
.exit-popup-close:hover { color: #00e5a0; }

.exit-popup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: #1A2A48;
    border: 1px solid rgba(59, 74, 65, 0.15);
    color: #00e5a0;
    margin-bottom: 1rem;
}

.exit-popup-heading {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: #e4e1e9;
}
.exit-popup-heading .text-primary,
.exit-popup-heading span[style*="color"] { color: #00e5a0; }

.exit-popup-body {
    font-size: 0.875rem;
    color: #bacbbf;
    margin-bottom: 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.exit-popup-cta {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 1rem 2rem !important;
    font-size: 0.875rem !important;
    min-height: 44px;
}

.exit-popup-dismiss {
    display: block;
    margin: 0 auto;
    background: none;
    border: none;
    color: #84958a;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    min-height: 44px;
    margin-top: 0.25rem;
    margin-bottom: 0;
    transition: color 0.2s;
}
.exit-popup-dismiss:hover { color: #e4e1e9; }

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 0 1rem 1rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-inner {
    max-width: 48rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: #14203C;
    border: 1px solid rgba(59, 74, 65, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.cookie-banner-content {
    margin-bottom: 1rem;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.cookie-banner-icon {
    color: #ff8000;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.cookie-banner-heading {
    color: #e4e1e9;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 0.125rem;
    line-height: 1.4;
}

.cookie-banner-sub {
    color: #84958a;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-banner-toggle {
    background: none;
    border: none;
    color: #00e5a0;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0 0;
    transition: color 0.2s;
}
.cookie-banner-toggle:hover { color: #47ffb8; }
.cookie-banner-chevron {
    font-size: 1rem;
    transition: transform 0.2s;
}

.cookie-banner-details {
    display: none;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(59, 74, 65, 0.2);
}
.cookie-banner-details.open { display: block; }

.cookie-banner-details table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75rem;
}
.cookie-banner-details th {
    text-align: left;
    padding: 0.5rem;
    color: #84958a;
    font-weight: 600;
    border-bottom: 1px solid rgba(59, 74, 65, 0.2);
    text-transform: uppercase;
    font-size: 0.625rem;
    letter-spacing: 0.05em;
}
.cookie-banner-details td {
    padding: 0.5rem;
    color: #bacbbf;
    border-bottom: 1px solid rgba(59, 74, 65, 0.1);
}

.cookie-cat {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.cookie-cat.essential {
    background: rgba(0, 229, 160, 0.15);
    color: #00e5a0;
}
.cookie-cat.functional {
    background: rgba(255, 128, 0, 0.15);
    color: #ff8000;
}
.cookie-cat.analytics {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}

.cookie-banner-note {
    color: #84958a;
    font-size: 0.6875rem;
    margin: 0.5rem 0 0;
    font-style: italic;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.cookie-banner-btn {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, background 0.2s;
}
.cookie-banner-btn:hover { transform: scale(1.03); }

.cookie-banner-btn.allow {
    background: #00e5a0;
    color: #0C1830;
}
.cookie-banner-btn.allow:hover { background: #47ffb8; }

.cookie-banner-btn.essentials {
    background: #1A2A48;
    color: #e4e1e9;
    border: 1px solid rgba(59, 74, 65, 0.3);
}
.cookie-banner-btn.essentials:hover { background: #223656; }

.cookie-banner-btn.decline {
    background: transparent;
    color: #84958a;
}
.cookie-banner-btn.decline:hover { color: #e4e1e9; }

@media (max-width: 640px) {
    .cookie-banner-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    .cookie-banner-btn { width: 100%; }
    .cookie-banner-details th:nth-child(3),
    .cookie-banner-details td:nth-child(3) { display: none; }
}
@media (max-width: 480px) {
    .cookie-banner-details th:nth-child(2),
    .cookie-banner-details td:nth-child(2) { display: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #060C1C;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
        text-align: left;
        justify-items: start;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-brand { align-items: flex-start; }
}

.footer-logo-img {
    height: auto;
    width: 10rem;
    max-width: 100%;
}

.footer-tagline {
    color: #c0c0d0 !important;
    font-size: 0.875rem !important;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-contact { align-items: flex-start; }
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c0c0d0;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item .hi {
    width: 1.125rem;
    height: 1.125rem;
    color: #00e5a0;
    flex-shrink: 0;
}

a.footer-contact-item:hover {
    color: #00e5a0;
}

.footer-contact-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.footer-social-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c0c0d0;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social-item:hover {
    color: #00e5a0;
}

.footer-social-item svg {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.footer-copyright {
    color: #a0a6b3 !important;
    font-size: 0.75rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-build {
    color: #8a92a3;
    margin-left: 0.5rem;
}

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

.footer-col-heading, .footer-col h4 {
    color: #ffffff !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}

.footer-col a {
    color: #c0c0d0;
    font-size: 0.875rem;
    transition: color 150ms ease;
}

.footer-col a:hover {
    color: #00e5a0;
}

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.testimonial-carousel {
    position: relative;
}

.testimonial-track-wrapper {
    overflow-x: hidden;
    overflow-y: visible;
    padding: 1rem 0;
}

.testimonial-track {
    display: flex;
    transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .testimonial-slide { flex: 0 0 100%; max-width: 100%; }
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: var(--card-bg, #14203C);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00e5a0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms ease;
}

.testimonial-arrow:hover {
    background: #00e5a0;
    color: #0C1830;
    border-color: #00e5a0;
}

.testimonial-prev { left: -3rem; }
.testimonial-next { right: -3rem; }

@media (max-width: 1280px) {
    .testimonial-prev { left: 0; }
    .testimonial-next { right: 0; }
}
@media (max-width: 640px) {
    .testimonial-arrow { display: none; }
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 300ms ease;
}

.testimonial-dot.active {
    background: #00e5a0;
    width: 1.5rem;
}

/* ============================================
   APP CAROUSEL
   ============================================ */
@keyframes app-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.app-carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: app-scroll 60s linear infinite;
    width: max-content;
}

.app-carousel-track:hover {
    animation-play-state: paused;
}

.app-carousel-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: var(--card-bg, #14203C);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100px;
    opacity: 0.6;
    transition: opacity 300ms ease;
}

.app-carousel-item:hover {
    opacity: 1;
}

/* ============================================
   FORM FIELDS
   ============================================ */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    display: block;
    width: auto;
    padding: 0 0.25rem;
    border: none;
    border-radius: 0;
    background: none;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: var(--color-form-input, #1E3050);
    border: 1px solid rgba(59, 74, 65, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #e4e1e9;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #00e5a0;
    box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #bacbbf;
    opacity: 0.6;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23bacbbf' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-field textarea {
    resize: none;
}

.form-field .field-error {
    color: var(--color-danger, #ff6b6b);
    font-size: 0.75rem;
    display: none;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: var(--color-danger, #ff6b6b);
}

.form-field.has-error .field-error {
    display: block;
}

:root {
    --color-form-input: #1E3050;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
    background: var(--card-bg, #14203C);
    border-radius: 1rem;
    overflow: hidden;
    transition: background 0.3s;
}

.faq-item:hover {
    background: #1A2A48;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #e4e1e9;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .faq-chevron {
    transition: transform 0.3s;
    color: #00e5a0;
}

.faq-item[open] summary .faq-chevron {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #c0c0d0;
    line-height: 1.7;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badge {
    background: #101C36;
    border: 1px solid rgba(59, 74, 65, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trust-badge .trust-stat {
    font-size: 1.875rem;
    font-weight: 900;
    color: #00e5a0;
    margin-bottom: 0.25rem;
}

.trust-badge .trust-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #bacbbf;
    line-height: 1.4;
}

.trust-badge .trust-icon {
    color: #00e5a0;
    margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT CHANNELS
   ============================================ */
.contact-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-channel .channel-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #1E3050;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00e5a0;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-channel:hover .channel-icon {
    transform: scale(1.1);
}

.contact-channel .channel-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bacbbf;
}

.contact-channel .channel-value {
    font-weight: 500;
    color: #e4e1e9;
    transition: color 0.2s;
}

a.contact-channel:hover .channel-value {
    color: #00e5a0;
}

/* ============================================
   UTILITIES
   ============================================ */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Heroicons base */
.hi {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .animate-pulse-teal {
        animation: none;
    }
    .spring-transition {
        transition: none;
    }
}

/* ============================================
   BUILD REQUEST POPUP — mirrors exit-popup pattern
   ============================================ */
#build-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#build-popup-overlay.show { display: block; opacity: 1; }

.build-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 48, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.build-popup-card {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 2rem));
    width: calc(100% - 2rem);
    max-width: 36rem;
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    background: var(--color-surface-container, #14203C);
    border: 1px solid rgba(59, 74, 65, 0.2);
    border-radius: 1rem;
    padding: 2.5rem 2rem 1.5rem;
    box-shadow: 0 40px 80px -20px rgba(0, 229, 160, 0.08);
    transition: transform 0.3s ease;
}
#build-popup-overlay.show .build-popup-card {
    transform: translate(-50%, -50%);
}

@media (max-width: 480px) {
    .build-popup-card { padding: 2rem 1.25rem 1.25rem; }
}

.build-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #bacbbf;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s;
    z-index: 2;
}
.build-popup-close:hover { color: #00e5a0; }

.build-popup-progress {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
    margin-top: 0.25rem;
}
.build-popup-progress .seg {
    flex: 1;
    height: 3px;
    background: rgba(59, 74, 65, 0.5);
    border-radius: 2px;
    transition: background 0.2s;
}
.build-popup-progress .seg.done { background: #00e5a0; }

.build-popup-step-counter {
    font-size: 0.7rem;
    color: #84958a;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.build-popup-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00e5a0;
    background: rgba(0, 229, 160, 0.08);
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 229, 160, 0.2);
    margin-bottom: 0.9rem;
}

.build-popup-title {
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    color: #e4e1e9 !important;
    margin-bottom: 0.6rem !important;
}
.build-popup-title .accent { color: #00e5a0; }

.build-popup-body-text {
    font-size: 0.875rem;
    color: #bacbbf;
    line-height: 1.55;
    margin-bottom: 1rem;
    max-width: 30rem;
}
.build-popup-helper {
    font-size: 0.78rem;
    color: #84958a;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.build-popup-preview-card {
    background: #0C1830;
    border: 1px dashed rgba(0, 229, 160, 0.4);
    border-radius: 8px;
    padding: 0.9rem;
    margin-bottom: 1rem;
}
.build-popup-preview-card .lbl {
    font-size: 0.6rem; color: #00e5a0; letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.build-popup-preview-card .name {
    font-size: 0.875rem; color: #e4e1e9; font-weight: 600; margin-bottom: 0.3rem;
}
.build-popup-preview-card .price {
    font-size: 1.3rem; color: #00e5a0; font-weight: 700; margin-bottom: 0.3rem;
}
.build-popup-preview-card .foot {
    font-size: 0.7rem; color: #84958a;
}

.build-popup-stat-strip {
    display: flex;
    justify-content: space-around;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(59, 74, 65, 0.3);
    border-bottom: 1px solid rgba(59, 74, 65, 0.3);
    margin-bottom: 1rem;
}
.build-popup-stat-strip .stat { text-align: center; }
.build-popup-stat-strip .num {
    font-size: 1.1rem; color: #00e5a0; font-weight: 700; line-height: 1; margin-bottom: 0.2rem;
}
.build-popup-stat-strip .lbl {
    font-size: 0.65rem; color: #84958a; letter-spacing: 0.05em;
}

.build-popup-launch-card {
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.12), rgba(0, 229, 160, 0.04));
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.build-popup-launch-card .top {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; gap: 0.8rem;
}
.build-popup-launch-card .lbl {
    font-size: 0.6rem; color: #00e5a0; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.2rem;
}
.build-popup-launch-card .txt {
    font-size: 0.85rem; color: #e4e1e9; font-weight: 600; line-height: 1.3;
}
.build-popup-launch-card .pill {
    background: #00e5a0; color: #0C1830;
    padding: 0.3rem 0.65rem; border-radius: 100px;
    font-size: 0.7rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.build-popup-launch-card .meter {
    display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
    padding-top: 0.6rem; border-top: 1px solid rgba(0, 229, 160, 0.15);
}
.build-popup-launch-card .meter-label .small {
    font-size: 0.65rem; color: #bacbbf; margin-bottom: 0.1rem; letter-spacing: 0.04em;
}
.build-popup-launch-card .meter-label .big {
    font-size: 0.95rem; color: #e4e1e9; font-weight: 700;
}
.build-popup-launch-card .meter-label .big .accent { color: #00e5a0; }
.build-popup-launch-card .squares { display: flex; gap: 0.25rem; flex-wrap: nowrap; }
.build-popup-launch-card .square {
    width: 18px; height: 18px; border-radius: 4px;
    background: rgba(59, 74, 65, 0.5);
    border: 1px solid rgba(59, 74, 65, 0.3);
    transition: background 0.3s;
}
.build-popup-launch-card .square.taken {
    background: rgba(0, 229, 160, 0.15);
    border-color: rgba(0, 229, 160, 0.3);
}
.build-popup-launch-card .square.available {
    background: #00e5a0;
    border-color: #00e5a0;
    box-shadow: 0 0 8px rgba(0, 229, 160, 0.4);
}
@media (max-width: 480px) {
    .build-popup-launch-card .square { width: 14px; height: 14px; }
    .build-popup-launch-card .squares { gap: 0.18rem; }
}

.build-popup-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.build-popup-option {
    background: #1A2A48;
    border: 1px solid rgba(59, 74, 65, 0.4);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    text-align: left;
    color: #e4e1e9;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-family: inherit;
    width: 100%;
}
.build-popup-option:hover { border-color: rgba(0, 229, 160, 0.4); }
.build-popup-option[aria-pressed="true"] {
    background: rgba(0, 229, 160, 0.08);
    border: 2px solid #00e5a0;
    padding: calc(0.85rem - 1px) calc(1rem - 1px);
}
.build-popup-option .opt-title {
    font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; color: #e4e1e9;
}
.build-popup-option[aria-pressed="true"] .opt-title { color: #00e5a0; }
.build-popup-option .opt-desc {
    font-size: 0.75rem; color: #84958a; line-height: 1.45;
}
.build-popup-option[aria-pressed="true"] .opt-desc { color: #bacbbf; }

.build-popup-integ-text {
    margin-top: -0.3rem;
    margin-bottom: 1rem;
    display: none;
}
.build-popup-integ-text.show { display: block; }
.build-popup-integ-text input {
    width: 100%;
    background: #0C1830;
    border: 1px solid rgba(59, 74, 65, 0.5);
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    color: #e4e1e9;
    font-size: 0.8rem;
    font-family: inherit;
}
.build-popup-integ-text input:focus {
    outline: none;
    border-color: #00e5a0;
    box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.15);
}

.build-popup-est-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}
@media (min-width: 640px) {
    .build-popup-est-grid { grid-template-columns: 1fr 1fr; }
}
.build-popup-est-card {
    background: #1A2A48;
    border: 1px solid rgba(59, 74, 65, 0.4);
    border-radius: 10px;
    padding: 1rem;
    position: relative;
}
.build-popup-est-card.recommended {
    background: rgba(0, 229, 160, 0.05);
    border: 2px solid #00e5a0;
    padding: calc(1rem - 1px);
}
.build-popup-est-card .badge {
    position: absolute;
    top: -10px;
    right: 0.8rem;
    background: #00e5a0;
    color: #0C1830;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    letter-spacing: 0.08em;
}
.build-popup-est-card .icon-name {
    display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem;
}
.build-popup-est-card .icon-name .name {
    font-weight: 700; font-size: 0.9rem; color: #e4e1e9;
}
.build-popup-est-card .price {
    font-size: 1.3rem; font-weight: 800; color: #00e5a0; margin-bottom: 0.2rem; letter-spacing: -0.01em;
}
.build-popup-est-card .price .strike {
    color: #84958a; text-decoration: line-through; font-size: 0.85rem; font-weight: 500; margin-right: 0.4rem;
}
.build-popup-est-card .meta {
    font-size: 0.7rem; color: #bacbbf; margin-bottom: 0.5rem;
}
.build-popup-est-card .desc {
    font-size: 0.75rem; color: #bacbbf; line-height: 1.5;
}
.build-popup-est-disclaimer {
    font-size: 0.7rem; color: #84958a; text-align: center; margin: 0.6rem 0 1rem; font-style: italic;
}

.build-popup-form-row {
    display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.8rem;
}
.build-popup-form-row label {
    font-size: 0.75rem; font-weight: 500; color: #bacbbf;
}
.build-popup-form-row label .req { color: #ff6b6b; }
.build-popup-form-row input,
.build-popup-form-row textarea {
    background: #0C1830;
    border: 1px solid rgba(59, 74, 65, 0.5);
    border-radius: 6px;
    padding: 0.7rem 0.9rem;
    color: #e4e1e9;
    font-size: 0.85rem;
    font-family: inherit;
}
.build-popup-form-row input:focus,
.build-popup-form-row textarea:focus {
    outline: none;
    border-color: #00e5a0;
    box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.15);
}
.build-popup-form-row.has-error input,
.build-popup-form-row.has-error textarea {
    border-color: #ff6b6b;
}
.build-popup-form-row .field-error {
    color: #ff6b6b;
    font-size: 0.7rem;
    display: none;
}
.build-popup-form-row.has-error .field-error { display: block; }

.build-popup-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.build-popup-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 74, 65, 0.2);
}
.build-popup-actions .btn-back {
    background: transparent;
    color: #bacbbf;
    border: 1px solid rgba(59, 74, 65, 0.5);
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: inherit;
    flex: 0 0 auto;
}
.build-popup-actions .btn-back:hover { color: #e4e1e9; border-color: rgba(186, 203, 191, 0.3); }
.build-popup-actions .btn-next {
    flex: 1;
}

.build-popup-footnote {
    font-size: 0.65rem;
    color: #84958a;
    text-align: center;
    margin-top: 0.6rem;
}

.build-popup-body {
    transition: opacity 0.15s ease;
}
.build-popup-body.fading { opacity: 0; }

body.build-popup-open { overflow: hidden; }

.build-popup-est-disclaimer p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.7rem;
    color: #84958a;
    font-style: italic;
}
.build-popup-est-disclaimer p:last-child { margin-bottom: 0; }
.build-popup-est-disclaimer a {
    color: #00e5a0;
    text-decoration: underline;
    font-style: normal;
}

.build-popup-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0.5rem 0;
    padding: 0.7rem 0.9rem;
    background: rgba(0, 229, 160, 0.04);
    border: 1px solid rgba(59, 74, 65, 0.4);
    border-radius: 8px;
    transition: border-color 0.15s, background 0.15s;
}
.build-popup-consent input[type="checkbox"] {
    margin-top: 0.15rem;
    width: 18px;
    height: 18px;
    accent-color: #00e5a0;
    flex-shrink: 0;
    cursor: pointer;
}
.build-popup-consent label {
    font-size: 0.78rem;
    color: #bacbbf;
    line-height: 1.5;
    cursor: pointer;
}
.build-popup-consent label a {
    color: #00e5a0;
    text-decoration: underline;
}
.build-popup-consent.has-error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}
.build-popup-consent-error {
    display: none;
    color: #ff6b6b;
    font-size: 0.7rem;
    margin: -0.2rem 0 0.5rem 0.4rem;
}
.build-popup-consent.has-error + .build-popup-consent-error { display: block; }

.build-popup-form-row label .opt-label {
    color: #84958a;
    font-weight: 400;
}

.build-popup-start-btn { width: 100%; }

.build-popup-fallback { color: #bacbbf; }
