/* ============================================
   VOXS — Marketing Site
   Light base, dark hero, gold accents
   ============================================ */

/* Light site base */
body.site-light {
    background: #FFFFFF;
    color: var(--primary);
}

/* ── Navigation ────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(15, 27, 45, 0.08);
}

.site-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: var(--text-lg);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-brand);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(15, 27, 45, 0.25);
    flex-shrink: 0;
    color: var(--accent);
}

.nav-logo-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color var(--duration-fast) var(--ease-apple);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
}

.nav-sign-in {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color var(--duration-fast) var(--ease-apple);
}

.nav-sign-in:hover {
    color: var(--accent);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-sm);
    transition: background var(--duration-fast) var(--ease-apple);
}

.nav-hamburger:hover {
    background: var(--bg-input);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--duration-fast) var(--ease-apple);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid var(--border);
    padding: var(--space-4) var(--space-6);
    gap: var(--space-4);
}

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

.nav-mobile a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: var(--text-body);
    font-weight: 500;
    padding: var(--space-3) 0;
    border-bottom: 0.5px solid var(--separator);
    transition: color var(--duration-fast) var(--ease-apple);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    color: var(--accent);
}

/* ── Section wrapper ────────────────────────── */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px var(--space-6);
}

.section-sm {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px var(--space-6);
}

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.section-heading {
    font-size: var(--text-display);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: var(--space-5);
}

.section-subheading {
    font-size: var(--text-xl);
    color: var(--text-tertiary);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 620px;
    margin: 0 auto;
}

/* ── Hero ───────────────────────────────────── */
.hero {
    text-align: center;
    padding: 100px var(--space-6) 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--accent-light);
    color: var(--accent);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-8);
    letter-spacing: -0.01em;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-tertiary);
    max-width: 580px;
    margin: 0 auto var(--space-12);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-body);
    font-weight: 600;
    font-family: inherit;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-apple);
    text-decoration: none;
    color: var(--text);
    background: transparent;
    letter-spacing: -0.01em;
    -webkit-tap-highlight-color: transparent;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

/* ── How It Works ───────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.step-card {
    text-align: center;
    padding: var(--space-10) var(--space-8);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--duration-normal) var(--ease-apple),
                transform var(--duration-normal) var(--ease-apple);
}

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

.step-number {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    margin: 0 auto var(--space-5);
    letter-spacing: -0.02em;
}

.step-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.step-card p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ── Features Grid ──────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.feature-card {
    padding: var(--space-8) var(--space-6);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration-normal) var(--ease-apple),
                transform var(--duration-normal) var(--ease-apple);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    font-size: 22px;
}

.feature-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-2);
    letter-spacing: -0.015em;
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ── Feature detail sections (alternating) ──── */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: 64px var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
}

.feature-section.reverse {
    direction: rtl;
}

.feature-section.reverse > * {
    direction: ltr;
}

.feature-section-content h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: var(--space-5);
}

.feature-section-content p {
    font-size: var(--text-body);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.feature-section-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.feature-section-content ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-body);
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-section-content ul li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%2334C759' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.feature-visual {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.feature-visual-icon {
    font-size: 80px;
    line-height: 1;
    opacity: 0.85;
}

/* ── CTA Banner ─────────────────────────────── */
.cta-banner {
    background: var(--gradient-brand);
    border-radius: var(--radius-xl);
    padding: 64px var(--space-8);
    text-align: center;
    margin: 0 var(--space-6);
}

.cta-banner h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: var(--space-4);
}

.cta-banner p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    line-height: 1.5;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-body);
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-apple);
    text-decoration: none;
    background: var(--accent);
    color: #0F1B2D;
    letter-spacing: -0.01em;
    -webkit-tap-highlight-color: transparent;
}

.btn-white:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 16px rgba(214, 158, 0, 0.35);
    transform: translateY(-1px);
}

