/* =========================================================================
   SYMBOL-X LEADFLOW — ENTERPRISE DESIGN SYSTEM
   Premium B2B SaaS interface · Linear/Stripe inspired
   ========================================================================= */

/* --- DESIGN TOKENS --- */
:root {
    --bg-base: #050505;
    --bg-surface: #0a0a0a;
    --bg-elevated: #111111;
    --bg-hover: #1a1a1a;

    --text-primary: #ededed;
    --text-secondary: #888888;
    --text-muted: #555555;
    --text-white: #ffffff;

    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --accent-subtle: rgba(59, 130, 246, 0.12);
    --accent-glow: rgba(59, 130, 246, 0.15);
    --accent-purple: #8B5CF6;

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-accent: rgba(59, 130, 246, 0.3);

    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.08);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 100px;
}

/* --- GLOBAL OVERRIDES — Kill legacy noise --- */
html,
body {
    background: var(--bg-base) !important;
    color: var(--text-primary);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-glow,
.bg-glow-blue,
.bg-glow-purple,
.scroll-indicator,
.mouse,
.pulse,
.hover-shimmer,
.btn-pulse {
    display: none !important;
    animation: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.conversion-trigger,
.pricing-grid,
.pricing-reassurance,
.pricing-setup-fee {
    display: none !important;
}

/* --- SCROLL CONTAINER --- */
.scroll-container {
    scroll-snap-type: y proximity;
}

/* --- SECTION BASE --- */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl) var(--space-md);
    position: relative;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.section-h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-symbol {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.04em;
    color: var(--text-white);
}

.brand-product {
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--text-muted);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 450;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--text-white);
    color: var(--bg-base);
    font-size: 0.88rem;
    font-weight: 550;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta-btn:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */

.hero-section {
    padding-top: 140px;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.hero-layout {
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34D399;
    animation: pill-pulse 2s ease-in-out infinite;
}

@keyframes pill-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto var(--space-lg);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

/* --- BUTTONS --- */
.btn-primary-enterprise {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--text-white);
    color: var(--bg-base);
    font-size: 0.95rem;
    font-weight: 550;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary-enterprise:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
}

.btn-secondary-enterprise {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-secondary-enterprise:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
}

.btn-large-enterprise {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.plan-btn {
    width: 100%;
    margin-top: auto;
}

/* --- HERO PROOF --- */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.proof-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.proof-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.proof-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* =========================================================================
   TRUST BAR
   ========================================================================= */

.trust-bar {
    padding: var(--space-lg) var(--space-md);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.trust-bar-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    opacity: 0.35;
}

.trust-logo {
    flex-shrink: 0;
}

/* =========================================================================
   PROBLEM → SOLUTION
   ========================================================================= */

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) 32px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.comparison-card:hover {
    transform: translateY(-3px);
}

.comparison-negative:hover {
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-positive {
    border-color: var(--border-accent);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.04) 0%, transparent 100%);
}

.comparison-positive:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.comparison-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.comparison-icon svg {
    width: 20px;
    height: 20px;
}

.comparison-icon.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.comparison-icon.positive {
    background: var(--accent-subtle);
    color: var(--accent);
    border: 1px solid var(--border-accent);
}

.comparison-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-negative .comparison-list li::before {
    content: '✕';
    color: #EF4444;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 2px;
}

.comparison-positive .comparison-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 1px;
}

.comparison-positive .comparison-list li {
    color: var(--text-primary);
}

/* =========================================================================
   DEMO SECTION
   ========================================================================= */

.demo-launch-block {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.demo-launch-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.demo-launch-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 450;
}

.demo-launch-feature svg {
    color: var(--accent);
}

.btn-launch-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--text-white);
    color: var(--bg-base);
    font-size: 1.05rem;
    font-weight: 650;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font);
}

.btn-launch-demo:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.demo-microcopy {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    text-align: center;
}

.demo-visual-area {
    width: 100%;
    max-width: 1100px;
}

/* =========================================================================
   METRICS SECTION
   ========================================================================= */

.metrics-section {
    min-height: auto;
    padding: var(--space-2xl) var(--space-md);
}

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

.metric-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
}

.metric-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.metric-label {
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 6px;
}

.metric-context {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* =========================================================================
   HOW IT WORKS — HORIZONTAL STEPS
   ========================================================================= */

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    font-variant-numeric: tabular-nums;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 1px;
    height: 80px;
    background: var(--border);
    flex-shrink: 0;
    align-self: center;
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */

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

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    display: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-subtle);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-white);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

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

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

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
}

.pricing-card-enterprise {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card-enterprise:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
}

.pricing-highlighted {
    background: var(--bg-elevated);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.pricing-highlighted:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-white);
    color: var(--bg-base);
    font-size: 0.72rem;
    font-weight: 650;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: var(--space-sm);
}

