:root {
    --color-bg: #F4F9FA;
    --color-bg-alt: #EEF5F6;
    --color-text: #00212B;
    --color-text-secondary: #5B646F;
    --color-text-muted: #708C91;
    --color-accent: #003C48;
    --color-accent-hover: #00313D;
    --color-cta: #D9A23F;
    --color-cta-hover: #C37C00;
    --color-cta-text: #00212B;
    --color-border: #E0E3E7;
    --color-card: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(16,24,40,0.06), 0 1px 2px rgba(16,24,40,0.04);
    --shadow-md: 0 4px 12px rgba(16,24,40,0.08), 0 2px 4px rgba(16,24,40,0.04);
    --radius: 12px;
}

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

body {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--wide {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 680px;
}

.container--wide {
    max-width: 1120px;
}

/* Nav */
.nav {
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.01em;
}

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

.nav-links a {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}

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

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-accent);
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
}

.nav-cta:hover {
    background: var(--color-accent-hover);
}

.nav-login {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    background: transparent;
    border: 1px solid var(--color-accent);
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.nav-login:hover {
    background: var(--color-accent);
    color: #fff;
}

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

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.2s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 24px 16px;
    gap: 4px;
}

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

.nav-mobile a {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
}

/* Hero Section */
.hero {
    padding: 72px 0 80px;
}

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

.hero-text {
    text-align: left;
}

.hero .qualifier {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    background: rgba(0,60,72,0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.hero .subheadline {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.65;
}

.cta-button {
    display: inline-block;
    background: var(--color-cta);
    color: var(--color-cta-text);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.cta-button:hover {
    background: var(--color-cta-hover);
}

/* Hero Canvas Preview */
.hero-visual {
    position: relative;
}

.hero-canvas-preview {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.hero-canvas-bar {
    background: var(--color-bg-alt);
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-canvas-dots {
    display: flex;
    gap: 5px;
}

.hero-canvas-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
}

.hero-canvas-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.hero-canvas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-border);
}

.hero-canvas-cell {
    background: var(--color-card);
    padding: 14px;
}

.hero-canvas-cell-title {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-canvas-cell-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-canvas-item {
    font-size: 0.6875rem;
    color: var(--color-text);
    padding: 5px 8px;
    border-radius: 4px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.hero-canvas-item.concern {
    background: #FCE6E5;
    border-left: 2px solid #CE2029;
}

.hero-canvas-item.positive {
    background: #E3F3EB;
    border-left: 2px solid #1F8A5B;
}

.hero-canvas-item.action {
    background: #FBEFD6;
    border-left: 2px solid #D9A23F;
}

.hero-canvas-item.neutral {
    background: var(--color-bg);
}

.hero-canvas-footer {
    grid-column: 1 / -1;
    background: var(--color-bg-alt);
    padding: 8px 14px;
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-text { text-align: center; }
    .hero .qualifier { margin: 0 auto 16px; }
    .hero-visual { display: none; }
    .hero .cta-form {
        margin: 0 auto;
        max-width: 100%;
        flex-direction: column;
    }
    .hero .cta-form input[type="email"],
    .hero .cta-form .cta-button {
        width: 100%;
    }
    .hero .cta-note { text-align: center; }
}

.cta-form {
    display: flex;
    gap: 8px;
    max-width: 420px;
}

.inline-cta .cta-form {
    margin: 0 auto;
    width: 100%;
}

.cta-form-stacked {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.cta-form-stacked input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    background: var(--color-card);
    color: var(--color-text);
    box-sizing: border-box;
}

.cta-form-stacked input[type="email"]:focus {
    border-color: var(--color-accent);
}

.cta-form-stacked .cta-button {
    width: 100%;
}

.cta-form input[type="email"] {
    flex: 1;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    background: var(--color-card);
    color: var(--color-text);
}

.cta-form input[type="email"]:focus {
    border-color: var(--color-accent);
}

.cta-form .cta-button {
    white-space: nowrap;
}

.cta-success {
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
}

.cta-error {
    color: #c0392b;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
}

.cta-note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

.trusted-by {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.trusted-by p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.trusted-logos img {
    height: 36px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.2s ease;
}

@media (max-width: 768px) {
    .trusted-logos {
        flex-wrap: wrap;
        gap: 24px;
    }

    .trusted-logos img {
        height: 28px;
    }
}

.trusted-logos img[alt="Combitech"] {
    height: 24px;
}

.trusted-logos img:hover {
    opacity: 1;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.problem h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-text);
    text-align: center;
    letter-spacing: -0.02em;
}

.problem-stat {
    text-align: center;
    margin-bottom: 48px;
}

.problem-stat-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.problem-stat-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-top: 8px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

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

.problem-item {
    background: var(--color-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.problem-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.problem-item p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.testimonials-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.testimonials-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    text-align: center;
}

.solution h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-text);
    text-align: center;
    letter-spacing: -0.02em;
}

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

.solution-item {
    padding-left: 20px;
    border-left: 3px solid var(--color-border);
}

.solution-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.solution-item p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.section-subheadline {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 64px;
    color: var(--color-text);
    text-align: center;
}

/* Stepper as clickable tabs */
.stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stepper-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding: 0 4px;
}

.stepper-divider::before,
.stepper-divider::after {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--color-border);
}

@media (max-width: 768px) {
    .stepper-divider { display: none; }
}

.stepper-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    background: none;
    font-family: inherit;
}