/* ── Pricing ────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow var(--duration-normal) var(--ease-apple),
                transform var(--duration-normal) var(--ease-apple);
}

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

.pricing-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 4px 24px rgba(214, 158, 0, 0.18);
    position: relative;
}

.pricing-card.featured:hover {
    box-shadow: 0 8px 40px rgba(214, 158, 0, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0F1B2D;
    font-size: var(--text-caption);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-header {
    padding: var(--space-8) var(--space-8) var(--space-6);
    border-bottom: 0.5px solid var(--separator);
}

.pricing-plan {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3);
}

.pricing-price {
    font-size: var(--text-4xl);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.pricing-price span {
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 0;
}

.pricing-price-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.pricing-features {
    padding: var(--space-6) var(--space-8);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24'%3E%3Cpath fill='%2334C759' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-cta {
    padding: var(--space-6) var(--space-8) var(--space-8);
}

/* ── FAQ ────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-12);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-6) var(--space-8);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    transition: color var(--duration-fast) var(--ease-apple);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: transform var(--duration-fast) var(--ease-apple);
}

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

.faq-answer {
    display: none;
    padding: 0 var(--space-8) var(--space-6);
    font-size: var(--text-body);
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 0.5px solid var(--separator);
    padding-top: var(--space-5);
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── Contact 2-column grid ────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ── Section divider ──────────────────────────── */
.section-divider {
    height: 0.5px;
    background: rgba(15, 27, 45, 0.08);
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Dark hero (only the top hero is dark) ────── */
.hero-dark {
    background: #0F1B2D;
    color: #FFFFFF;
    padding: var(--space-16) var(--space-6);
}

.hero-dark h1 {
    color: #FFFFFF;
}

.hero-dark .hero-subtitle {
    color: rgba(255,255,255,0.65);
}

.hero-dark .hero-eyebrow {
    color: var(--accent);
    background: rgba(214, 158, 0, 0.1);
    border-color: rgba(214, 158, 0, 0.15);
}

/* ── CTA Banner ────────────────────────────── */
.cta-banner {
    background: var(--primary);
    color: #FFFFFF;
}

.cta-banner h2 {
    color: #FFFFFF;
}

.cta-banner p {
    color: rgba(255,255,255,0.65);
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
    border-top: 0.5px solid rgba(15, 27, 45, 0.08);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    background: #FAFAFA;
}

.site-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-tertiary);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color var(--duration-fast) var(--ease-apple);
}

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

.footer-copy {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-bottom: var(--space-3);
}

.footer-credit {
    font-size: var(--text-caption);
    color: var(--text-tertiary);
    opacity: 0.7;
}

.footer-credit a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.footer-credit a:hover {
    color: var(--accent);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
    .nav-links,
    .nav-right {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding: 60px var(--space-6) 48px;
    }

    .hero h1 {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-body);
    }

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

    .hero-actions a,
    .hero-actions .btn-outline {
        text-align: center;
    }

    .section {
        padding: 48px var(--space-6);
    }

    .section-heading {
        font-size: var(--text-3xl);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .features-grid,
    .features-grid-4 {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .feature-section {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: 48px var(--space-6);
    }

    .feature-section.reverse {
        direction: ltr;
    }

    .feature-visual {
        min-height: 180px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        order: -1;
    }

    .cta-banner {
        padding: 48px var(--space-6);
        margin: 0 var(--space-4);
    }

    .cta-banner h2 {
        font-size: var(--text-2xl);
    }

    .faq-question {
        padding: var(--space-5) var(--space-6);
    }

    .faq-answer {
        padding: 0 var(--space-6) var(--space-5);
        padding-top: var(--space-4);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 48px var(--space-4) 40px;
    }

    .hero h1 {
        font-size: var(--text-2xl);
    }

    .hero-subtitle {
        font-size: var(--text-sm);
    }

    .section-heading {
        font-size: var(--text-2xl);
    }

    .section-subheading {
        font-size: var(--text-body);
    }

    .section {
        padding: 36px var(--space-4);
    }

    .features-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner {
        padding: 36px var(--space-4);
        margin: 0 var(--space-2);
    }

    .cta-banner h2 {
        font-size: var(--text-xl);
    }
}

/* ── Hero background animation ──────────────── */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero > *:not(.hero-bg-animation) {
    position: relative;
    z-index: 1;
}

@keyframes float-bubble-1 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.18; }
    33%       { transform: translateY(-28px) translateX(12px); opacity: 0.28; }
    66%       { transform: translateY(-14px) translateX(-8px); opacity: 0.22; }
}

@keyframes float-bubble-2 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.14; }
    40%       { transform: translateY(-20px) translateX(-16px); opacity: 0.24; }
    80%       { transform: translateY(-32px) translateX(8px); opacity: 0.18; }
}