.plan-name-enterprise {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.plan-price-enterprise {
    font-size: 2.8rem;
    font-weight: 650;
    color: var(--text-white);
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price-enterprise span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-context {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.plan-features-enterprise {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.plan-features-enterprise li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plan-features-enterprise li:last-child {
    border-bottom: none;
}

.plan-features-enterprise li::before {
    content: '✓';
    color: var(--text-muted);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 2px;
}

.pricing-highlighted .plan-features-enterprise li {
    color: var(--text-primary);
}

.pricing-highlighted .plan-features-enterprise li::before {
    color: var(--accent);
}

/* Trust strip */
.pricing-trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 450;
}

.trust-strip-item svg {
    color: var(--text-secondary);
}

/* =========================================================================
   FINAL CTA
   ========================================================================= */

.final-cta-block {
    text-align: center;
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

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

.final-cta-micro {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer {
    padding-top: var(--space-xl);
    margin-top: var(--space-2xl);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand strong {
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.footer-brand span {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* =========================================================================
   CASE STUDY CARDS
   ========================================================================= */

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.case-study-card {
    background: var(--bg-elevated);
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.case-study-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
}

.case-study-eyebrow {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}

.case-study-body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.case-study-result {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.case-study-result-label {
    color: var(--text-white);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.case-study-result-value {
    color: #34D399;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

.case-study-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: var(--radius-full);
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #34D399;
    margin-top: 12px;
}

/* Results Summary Strip */
.results-summary-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.results-summary-item {
    text-align: center;
}

.results-summary-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.results-summary-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* =========================================================================
   STEP ICONS & CHANNEL BADGES
   ========================================================================= */

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--accent);
}

.step-icon svg {
    width: 22px;
    height: 22px;
}

.channel-badges-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.channel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: border-color 0.2s ease;
}

.channel-badge:hover {
    border-color: var(--border-hover);
}

.channel-badge svg {
    color: var(--accent);
    width: 16px;
    height: 16px;
}

/* =========================================================================
   SETUP PAGE — TIMELINE, FAQ, TRUST
   ========================================================================= */

.setup-timeline {
    max-width: 700px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.setup-timeline-header {
    text-align: center;
    margin-bottom: 48px;
}

.setup-timeline-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.setup-timeline-sub {
    font-size: 1rem;
    color: var(--text-secondary);
}

.timeline-steps {
    position: relative;
    padding-left: 40px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.timeline-step {
    position: relative;
    padding-bottom: 40px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--accent);
    z-index: 1;
}

.timeline-step:last-child .timeline-dot {
    background: var(--accent);
}

.timeline-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 6px;
}

.timeline-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}

.timeline-step-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.setup-faq {
    max-width: 700px;
    margin: 80px auto 0;
    padding: 0 20px;
}

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

.setup-faq-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
}

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

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 12px;
}

/* Setup Trust Strip */
.setup-trust-strip {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 24px 32px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.setup-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 450;
}

.setup-trust-item svg {
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Setup Footer */
.setup-footer {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 24px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.setup-footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.setup-footer-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.setup-footer-inner a:hover {
    color: var(--text-secondary);
}

/* =========================================================================
   SCROLL-TRIGGERED FADE-IN ANIMATION
   ========================================================================= */

.fade-in-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-connector {
        width: 1px;
        height: 32px;
    }

    .step-card {
        max-width: 400px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-grid-enterprise,
    .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .results-summary-strip {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .channel-badges-strip {
        gap: 10px;
    }
}

@media (max-width: 900px) {
    .scroll-container {
        scroll-snap-type: none;
    }

    .section {
        scroll-snap-align: none;
        min-height: auto;
        padding: 80px var(--space-sm) 60px;
    }

    .nav-links {
        display: none;
    }

    .hero-h1 {
        font-size: clamp(2.2rem, 7vw, 3rem);
    }

    .hero-proof {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .proof-divider {
        width: 40px;
        height: 1px;
    }

    .trust-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .trust-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .demo-pipeline {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pipeline-connector {
        display: none;
    }

    .pricing-trust-strip {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .setup-trust-strip {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-enterprise,
    .btn-secondary-enterprise {
        width: 100%;
        max-width: 300px;
    }

    .comparison-card {
        padding: var(--space-md) var(--space-sm);
    }

    .testimonial-card {
        padding: var(--space-md);
    }

    .pricing-card-enterprise {
        padding: var(--space-md) 20px;
    }
}

/* =========================================================================
   OVERRIDES FOR DEMO WIDGET (PRESERVE STYLES.CSS FUNCTIONALITY)
   ========================================================================= */

.leadflow-widget {
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-md) !important;
}

.msg-user {
    background: #333 !important;
    color: #fff !important;
}

.btn-book-action {
    background: #fff !important;
    color: #000 !important;
}

/* =========================================================================
   CONTACT FORM
   ========================================================================= */

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.enterprise-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 1.05rem;
    /* Increased size for readability */
    font-family: var(--font-main);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select option {
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 1.05rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.form-submit-btn {
    margin-top: 10px;
    width: 100%;
}