.stepper-item:hover {
    background: var(--color-bg-alt);
}

.stepper-item.active {
    background: var(--color-text);
}

.stepper-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.stepper-item.active .stepper-number {
    background: #fff;
    color: #111;
}

.stepper-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
    font-weight: 500;
    transition: color 0.2s ease;
}

.stepper-item.active .stepper-label {
    color: #fff;
}

/* Slideshow container */
.slideshow {
    margin-top: 32px;
    position: relative;
}

.slide {
    display: none;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.slide.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--color-border);
}

.slide-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.slide-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 2px;
}

.slide-body {
    padding: 24px;
}

/* Scenario cards */
.wt-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wt-scenario {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.wt-scenario.wt-selected {
    border-color: var(--color-text);
    background: var(--color-bg);
}

.wt-scenario-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    font-size: 0.875rem;
}

/* Questions */
.wt-questions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wt-question {
    padding: 14px 18px;
    background: var(--color-bg);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--color-text);
    display: flex;
    gap: 10px;
}

.wt-question-num {
    color: var(--color-text-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.wt-question-tag {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.wt-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: var(--color-bg-alt);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 14px;
}

/* Themes */
.wt-themes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wt-theme {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wt-theme-bar {
    width: 4px;
    min-height: 48px;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
}

.wt-theme-content { flex: 1; }

.wt-theme-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.wt-theme-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.wt-theme-count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: var(--color-bg-alt);
    padding: 2px 8px;
    border-radius: 10px;
}

.wt-theme-quote {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.5;
}

/* Canvas sections */
.wt-section-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
}
.wt-voices {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}
.wt-voice {
    background: var(--color-bg-alt);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.5;
}
.wt-vote {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}
.wt-vote-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wt-vote-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    padding: 6px 10px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
}
.wt-vote-option.wt-vote-winner {
    border-color: var(--color-accent);
    background: rgba(0,60,72,0.05);
    color: var(--color-text);
    font-weight: 600;
}
.wt-vote-pill {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    flex-shrink: 0;
}
.wt-vote-winner .wt-vote-pill {
    background: var(--color-accent);
    color: #fff;
}

/* Canvas */
.wt-canvas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-border);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.wt-canvas-cell {
    background: var(--color-card);
    padding: 18px;
    min-height: 140px;
}

.wt-canvas-cell-title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wt-canvas-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.wt-canvas-item {
    font-size: 0.8125rem;
    color: var(--color-text);
    padding: 8px 10px;
    background: var(--color-bg);
    border-radius: 5px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.wt-canvas-item.wt-concern {
    background: #FCE6E5;
    border-left: 2px solid #CE2029;
}

.wt-canvas-item.wt-positive {
    background: #E3F3EB;
    border-left: 2px solid #1F8A5B;
}

.wt-canvas-item.wt-action {
    background: #FBEFD6;
    border-left: 2px solid #D9A23F;
}

.wt-canvas-footer {
    grid-column: 1 / -1;
    background: var(--color-bg-alt);
    padding: 14px 18px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* Track over time */
.wt-track-intro {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.wt-track-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wt-track-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.wt-track-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wt-track-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    padding-top: 4px;
}

.wt-track-round {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 1px;
}

.wt-track-themes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wt-track-theme {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wt-track-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    width: 170px;
    flex-shrink: 0;
}

.wt-track-bar-bg {
    flex: 1;
    height: 16px;
    background: var(--color-bg-alt);
    border-radius: 3px;
    overflow: hidden;
}

.wt-track-bar-fill {
    height: 100%;
    border-radius: 3px;
}

.wt-track-trend {
    font-size: 0.6875rem;
    font-weight: 600;
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}

.wt-trend-down { color: #1F8A5B; }
.wt-trend-up { color: #CE2029; }
.wt-trend-new { color: #D9A23F; }

.wt-track-stats {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.wt-track-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.wt-track-stat-label {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .wt-scenarios { grid-template-columns: 1fr; }
    .wt-canvas { grid-template-columns: 1fr; }
    .wt-track-row { grid-template-columns: 1fr; }
    .stepper-label { display: none; }
    .stepper-item.active .stepper-label { display: inline; }
}

/* Compare view */
.wt-cmp-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}
.wt-cmp-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    color: var(--color-text-secondary);
}
.wt-cmp-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}
.wt-cmp-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}
.wt-cmp-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wt-cmp-bar-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-text-muted);
    width: 110px;
    flex-shrink: 0;
}
.wt-cmp-bar-bg {
    flex: 1;
    height: 8px;
    background: var(--color-bg-alt);
    border-radius: 2px;
    overflow: hidden;
}
.wt-cmp-bar-fill {
    height: 100%;
    border-radius: 2px;
}
.wt-cmp-bar-pct {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-text-muted);
    width: 44px;
    text-align: right;
    flex-shrink: 0;
}
.wt-compare-badge {
    display: inline-block;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 7px;
    border-radius: 20px;
    flex-shrink: 0;
}
.wt-compare-badge.aligned {
    background: #E3F3EB;
    color: #1F8A5B;
}
.wt-compare-badge.gap {
    background: #FBEFD6;
    color: #C37C00;
}

