/* ============================================
   MYRIDIAN — Design System & Global Styles
   ============================================ */

:root {
    /* Colors — Blue/Cyan palette */
    --bg-primary: #0b1120;
    --bg-secondary: #0f1729;
    --bg-tertiary: #152036;
    --bg-card: rgba(15, 23, 41, 0.6);
    --bg-glass: rgba(15, 23, 45, 0.5);
    --bg-glass-light: rgba(255, 255, 255, 0.04);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;

    --accent-primary: #3578e5;
    --accent-secondary: #06b6d4;
    --accent-gradient: linear-gradient(135deg, #3578e5 0%, #06b6d4 50%, #22d3ee 100%);
    --accent-glow: rgba(53, 120, 229, 0.2);

    --green: #22c55e;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --red: #ef4444;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Effects */
    --glass-blur: blur(20px);
    --glass-blur-heavy: blur(40px);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-xl: 0 16px 64px rgba(0,0,0,0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Typography — Geometric, Precise
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-primary);
    padding: 6px 16px;
    border: 1px solid rgba(53, 120, 229, 0.3);
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

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

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Glass Card Utility
   ============================================ */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: #2d6ad4;
    transform: translateY(-1px);
    box-shadow: 0 0 30px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(53, 120, 229, 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 10px 16px;
}

.btn-ghost:hover { color: var(--text-primary); }

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-block { width: 100%; justify-content: center; }

/* ============================================
   Navigation — Bright Bar
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: #ffffff;
    border-top: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 1px 12px rgba(0,0,0,0.07);
    transition: all var(--transition);
}

.nav.scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    padding: 10px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}

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

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

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

.footer-brand .logo-img {
    height: 30px;
}

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

.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

.nav-link:hover { color: #0f172a; }

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

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

.nav-mobile-cta {
    display: none;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   Hero Section — Centered Layout with Particles
   ============================================ */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    will-change: contents;
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(53, 120, 229, 0.12) 0%, rgba(6, 182, 212, 0.06) 40%, transparent 70%);
    pointer-events: none;
}

.hero-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 40px;
}

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