@keyframes float-bubble-3 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.12; }
    50%       { transform: translateY(-22px) translateX(18px); opacity: 0.2; }
}

@keyframes pulse-ring {
    0%   { transform: scale(0.85); opacity: 0.5; }
    50%  { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(0.85); opacity: 0.5; }
}

@keyframes flow-dash {
    0%   { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

@keyframes orbit-dot {
    0%   { transform: rotate(0deg) translateX(72px); }
    100% { transform: rotate(360deg) translateX(72px); }
}

.hero-bubble-1 { animation: float-bubble-1 9s ease-in-out infinite; }
.hero-bubble-2 { animation: float-bubble-2 12s ease-in-out infinite; animation-delay: -3s; }
.hero-bubble-3 { animation: float-bubble-3 10s ease-in-out infinite; animation-delay: -6s; }
.hero-bubble-4 { animation: float-bubble-1 14s ease-in-out infinite; animation-delay: -4s; }
.hero-bubble-5 { animation: float-bubble-2 11s ease-in-out infinite; animation-delay: -8s; }

.globe-pulse { animation: pulse-ring 4s ease-in-out infinite; }
.globe-pulse-2 { animation: pulse-ring 4s ease-in-out infinite; animation-delay: -2s; }

.flow-line-1 {
    stroke-dasharray: 200;
    animation: flow-dash 3s linear infinite;
}

.flow-line-2 {
    stroke-dasharray: 200;
    animation: flow-dash 3s linear infinite;
    animation-delay: -1s;
}

.flow-line-3 {
    stroke-dasharray: 200;
    animation: flow-dash 3s linear infinite;
    animation-delay: -2s;
}

/* ── Stats bar ───────────────────────────────── */
.stats-bar {
    background: var(--bg-card);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: var(--space-8) var(--space-6);
}

.stats-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

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

.stat-value {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* ── Product illustration ─────────────────────── */
.product-illustration {
    max-width: 960px;
    margin: var(--space-12) auto 0;
    padding: 0 var(--space-4);
}

.product-illustration svg {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes appear-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes line-draw {
    from { stroke-dashoffset: 300; opacity: 0; }
    to   { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes text-appear-1 {
    0%, 15%  { opacity: 0; }
    30%, 85% { opacity: 1; }
    100%     { opacity: 0; }
}

@keyframes text-appear-2 {
    0%, 30%  { opacity: 0; }
    45%, 85% { opacity: 1; }
    100%     { opacity: 0; }
}

@keyframes text-appear-3 {
    0%, 45%  { opacity: 0; }
    60%, 85% { opacity: 1; }
    100%     { opacity: 0; }
}

.illus-flow-1 {
    stroke-dasharray: 300;
    animation: line-draw 1.2s var(--ease-apple) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.illus-flow-2 {
    stroke-dasharray: 300;
    animation: line-draw 1.2s var(--ease-apple) forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.illus-flow-3 {
    stroke-dasharray: 300;
    animation: line-draw 1.2s var(--ease-apple) forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.illus-text-ar { animation: text-appear-1 5s ease-in-out infinite; animation-delay: 1.2s; opacity: 0; }
.illus-text-hi { animation: text-appear-2 5s ease-in-out infinite; animation-delay: 1.2s; opacity: 0; }
.illus-text-zh { animation: text-appear-3 5s ease-in-out infinite; animation-delay: 1.2s; opacity: 0; }

/* ── Industry icons grid ─────────────────────── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-12);
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-8) var(--space-4);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration-normal) var(--ease-apple),
                transform var(--duration-normal) var(--ease-apple);
    text-decoration: none;
    cursor: default;
}

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

.industry-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
}

.industry-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* ── Security shield animation ───────────────── */
.security-visual {
    max-width: 520px;
    margin: var(--space-12) auto 0;
    text-align: center;
}

.security-visual svg {
    width: 100%;
    height: auto;
    max-width: 440px;
    display: block;
    margin: 0 auto;
}

@keyframes check-appear {
    from { stroke-dashoffset: 40; opacity: 0; }
    to   { stroke-dashoffset: 0;  opacity: 1; }
}

@keyframes label-fade-in {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}

.check-1 { stroke-dasharray: 40; animation: check-appear 0.5s var(--ease-apple) forwards; animation-delay: 0.4s; opacity: 0; }
.check-2 { stroke-dasharray: 40; animation: check-appear 0.5s var(--ease-apple) forwards; animation-delay: 0.9s; opacity: 0; }
.check-3 { stroke-dasharray: 40; animation: check-appear 0.5s var(--ease-apple) forwards; animation-delay: 1.4s; opacity: 0; }
.check-4 { stroke-dasharray: 40; animation: check-appear 0.5s var(--ease-apple) forwards; animation-delay: 1.9s; opacity: 0; }

.check-label-1 { animation: label-fade-in 0.4s var(--ease-apple) forwards; animation-delay: 0.6s; opacity: 0; }
.check-label-2 { animation: label-fade-in 0.4s var(--ease-apple) forwards; animation-delay: 1.1s; opacity: 0; }
.check-label-3 { animation: label-fade-in 0.4s var(--ease-apple) forwards; animation-delay: 1.6s; opacity: 0; }
.check-label-4 { animation: label-fade-in 0.4s var(--ease-apple) forwards; animation-delay: 2.1s; opacity: 0; }

/* ── How It Works timeline ───────────────────── */
.how-it-works-visual {
    max-width: 800px;
    margin: var(--space-12) auto 0;
}

.how-it-works-visual svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Animate on scroll ───────────────────────── */
.animate-on-scroll {
    animation-play-state: paused;
}

.animate-on-scroll.in-view {
    animation-play-state: running;
}

/* ── Reduced motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hero-bubble-1,
    .hero-bubble-2,
    .hero-bubble-3,
    .hero-bubble-4,
    .hero-bubble-5,
    .globe-pulse,
    .globe-pulse-2,
    .flow-line-1,
    .flow-line-2,
    .flow-line-3,
    .illus-flow-1,
    .illus-flow-2,
    .illus-flow-3,
    .illus-text-ar,
    .illus-text-hi,
    .illus-text-zh,
    .check-1,
    .check-2,
    .check-3,
    .check-4,
    .check-label-1,
    .check-label-2,
    .check-label-3,
    .check-label-4 {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* ── Responsive additions ────────────────────── */
@media (max-width: 900px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8) var(--space-6);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   VOXS — Homepage Components (Clean Rebuild)
   ============================================ */

/* ── Homepage Hero ───────────────────────────── */
.hp-hero {
    background: #0d1520;
    padding: 80px var(--space-6) 64px;
    position: relative;
    overflow: hidden;
}

/* Animated grid background */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(214,158,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214,158,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

/* Glowing orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(214,158,0,0.12);
    top: -80px;
    right: 10%;
    animation: hero-pulse 6s ease-in-out infinite alternate;
}
.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(59,130,246,0.07);
    bottom: -60px;
    left: 15%;
    animation: hero-pulse 8s ease-in-out infinite alternate-reverse;
}
@keyframes hero-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 1; }
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(214,158,0,0.6);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(214,158,0,0.3);
    animation: hero-float 7s ease-in-out infinite;
}
.hero-particle:nth-child(even) {
    background: rgba(255,255,255,0.35);
    width: 3px;
    height: 3px;
    box-shadow: 0 0 4px rgba(255,255,255,0.15);
    animation-duration: 9s;
}
@keyframes hero-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    25% { opacity: 1; }
    50% { transform: translateY(-50px) translateX(20px); opacity: 0.6; }
    75% { opacity: 1; }
}

.hp-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: center;
    position: relative;
    z-index: 2;
}
.hp-hero-text { color: #fff; }

/* Eyebrow pill */
.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: rgba(214,158,0,0.1);
    border: 1px solid rgba(214,158,0,0.2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-5);
}
.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: eyebrow-blink 2s ease-in-out infinite;
}
@keyframes eyebrow-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hp-hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-5);
}
.hero-accent {
    background: linear-gradient(135deg, #D69E00 0%, #f0c040 50%, #D69E00 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-shimmer 4s ease-in-out infinite;
}
@keyframes hero-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hp-hero-sub {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: var(--space-6);
    max-width: 440px;
}
.hp-hero-ctas {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}
.hp-hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Phone glow behind device */
.hero-phone-glow {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(214,158,0,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    pointer-events: none;
    animation: hero-pulse 5s ease-in-out infinite alternate;
}

/* Phone float animation */
.hero-phone-float {
    animation: phone-float 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-val {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.hero-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.1);
}

/* ── Homepage Labels & Headings ──────────────── */
.hp-label {
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-2);
    text-align: center;
}
.hp-label-dark { color: var(--accent); }
.hp-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    text-align: center;
    margin-bottom: 0;
}

/* ── Homepage Sections ───────────────────────── */
.hp-section {
    padding: 56px var(--space-6);
    background: #ffffff;
}
.hp-section-alt {
    background: #f8f9fa;
}
.hp-section-dark {
    background: var(--primary);
    padding: 56px var(--space-6);
}
.hp-section-dark .hp-heading { color: #fff; }
.hp-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Homepage Trust Bar ──────────────────────── */
.hp-trust {
    padding: 20px var(--space-6);
    background: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.hp-trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ── Homepage Steps ──────────────────────────── */
.hp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: 28px;
}
.hp-step {
    text-align: center;
    padding: var(--space-6);
    background: #f8f9fa;
    border-radius: var(--radius-lg);
}
.hp-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 800;
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}
.hp-step h3 {
    font-size: var(--text-body);
    font-weight: 700;
    margin-bottom: var(--space-1);
}
.hp-step p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* ── Homepage Industries ─────────────────────── */
.hp-industries {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3);
}
.hp-ind-card {
    text-align: center;
    padding: var(--space-4) var(--space-2);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
    font-size: 20px;
    line-height: 1;
}
.hp-ind-card span {
    display: block;
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: var(--space-2);
}

/* ── Support Category Grid ────────────────────── */
.hp-support-cats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3);
    text-align: center;
}
@media (max-width: 768px) {
    .hp-support-cats {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 480px) {
    .hp-support-cats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Homepage Buttons ────────────────────────── */
.hp-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: var(--text-body);
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 12px rgba(214,158,0,0.25);
}
.hp-btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(214,158,0,0.35);
}
.hp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 28px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: var(--text-body);
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.15);
    transition: all 0.15s;
}
.hp-btn-outline:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.hero-v2-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}
.hero-v2-text {
    color: #ffffff;
}
.hero-v2-text h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #D69E00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-v2-text .hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    max-width: 480px;
}
.hero-v2-ctas {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.hero-v2-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ── Floating Language Tags ───────────────────── */
.lang-float-tag {
    position: absolute;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    animation: float-tag 6s ease-in-out infinite;
    white-space: nowrap;
}
.lang-float-tag:nth-child(1) { top: 5%; left: -10%; animation-delay: 0s; }
.lang-float-tag:nth-child(2) { top: 20%; right: -5%; animation-delay: 1.2s; }
.lang-float-tag:nth-child(3) { bottom: 25%; left: -15%; animation-delay: 2.4s; }
.lang-float-tag:nth-child(4) { bottom: 10%; right: -8%; animation-delay: 0.8s; }
.lang-float-tag:nth-child(5) { top: 45%; left: -20%; animation-delay: 1.8s; }
.lang-float-tag:nth-child(6) { top: 60%; right: -12%; animation-delay: 3.2s; }
@keyframes float-tag {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-12px); opacity: 1; }
}