/* Q&A Section */
.qa {
    padding: 80px 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.qa h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-text);
    text-align: center;
    letter-spacing: -0.02em;
}

.qa-item {
    border-bottom: 1px solid var(--color-border);
}

.qa-item:first-of-type {
    border-top: 1px solid var(--color-border);
}

.qa-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.qa-question:hover {
    color: var(--color-text-secondary);
}

.qa-icon {
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.qa-item.open .qa-icon {
    transform: rotate(45deg);
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.qa-answer p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    padding-bottom: 20px;
    line-height: 1.6;
}

.qa-item.open .qa-answer {
    max-height: 2000px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--color-card);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 20px;
}

.testimonial-card p::before {
    content: "\201C";
    font-size: 1.5rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 2px;
}

.testimonial-card .testimonial-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
}

.testimonial-card .testimonial-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* Inline CTA */
.inline-cta {
    padding: 72px 0;
    text-align: center;
    background: var(--color-accent);
}

.inline-cta-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.inline-cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.inline-cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
}

.inline-cta .cta-button {
    background: var(--color-cta);
    color: var(--color-cta-text);
}

.inline-cta .cta-button:hover {
    background: var(--color-cta-hover);
}

.inline-cta .cta-form input[type="email"] {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.inline-cta .cta-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
}

/* Closing CTA */
.closing {
    padding: 80px 0 96px;
    text-align: center;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.closing h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.closing .cta-note {
    margin-top: 12px;
}


/* Deep dive layout */
.wt-deepdive-body {
    display: flex;
    min-height: 520px;
    padding: 0;
}

.wt-deepdive-bg {
    flex: 1;
    padding: 24px;
    opacity: 0.3;
    pointer-events: none;
    user-select: none;
}

/* Deep dive chat panel */
.dd-panel {
    width: 440px;
    flex-shrink: 0;
    border-left: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    background: var(--color-card);
}

.dd-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.dd-panel-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dd-panel-meta {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.dd-lenses {
    padding: 12px 14px 10px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
}

.dd-lenses-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.dd-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dd-chip {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 20px;
    border: 1.5px solid var(--color-border);
    background: var(--color-card);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    white-space: nowrap;
    font-family: inherit;
}

.dd-chip:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(0,60,72,0.05);
}

.dd-chip.used {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.dd-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dd-placeholder {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 24px;
    line-height: 1.6;
}

.dd-msg-user {
    align-self: flex-end;
    max-width: 80%;
    background: var(--color-text);
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 10px;
    border-bottom-right-radius: 3px;
    padding: 10px 14px;
}

.dd-msg-thinking {
    align-self: flex-start;
    padding: 12px 14px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    border-bottom-left-radius: 3px;
}

.dd-thinking-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.dd-thinking-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
}

.dd-thinking-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: ddPulse 1s infinite;
}

.dd-thinking-dot:nth-child(3) { animation-delay: 0.2s; }
.dd-thinking-dot:nth-child(4) { animation-delay: 0.4s; }

.dd-thinking-steps {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dd-thinking-step {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    opacity: 0;
    transition: opacity 0.25s;
}

.dd-thinking-step.visible { opacity: 1; }

.dd-thinking-step-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-border);
    flex-shrink: 0;
}

.dd-thinking-step.done .dd-thinking-step-dot { background: var(--color-accent); }

.dd-msg-ai {
    align-self: flex-start;
    max-width: 96%;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    border-bottom-left-radius: 3px;
    overflow: hidden;
}

.dd-msg-ai-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid var(--color-border);
    background: rgba(0,60,72,0.06);
}

.dd-msg-ai-type {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
}

.dd-msg-ai-coverage {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.dd-msg-ai-body { padding: 12px 14px; }

.dd-msg-ai-finding {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--color-text);
    margin-bottom: 12px;
}