.dashboard-preview {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 80px rgba(53, 120, 229, 0.06);
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255,255,255,0.02);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #eab308; }
.dash-dots span:nth-child(3) { background: #22c55e; }

.dash-title {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

.dash-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--green);
    font-family: var(--font-mono);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.dash-body {
    padding: 20px;
}

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

.dash-metric {
    background: var(--bg-glass-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
}

.dash-metric-label {
    display: block;
    font-size: 11px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.dash-metric-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.dash-metric-change {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-mono);
    margin-top: 4px;
}

.dash-metric-change.positive { color: var(--green); }

.dash-chart {
    background: var(--bg-glass-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.chart-label {
    font-size: 11px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    margin-bottom: 16px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--accent-gradient);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.6s ease;
    opacity: 0.7;
}

.chart-bar:hover { opacity: 1; }

.chart-bar span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

.dash-activity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--bg-glass-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.activity-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.activity-icon.green { background: rgba(34,197,94,0.15); color: var(--green); }
.activity-icon.blue { background: rgba(59,130,246,0.15); color: var(--blue); }
.activity-icon.purple { background: rgba(167,139,250,0.15); color: var(--purple); }

.activity-text {
    flex: 1;
    font-size: 12px;
    color: var(--text-secondary);
}

.activity-time {
    font-size: 11px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

/* ============================================
   Stats Bar
   ============================================ */
.stats {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-card {
    flex: 1;
    text-align: center;
    padding: 0 32px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

.stat-value {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.stat-suffix {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    width: 100%;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* ============================================
   Services — Systematic Grid
   ============================================ */
.services {
    padding: var(--section-padding) 0;
}

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

.service-card {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

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

.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(53, 120, 229, 0.1);
    border: 1px solid rgba(53, 120, 229, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-tertiary);
    padding-left: 18px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.5;
}

/* ============================================
   Process — Timeline
   ============================================ */
/* Light Section Variant — Pure white for dramatic dark/bright contrast */
.light-section {
    background: #ffffff;
    color: #0f172a;
}

.light-section .section-tag {
    color: var(--accent-primary);
    border-color: rgba(53, 120, 229, 0.3);
}

.light-section .section-title {
    color: #0f172a;
}

.light-section .section-desc {
    color: #475569;
}

/* Stats light overrides */
.stats.light-section {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.light-section .stat-value {
    color: #0f172a;
}

.light-section .stat-label {
    color: #64748b;
}

.light-section .stat-divider {
    background: #e2e8f0;
}

/* Services light overrides */
.light-section .service-card {
    background: white;
    border-color: #e2e8f0;
    backdrop-filter: none;
}

.light-section .service-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.light-section .service-title {
    color: #0f172a;
}

.light-section .service-desc {
    color: #475569;
}

.light-section .service-features li {
    color: #64748b;
}

/* Process / Step card light overrides */
.light-section .step-card {
    background: white;
    border-color: #e2e8f0;
}

.light-section .step-card h3 {
    color: #0f172a;
}

.light-section .step-card p {
    color: #475569;
}

.light-section .step-tags span {
    border-color: #cbd5e1;
    color: #475569;
}

.light-section .step-number {
    color: var(--accent-primary);
}

/* Platform light overrides */
.light-section .platform-feature {
    border-color: transparent;
}

.light-section .platform-feature:hover {
    background: rgba(0,0,0,0.03);
}

.light-section .platform-feature.active {
    background: white;
    border-color: #e2e8f0;
}

.light-section .pf-content h4 {
    color: #0f172a;
}

.light-section .pf-content p {
    color: #64748b;
}

.light-section .display-window {
    background: white;
    border-color: #e2e8f0;
}

.light-section .display-sidebar {
    border-right-color: #e2e8f0;
}

.light-section .sb-item {
    color: #64748b;
}

.light-section .sb-item.active {
    background: rgba(53, 120, 229, 0.08);
    color: var(--accent-primary);
}

.light-section .dm-header h4 {
    color: #0f172a;
}

.light-section .dm-metric {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.light-section .dm-metric-val {
    color: #0f172a;
}

.light-section .dm-metric-label {
    color: #64748b;
}

.light-section .dm-chart-area {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.light-section .display-header {
    border-bottom-color: #e2e8f0;
}

.light-section .display-header span {
    color: #64748b;
}

/* Glass card light overrides */
.light-section .glass-card {
    background: white;
    border-color: #e2e8f0;
    backdrop-filter: none;
}

.light-section .glass-card:hover {
    border-color: #cbd5e1;
}

/* Testimonials/Promise light overrides */
.light-section .testimonial-card {
    background: white;
    border-color: #e2e8f0;
    backdrop-filter: none;
}

.light-section .tc-title {
    color: #0f172a;
}

.light-section .tc-quote {
    color: #475569;
}

/* Industry card light overrides */
.light-section .industry-card h3 {
    color: #0f172a;
}

.light-section .industry-card p {
    color: #475569;
}

/* FAQ light section overrides */
.faq.light-section .faq-item {
    background: white;
    border-color: #e2e8f0;
}

.faq.light-section .faq-question {
    color: #0f172a;
}

.faq.light-section .faq-answer p {
    color: #475569;
}

/* Results on light section — fix result bar track visibility */
.light-section .rb-track {
    background: rgba(0, 0, 0, 0.07);
}

.light-section .rm-value {
    color: #0f172a;
}

.light-section .rm-label {
    color: #64748b;
}

.light-section .result-period {
    color: #94a3b8;
}

/* Pricing on light section — keep featured card highlight */
.light-section .pricing-card.featured {
    background: rgba(53, 120, 229, 0.06);
    border-color: rgba(53, 120, 229, 0.3);
}

.light-section .pc-name,
.light-section .pc-amount {
    color: #0f172a;
}

.light-section .pc-currency {
    color: #334155;
}

.light-section .pc-period {
    color: #64748b;
}

.light-section .pc-desc {
    color: #64748b;
}

.light-section .pc-features li {
    color: #475569;
}

.light-section .pc-price {
    border-bottom-color: #e2e8f0;
}

/* Outline buttons on light pricing cards */
.light-section .btn-outline {
    color: #0f172a;
    border-color: #cbd5e1;
}

.light-section .btn-outline:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: rgba(53, 120, 229, 0.06);
}

.light-section .pc-currency,
.light-section .pc-period,
.light-section .pc-desc {
    color: #64748b;
}

/* Featured card on dark bg needs bright text */
.pricing-card.featured .pc-name,
.pricing-card.featured .pc-amount {
    color: #f0f4f8;
}

.pricing-card.featured .pc-currency {
    color: #cbd5e1;
}

.pricing-card.featured .pc-period {
    color: #94a3b8;
}

.pricing-card.featured .pc-desc {
    color: #94a3b8;
}

.pricing-card.featured .pc-features li {
    color: #cbd5e1;
}

.pricing-card.featured .pc-price {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.process {
    padding: var(--section-padding) 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-primary);
    padding-top: 24px;
    flex-shrink: 0;
    width: 32px;
}

.step-content { flex: 1; }

.step-card {
    padding: 24px;
    transition: all var(--transition);
}

.step-card:hover {
    border-color: var(--border-hover);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.step-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.step-tags span {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--text-tertiary);
    padding: 4px 10px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
}

/* ============================================
   Platform Section — Dashboard Layout
   ============================================ */
.platform {
    padding: var(--section-padding) 0;
}

.platform-showcase {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.platform-feature {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.platform-feature:hover {
    background: var(--bg-glass-light);
}

.platform-feature.active {
    background: var(--bg-glass);
    border-color: var(--border-color);
}

.pf-icon {
    width: 40px;
    height: 40px;
    background: rgba(53, 120, 229, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.pf-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.pf-content p {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    line-height: 1.55;
}

/* Platform Display - Dashboard Mock */
.platform-display {
    position: sticky;
    top: 100px;
}

.display-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.display-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255,255,255,0.01);
}

.display-header span {
    font-size: 11px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

.display-body {
    display: grid;
    grid-template-columns: 160px 1fr;
    min-height: 350px;
}

.display-sidebar {
    border-right: 1px solid var(--border-color);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-tertiary);
    transition: all var(--transition);
    cursor: default;
}

.sb-item.active {
    background: rgba(53, 120, 229, 0.1);
    color: var(--accent-primary);
}

.display-main {
    padding: 20px;
}

.dm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dm-header h4 {
    font-size: 14px;
    font-weight: 600;
}

.dm-badge {
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--green);
    padding: 3px 10px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    background: rgba(34, 197, 94, 0.08);
}

.dm-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dm-metric {
    background: var(--bg-glass-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.dm-metric-val {
    display: block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dm-metric-label {
    font-size: 10px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dm-chart-area {
    background: var(--bg-glass-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.mini-chart svg {
    width: 100%;
    height: 60px;
}

/* ============================================
   Results Section — Data Display
   ============================================ */
.results {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.result-card {
    padding: 28px;
    transition: all var(--transition);
}

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

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.result-industry {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    font-family: var(--font-mono);
}

.result-period {
    font-size: 11px;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.result-metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.rm-value {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    min-width: 80px;
}

.rm-label {
    font-size: 13px;
    color: var(--text-tertiary);
}

.result-bar {
    margin-top: 8px;
}

.rb-track {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.rb-fill {
    height: 100%;
    width: 0;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 1.5s ease;
}

.rb-fill.animate {
    width: var(--width);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
}

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

.testimonial-card {
    padding: 28px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
}

.tc-icon {
    width: 52px;
    height: 52px;
    background: rgba(53, 120, 229, 0.1);
    border: 1px solid rgba(53, 120, 229, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

.tc-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.tc-quote {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Pricing — Grid Layout
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.pricing-card {
    padding: 32px;
    position: relative;
    transition: all var(--transition);
}

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

.pricing-card.featured {
    border-color: rgba(53, 120, 229, 0.3);
    background: rgba(53, 120, 229, 0.05);
    box-shadow: 0 0 40px var(--accent-glow);
}

.pc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pc-header {
    margin-bottom: 24px;
}

.pc-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.pc-desc {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

.pc-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}

.pc-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pc-amount {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.pc-period {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.pc-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pc-features li {
    font-size: 13.5px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.pc-features li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--green);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: var(--section-padding) 0;
}

.cta-card {
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 64px;
    overflow: hidden;
}

.cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-primary);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235a5a72' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

select.form-input option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.cta-note {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 16px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-tertiary);
    line-height: 1.65;
    margin-top: 16px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: var(--bg-glass-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all var(--transition);
}

.footer-socials a:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-tertiary);
    padding: 5px 0;
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ============================================
   What's Possible
   ============================================ */
.whats-possible {
    padding: var(--section-padding) 0;
}

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

.possible-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.possible-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.possible-illustration {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
}

.possible-illustration.ill-teams {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 40%, #e0e7ff 100%);
}

.possible-illustration.ill-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.possible-illustration.ill-growth {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.possible-illustration svg {
    width: 100%;
    height: 100%;
}

.possible-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.possible-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    padding: 20px 24px 8px;
    text-align: center;
}

.possible-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    padding: 0 24px 24px;
    text-align: center;
}

/* What's Possible — now a DARK section, cards stay white for contrast */
.whats-possible .section-title {
    color: var(--text-primary);
}

.whats-possible .section-title .text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.whats-possible .section-desc {
    color: var(--text-secondary);
}

.whats-possible .possible-card {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* CTA Calendly button */
.cta-calendly-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
    justify-content: center;
}

/* ============================================
   Industries
   ============================================ */
.industries {
    padding: var(--section-padding) 0;
}

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

.industry-card {
    padding: 28px;
    transition: all var(--transition);
}

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

.industry-icon {
    width: 48px;
    height: 48px;
    background: rgba(53, 120, 229, 0.1);
    border: 1px solid rgba(53, 120, 229, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    margin-bottom: 16px;
}

.industry-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.industry-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--section-padding) 0;
}

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

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: transform var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Chat Widget
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(53, 120, 229, 0.4);
    transition: all var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(53, 120, 229, 0.5);
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chat-window {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 380px;
    max-height: 540px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
}

.chat-window.open {
    display: flex;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
    background: linear-gradient(135deg, #4f7df5 0%, #6c9eff 50%, #8bb4ff 100%);
    color: white;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar-sm {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-header-name {
    font-size: 16px;
    font-weight: 700;
}

.chat-header-status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-header-status .status-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition);
    padding: 4px;
}

.chat-close:hover { opacity: 1; }

.chat-subtitle {
    padding: 8px 18px 12px;
    background: linear-gradient(135deg, #6c9eff 0%, #8bb4ff 100%);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}

.chat-messages {
    flex: 1;
    padding: 20px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
    max-height: 340px;
    background: #f8fafc;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 88%;
}

.chat-message.bot { align-self: flex-start; }
.chat-message.user { align-self: flex-end; }

.chat-bot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 4px;
}

.chat-msg-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.55;
}

.chat-message.bot .chat-bubble {
    background: white;
    border: 1px solid #e2e8f0;
    color: #334155;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.chat-message.user .chat-bubble {
    background: var(--accent-primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    color: #0f172a;
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
}

.chat-input:focus { border-color: var(--accent-primary); }
.chat-input::placeholder { color: #94a3b8; }

.chat-send {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border: none;
    border-radius: 50%;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.chat-send:hover { background: var(--accent-primary); color: white; }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }
.chat-input:disabled { opacity: 0.7; }

/* Typing indicator */
.typing-dots span {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1;
    animation: typingBounce 1.4s infinite;
    color: #94a3b8;
    font-weight: 700;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered children */
.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

/* ============================================
   Responsive — Mobile & Tablet
   ============================================ */
@media (max-width: 1024px) {
    .hero { padding: 140px 0 80px; min-height: auto; }

    .platform-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .platform-display { position: static; }

    .services-grid,
    .results-grid,
    .testimonials-grid,
    .pricing-grid,
    .industries-grid,
    .possible-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links,
    .nav-actions { display: none; }

    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        padding: 24px;
        gap: 16px;
    }

    .nav-mobile-cta {
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .hero-cta .btn { width: 100%; justify-content: center; }

    .stats-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-card { flex: 0 0 calc(50% - 12px); }
    .stat-divider { display: none; }

    .services-grid,
    .results-grid,
    .testimonials-grid,
    .pricing-grid,
    .industries-grid,
    .possible-grid {
        grid-template-columns: 1fr;
    }

    .chat-window {
        width: calc(100vw - 48px);
        right: 0;
    }

    .display-body {
        grid-template-columns: 1fr;
    }

    .display-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        flex-direction: row;
        overflow-x: auto;
        padding: 8px;
    }

    .dm-metrics {
        grid-template-columns: 1fr;
    }

    .cta-card { padding: 32px 20px; }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 16px;
    }

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

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .stat-card {
        flex: 0 0 100%;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .chat-window {
        width: calc(100vw - 24px);
        right: -4px;
        bottom: 70px;
    }

    .cta-card {
        padding: 24px 16px;
    }
}