/* ── Device Mockups ──────────────────────────── */
.device-laptop {
    width: 100%;
    max-width: 680px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
    background: #1a1a2e;
}
.device-laptop .device-bar {
    height: 32px;
    background: #2d2d3f;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}
.device-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.device-dot-red { background: #ff5f57; }
.device-dot-yellow { background: #febc2e; }
.device-dot-green { background: #28c840; }
.device-bar-title {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}
.device-laptop .device-screen {
    padding: var(--space-5);
    background: #ffffff;
    min-height: 300px;
}

.device-phone {
    width: 280px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08), inset 0 0 0 2px rgba(255,255,255,0.04);
    background: #1a1a2e;
    padding: 8px;
}
.device-phone .device-notch {
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -8px;
}
.device-phone .device-screen {
    background: #ffffff;
    border-radius: 28px;
    min-height: 460px;
    overflow: hidden;
}

.device-tablet {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.08);
    background: #e8e8ed;
    padding: 6px;
}
.device-tablet .device-screen {
    background: #ffffff;
    border-radius: 12px;
    min-height: 340px;
    overflow: hidden;
}

/* ── Mockup Screen Content ───────────────────── */
.mock-header {
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}
.mock-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}
.mock-badge-live { background: #dcfce7; color: #16a34a; }
.mock-badge-code {
    font-family: 'SF Mono', ui-monospace, monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary);
}
.mock-transcript {
    padding: 16px;
}
.mock-transcript-line {
    padding: 8px 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text);
    border-bottom: 1px solid #f8f8f8;
}
.mock-transcript-line.interim {
    color: var(--text-tertiary);
    font-style: italic;
}
.mock-speaker-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    font-weight: 600;
    padding: 12px 0 4px;
}
.mock-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
}
.mock-stat {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}
.mock-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}
.mock-stat-label {
    font-size: 9px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.mock-reactions {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #f0f0f0;
}
.mock-reaction-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.mock-chart-bar {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 80px;
    padding: 12px 16px;
}
.mock-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, var(--accent), #e8b940);
    min-height: 8px;
    transition: height 1s ease;
}