.dd-breakdown { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.dd-breakdown-row { display: flex; align-items: center; gap: 8px; }
.dd-breakdown-label { font-size: 0.6875rem; color: var(--color-text-muted); width: 88px; flex-shrink: 0; }
.dd-breakdown-bar-bg { flex: 1; height: 6px; background: var(--color-border); border-radius: 3px; overflow: hidden; }
.dd-breakdown-bar-fill { height: 100%; border-radius: 3px; width: 0%; transition: width 0.6s ease; }
.dd-breakdown-pct { font-size: 0.6875rem; font-weight: 700; width: 28px; text-align: right; }

.dd-signal-row { margin-bottom: 12px; }

.dd-signal-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 10px;
    display: inline-block;
}

.dd-signal-tag--gap { background: #FBEFD6; color: #C37C00; }
.dd-signal-tag--aligned { background: #E3F3EB; color: #1F8A5B; }
.dd-signal-tag--hidden { background: #f3edf7; color: #6b3a8a; }

.dd-quotes { display: flex; flex-direction: column; gap: 5px; }

.dd-quote {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--color-text-secondary);
    padding: 7px 10px;
    background: var(--color-card);
    border-radius: 5px;
    border-left: 2px solid var(--color-border);
    line-height: 1.45;
}

.dd-quote-attr {
    font-size: 0.625rem;
    font-style: normal;
    color: var(--color-text-muted);
    margin-top: 3px;
}

.dd-input-row {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.dd-input {
    flex: 1;
    padding: 9px 13px;
    font-size: 0.8125rem;
    border: 1.5px solid var(--color-border);
    border-radius: 7px;
    font-family: inherit;
    background: var(--color-card);
    color: var(--color-text);
    outline: none;
}

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

.dd-send {
    padding: 9px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.dd-send:hover { background: var(--color-accent-hover); }
.dd-send:disabled { opacity: 0.4; cursor: default; }

@keyframes ddPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media (max-width: 768px) {
    .wt-deepdive-body {
        flex-direction: column;
        min-height: unset;
    }
    .wt-deepdive-bg {
        display: none;
    }
    .dd-panel {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--color-border);
    }
}

/* Chat deep dive */
.wt-chat {
    display: flex;
    flex-direction: column;
    height: 420px;
}

.wt-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wt-chat-msg {
    max-width: 85%;
    font-size: 0.875rem;
    line-height: 1.55;
    border-radius: 10px;
    padding: 12px 16px;
}

.wt-chat-msg--user {
    background: var(--color-text);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

.wt-chat-msg--ai {
    background: var(--color-bg-alt);
    color: var(--color-text);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
    border: 1px solid var(--color-border);
}

.wt-chat-ai-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.wt-chat-quotes {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wt-chat-quote {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--color-text-secondary);
    padding: 7px 10px;
    background: var(--color-card);
    border-radius: 5px;
    border-left: 2px solid var(--color-border);
    line-height: 1.45;
}

.wt-chat-meta {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.wt-chat-signal {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wt-chat-signal-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wt-chat-signal-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    width: 100px;
    flex-shrink: 0;
}

.wt-chat-signal-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
}

.wt-chat-signal-tag--neutral {
    background: #E3F3EB;
    color: #1F8A5B;
}

.wt-chat-signal-tag--gap {
    background: #FBEFD6;
    color: #C37C00;
}

.wt-chat-input-row {
    display: flex;
    gap: 8px;
    padding: 14px 20px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.wt-chat-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 0.875rem;
    border: 1.5px solid var(--color-border);
    border-radius: 7px;
    font-family: inherit;
    background: var(--color-card);
    color: var(--color-text);
    outline: none;
}

.wt-chat-send {
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-family: inherit;
    opacity: 0.5;
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .problem-grid,
    .solution-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Inline CTA form */
    .inline-cta .cta-form {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }
    .inline-cta .cta-form input[type="email"],
    .inline-cta .cta-form .cta-button {
        width: 100%;
    }

    /* Slide header */
    .slide-header {
        padding: 14px 16px;
    }
    .slide-body {
        padding: 16px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 0 48px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .subheadline {
        font-size: 1rem;
    }

    .problem, .solution, .closing, .testimonials-section, .qa {
        padding: 48px 0;
    }

    /* Section headings */
    .problem h2, .solution h2, .testimonials-section h2, .qa h2 {
        font-size: 1.5rem;
    }

    /* Closing CTA */
    .closing h2 {
        font-size: 1.375rem;
    }
    .cta-form-stacked {
        max-width: 100%;
    }

    /* Stepper wraps on very small screens */
    .stepper {
        gap: 2px;
    }
    .stepper-item {
        padding: 8px 10px;
    }
}