/* Typing animation for mockup text */
.typing-text {
    display: inline;
    border-right: 2px solid var(--accent);
    animation: blink-cursor 0.8s step-end infinite;
}
@keyframes blink-cursor {
    0%, 100% { border-color: var(--accent); }
    50% { border-color: transparent; }
}

/* ── Trust Bar ───────────────────────────────── */
.trust-bar {
    padding: var(--space-10) var(--space-6);
    background: #fafbfc;
    border-top: 1px solid rgba(15,27,45,0.05);
    border-bottom: 1px solid rgba(15,27,45,0.05);
}
.trust-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.trust-bar-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-bottom: var(--space-6);
    font-weight: 500;
}
.cert-row {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    margin-top: var(--space-4);
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(15,27,45,0.08);
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.cert-badge svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}
.flag-row {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-4);
}
.flag-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
}
.flag-emoji {
    font-size: 24px;
}

/* ── Product Showcase ────────────────────────── */
.showcase-section {
    padding: 48px var(--space-6);
    background: #ffffff;
}
.showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 0.8fr;
    gap: var(--space-8);
    align-items: center;
    margin-top: var(--space-12);
}
.showcase-caption {
    text-align: center;
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
}

/* ── Dark Section ────────────────────────────── */
.section-dark {
    background: linear-gradient(160deg, #0a1220, #0F1B2D 40%, #162844);
    color: #ffffff;
    padding: 48px var(--space-6);
}
.section-dark .section-label {
    color: var(--accent);
}
.section-dark .section-heading {
    color: #ffffff;
}
.section-dark .section-subheading {
    color: rgba(255,255,255,0.6);
}

/* ── Tech Cards (dark bg) ────────────────────── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 1100px;
    margin: var(--space-12) auto 0;
}
.tech-card {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-apple);
    text-align: center;
}
.tech-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(214,158,0,0.2);
    transform: translateY(-2px);
}
.tech-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(214,158,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--accent);
}
.tech-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-2);
}
.tech-card p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ── Feature Grid Compact ────────────────────── */
.feature-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    max-width: 1100px;
    margin: 0 auto;
}
.feature-card-mini {
    padding: var(--space-6);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15,27,45,0.06);
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    transition: all 0.3s var(--ease-apple);
    text-align: center;
}
.feature-card-mini:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(214,158,0,0.15);
}
.feature-card-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
    color: var(--accent);
}
.feature-card-mini h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-1);
}
.feature-card-mini p {
    font-size: var(--text-caption);
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* ── Industries v2 ───────────────────────────── */
.industries-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    max-width: 1100px;
    margin: var(--space-12) auto 0;
}
.industry-card-v2 {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(15,27,45,0.06);
    text-align: center;
    transition: all 0.4s var(--ease-apple);
}
.industry-card-v2:hover {
    box-shadow: 0 12px 40px rgba(15,27,45,0.08);
    transform: translateY(-3px);
    border-color: rgba(214,158,0,0.15);
}
.industry-card-v2-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--accent);
    font-size: 24px;
}
.industry-card-v2 h4 {
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-2);
}
.industry-card-v2 p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* ── Social Proof ────────────────────────────── */
.social-proof {
    padding: 48px var(--space-6);
    text-align: center;
    background: #fafbfc;
}
.social-proof-quote {
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    letter-spacing: -0.02em;
    font-style: italic;
}
.social-proof-attribution {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    font-style: normal;
}

/* ── CTA v2 ──────────────────────────────────── */
.cta-v2 {
    padding: 60px var(--space-6);
    background: linear-gradient(160deg, #0a1220, #0F1B2D);
    text-align: center;
}
.cta-v2 h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}
.cta-v2 p {
    color: rgba(255,255,255,0.5);
    font-size: var(--text-body);
    margin-bottom: var(--space-8);
}
.cta-v2 .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    font-size: var(--text-body);
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-apple);
    box-shadow: 0 4px 20px rgba(214,158,0,0.3);
}
.cta-v2 .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(214,158,0,0.4);
}
.cta-v2-subtle {
    margin-top: var(--space-4);
    font-size: var(--text-caption);
    color: rgba(255,255,255,0.3);
}

/* ── Feature Category Sections ───────────────── */
.feature-category {
    padding: 48px var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
}
.feature-category:nth-child(even) {
    background: #fafbfc;
}
.feature-category-header {
    margin-bottom: var(--space-10);
}
.feature-category-header h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-2);
}
.feature-category-header p {
    font-size: var(--text-body);
    color: var(--text-tertiary);
    max-width: 600px;
}
.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.feature-detail-card {
    padding: var(--space-6);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15,27,45,0.06);
    transition: all 0.3s var(--ease-apple);
    text-align: center;
}
.feature-detail-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.feature-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
    color: var(--accent);
}
.feature-detail-card h4 {
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-2);
}
.feature-detail-card p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ── Support Centre ──────────────────────────── */
.support-search {
    max-width: 560px;
    margin: 0 auto var(--space-10);
    position: relative;
}
.support-search input {
    width: 100%;
    padding: var(--space-4) var(--space-5) var(--space-4) 48px;
    border: 2px solid rgba(15,27,45,0.08);
    border-radius: var(--radius-xl);
    font-size: var(--text-body);
    background: #ffffff;
    transition: border-color 0.2s;
    outline: none;
}
.support-search input:focus {
    border-color: var(--accent);
}
.support-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
}
.support-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    max-width: 1100px;
    margin: 0 auto var(--space-12);
}
.support-cat-card {
    padding: var(--space-6);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15,27,45,0.06);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-apple);
}
.support-cat-card:hover, .support-cat-card.active {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(214,158,0,0.1);
}
.support-cat-card h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    margin-top: var(--space-3);
}
.support-cat-icon {
    font-size: 28px;
}

/* ── Scroll Animations ───────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ── Responsive — Homepage ────────────────────── */
@media (max-width: 768px) {
    .hp-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hp-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hp-hero-ctas {
        justify-content: center;
    }
    .hp-hero-visual {
        display: none;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-bg-grid, .hero-particles {
        display: none;
    }
    .hp-steps {
        grid-template-columns: 1fr;
    }
    .hp-industries {
        grid-template-columns: repeat(3, 1fr);
    }
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-detail-grid {
        grid-template-columns: 1fr;
    }
    .support-categories {
        grid-template-columns: 1fr;
    }
    .cert-row, .hp-trust-inner {
        gap: var(--space-3);
    }
    .hp-section, .hp-section-alt, .hp-section-dark {
        padding: 40px var(--space-4);
    }
    .hp-hero {
        padding: 56px var(--space-4) 36px;
        overflow: hidden;
    }
    .hp-hero-text h1 {
        font-size: 2rem;
    }
    .hp-industries {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-card-mini,
    .feature-detail-card {
        text-align: center;
    }
    .feature-card-mini-icon,
    .feature-detail-icon {
        margin: 0 auto var(--space-3);
    }
    .hp-trust {
        padding: 16px var(--space-4);
    }
    .hp-trust-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-grid-compact {
        grid-template-columns: 1fr;
    }
    .industries-grid-v2 {
        grid-template-columns: 1fr;
    }
    .hp-industries {
        grid-template-columns: repeat(2, 1fr);
    }
    .mock-stat-grid {
        grid-template-columns: 1fr;
    }
    .hp-steps {
        gap: var(--space-3);
    }
}
