/* === BRAIN-SECTIONS.CSS ===
 * Стили всех секций лендинга brain.ai-platform.space
 * Использует CSS-переменные из v2.css (gold + electric)
 */

/* === Общие стили секций === */
.brain-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

/* Subtle radial-gradient orb внутри каждой секции (принцип "воздух между секциями") */
.brain-section::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1100px;
    height: 1100px;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.05) 0%,
        rgba(255, 215, 0, 0.02) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.brain-section > .mkt-container {
    position: relative;
    z-index: 1;
}

/* Чередование цветов orbs между секциями */
.brain-section:nth-child(even)::before {
    background: radial-gradient(circle,
        rgba(0, 240, 255, 0.05) 0%,
        rgba(0, 240, 255, 0.02) 40%,
        transparent 70%);
}

/* Scroll-reveal для секций (только когда JS добавит .js-reveal на корень)
   Default: все видимое. JS добавит .js-reveal → opacity:0 → IntersectionObserver выдает .is-revealed */
html.js-reveal .brain-section .brain-section-head,
html.js-reveal .brain-section .pain-card,
html.js-reveal .brain-section .how-step,
html.js-reveal .brain-section .feature-card,
html.js-reveal .brain-section .business-stage,
html.js-reveal .brain-section .faq-item,
html.js-reveal .brain-section .trigger-card,
html.js-reveal .brain-section .case-terminal,
html.js-reveal .brain-section .why-now-grid,
html.js-reveal .brain-section .manifesto-card {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s var(--ease-out-quart),
        transform 0.6s var(--ease-out-quart);
}

html.js-reveal .brain-section.is-revealed .brain-section-head,
html.js-reveal .brain-section.is-revealed .pain-card,
html.js-reveal .brain-section.is-revealed .how-step,
html.js-reveal .brain-section.is-revealed .feature-card,
html.js-reveal .brain-section.is-revealed .business-stage,
html.js-reveal .brain-section.is-revealed .faq-item,
html.js-reveal .brain-section.is-revealed .trigger-card,
html.js-reveal .brain-section.is-revealed .case-terminal,
html.js-reveal .brain-section.is-revealed .why-now-grid,
html.js-reveal .brain-section.is-revealed .manifesto-card {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger для cards внутри секции */
.brain-section.is-revealed .pain-card:nth-child(1),
.brain-section.is-revealed .feature-card:nth-child(1),
.brain-section.is-revealed .trigger-card:nth-child(1),
.brain-section.is-revealed .business-stage:nth-child(1) { transition-delay: 0.1s; }
.brain-section.is-revealed .pain-card:nth-child(2),
.brain-section.is-revealed .feature-card:nth-child(2),
.brain-section.is-revealed .trigger-card:nth-child(2),
.brain-section.is-revealed .business-stage:nth-child(2) { transition-delay: 0.2s; }
.brain-section.is-revealed .pain-card:nth-child(3),
.brain-section.is-revealed .feature-card:nth-child(3),
.brain-section.is-revealed .trigger-card:nth-child(3),
.brain-section.is-revealed .business-stage:nth-child(3) { transition-delay: 0.3s; }
.brain-section.is-revealed .pain-card:nth-child(4),
.brain-section.is-revealed .feature-card:nth-child(4),
.brain-section.is-revealed .trigger-card:nth-child(4) { transition-delay: 0.4s; }
.brain-section.is-revealed .feature-card:nth-child(5),
.brain-section.is-revealed .trigger-card:nth-child(5) { transition-delay: 0.5s; }
.brain-section.is-revealed .feature-card:nth-child(6) { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    .brain-section .brain-section-head,
    .pain-card, .how-step, .feature-card, .business-stage,
    .faq-item, .trigger-card, .case-terminal, .why-now-grid, .manifesto-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.brain-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.brain-section-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid var(--gold-dim);
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.04);
}

.brain-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.brain-section-subtitle {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* ================================================== */
/* === HERO ========================================== */
/* ================================================== */
.mkt-hero {
    position: relative;
    min-height: 100vh;
    padding: 25px 0 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mkt-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(500px, 540px) !important;
    gap: 40px !important;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-direction: row !important;
}

.mkt-hero-visual {
    max-width: none !important;
    width: 100% !important;
    flex: none !important;
}

@media (max-width: 1280px) {
    .mkt-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(460px, 500px) !important;
        gap: 32px !important;
    }
}

.mkt-hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

/* Badges */
.mkt-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mkt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.mkt-badge-gold {
    color: var(--gold);
    border-color: var(--gold-dim);
    background: rgba(255, 215, 0, 0.08);
}

.mkt-badge-electric {
    color: var(--electric);
    border-color: var(--electric-dim);
    background: rgba(0, 240, 255, 0.08);
}

.mkt-badge-blue {
    color: var(--blue);
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.08);
}

/* Hero title */
.mkt-hero-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.02em;
    word-spacing: normal;
}

.mkt-hero-typewriter {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-secondary);
    min-height: 1.7em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.brain-typewriter {
    display: inline-block;
    min-height: 1.4em;
}
.brain-typewriter::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 1em;
    background: var(--gold);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: tw-cursor 0.9s steps(2) infinite;
}
@keyframes tw-cursor {
    0%, 49%   { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Slogan - главный лозунг */
.brain-slogan {
    margin: 8px 0;
    padding: 18px 22px;
    border-left: 3px solid var(--gold);
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05), transparent);
    font-style: italic;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.6;
    color: var(--text-primary);
    border-radius: 0 12px 12px 0;
}

/* Client quote */
.brain-client-quote {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 4px 0;
}

.brain-client-quote-text {
    font-style: italic;
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.brain-client-quote-author {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* CTA buttons */
.mkt-hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 1px;
    flex-wrap: wrap;
}

.mkt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-out-quart);
    text-decoration: none;
    font-family: var(--font-body);
}

.mkt-btn-primary {
    background: var(--gradient-gold);
    color: #0a0a0a;
}

.mkt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
}

.mkt-btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.mkt-btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.mkt-btn-glow {
    position: relative;
    overflow: hidden;
}

.mkt-btn-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-quart);
}

.mkt-btn-glow:hover::before {
    transform: translateX(100%);
}

.mkt-btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

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

/* Hero meta */
.mkt-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    margin: 5px 0 5px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Hero stats */
.mkt-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-top: 8px;
}

.mkt-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mkt-stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.mkt-stat-unit {
    font-size: 13px;
    color: var(--text-secondary);
}

.mkt-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

.mkt-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* Hero visual (Brain Pipeline holder) */
.mkt-hero-visual {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 580px;
    height: 100%;
    display: flex;
    align-items: center;
}
.mkt-hero-visual > .brain-pipeline { flex: 1; }

/* ================================================== */
/* === HEADER ======================================== */
/* ================================================== */
.mkt-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: color-mix(in srgb, var(--bg-primary) 75%, transparent);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.mkt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mkt-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mkt-logo span {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
}

.mkt-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.mkt-nav-cta {
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--gradient-gold);
    color: #0a0a0a !important;
    font-weight: 600;
    font-size: 13px;
}

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

/* Burger button - скрыт на desktop, виден на mobile */
.mkt-burger {
    display: none;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    transition: all 0.2s var(--ease-out-quart);
}

.mkt-burger:hover {
    border-color: var(--gold);
}

.mkt-burger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-quart);
}

.mkt-burger[aria-expanded="true"] .mkt-burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.mkt-burger[aria-expanded="true"] .mkt-burger-line:nth-child(2) {
    opacity: 0;
}
.mkt-burger[aria-expanded="true"] .mkt-burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mkt-lang-switch {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 8px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 12px;
    cursor: pointer;
}

.mkt-theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 8px;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.mkt-theme-toggle:hover {
    color: var(--text-primary);
    border-color: var(--gold);
}

.mkt-icon-sun { display: none; }
.mkt-icon-moon { display: inline; }
html.light-theme .mkt-icon-sun { display: inline; }
html.light-theme .mkt-icon-moon { display: none; }

/* ================================================== */
/* === TRIGGER QUESTIONS ============================= */
/* ================================================== */
.brain-triggers { padding: 80px 0; }

.trigger-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.trigger-card {
    position: relative;
    padding: 22px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out-quart);
}

.trigger-card.is-yes {
    border-color: var(--green);
    background: rgba(16, 185, 129, 0.05);
}

.trigger-card.is-no {
    border-color: var(--red);
    background: rgba(239, 68, 68, 0.05);
}

.trigger-card-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.trigger-card-text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0 0 16px;
    min-height: 3em;
}

.trigger-card-actions {
    display: flex;
    gap: 8px;
}

.trigger-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s var(--ease-out-quart);
    font-family: var(--font-body);
}

.trigger-btn-yes:hover,
.trigger-btn-yes.is-active {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--green);
    color: var(--green);
}

.trigger-btn-no:hover,
.trigger-btn-no.is-active {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--red);
    color: var(--red);
}

.trigger-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.trigger-result {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 240, 255, 0.05));
    border: 1px solid var(--gold-dim);
    border-radius: 20px;
    max-width: 540px;
    margin: 0 auto;
    animation: trigger-result-in 0.6s var(--ease-out-quart);
}

@keyframes trigger-result-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.trigger-result-icon { font-size: 40px; margin-bottom: 12px; }

.trigger-result-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 8px;
}

.trigger-result-text {
    color: var(--text-secondary);
    margin: 0 0 20px;
    line-height: 1.5;
}

/* ================================================== */
/* === PAIN ========================================== */
/* ================================================== */
.pain-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pain-card {
    position: relative;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s var(--ease-out-quart);
}

.pain-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
}

.pain-card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.pain-card-quote {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0 0 14px;
}

.pain-card-author {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================== */
/* === HOW =========================================== */
/* ================================================== */
.how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.how-step {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    text-align: center;
    position: relative;
    transition: all 0.3s var(--ease-out-quart);
}

.how-step-featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.1);
}

.how-step-num {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #0a0a0a;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.how-step-icon { font-size: 32px; margin-bottom: 12px; }

.how-step-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.how-step-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
}

.how-step-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.how-step-badge-free {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
}

.how-step-badge-paid {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
}

.how-arrow {
    flex: 0 0 80px;
    color: var(--gold);
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    animation: how-arrow-pulse 2.5s ease-in-out infinite;
}

.how-arrow svg { width: 100%; height: auto; }

@keyframes how-arrow-pulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50%      { opacity: 1; transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
    .how-arrow { animation: none !important; transform: none !important; }
}

@media (max-width: 920px) {
    .how-arrow { transform: rotate(90deg); flex-basis: 40px; }
}

/* ================================================== */
/* === WHAT WORKS (features grid) ==================== */
/* ================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    position: relative;
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s var(--ease-out-quart);
}

.feature-card:hover {
    border-color: var(--electric-dim);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 240, 255, 0.1);
}

.feature-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.feature-card-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.feature-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0 0 14px;
}

/* Example block - quote with gold left border */
.feature-card-example {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.22);
    border-left: 3px solid rgba(255, 215, 0, 0.55);
    position: relative;
}

.feature-card-example-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    opacity: 0.85;
}

.feature-card-example-text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

/* Result badge - green check */
.feature-card-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.30);
    color: #10b981;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-card-result svg {
    flex-shrink: 0;
}

/* Legacy proof support (если где-то остались) */
.feature-card-proof {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card-proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
    animation: feature-proof-pulse 2s ease-in-out infinite;
}

@keyframes feature-proof-pulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}

.feature-card-graph {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 80px;
    height: 40px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-quart);
    pointer-events: none;
}

.feature-card:hover .feature-card-graph {
    opacity: 0.5;
}

.fc-node {
    fill: var(--gold);
}

.fc-node-main {
    fill: var(--electric);
}

.fc-edge {
    stroke: var(--gold);
    stroke-width: 1;
    opacity: 0.5;
}

/* ================================================== */
/* === CASE STUDY (Premium Flow Diagram) ============= */
/* ================================================== */
.brain-case .brain-section-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 14px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.04);
    margin-bottom: 20px;
}

/* Question bubble */
.case-question {
    max-width: 760px;
    margin: 50px auto 30px;
    padding: 24px 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue, #00F0FF);
    position: relative;
}

.case-question-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--electric);
    background: rgba(0, 240, 255, 0.10);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.case-question-text {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
    font-style: italic;
}

/* Flow diagram */
.case-flow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 32px 32px;
    border-radius: 24px;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.06), transparent 60%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.case-flow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.03), transparent 70%);
    pointer-events: none;
}

.case-flow-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.14), rgba(0, 240, 255, 0.10));
    border: 1px solid rgba(255, 215, 0, 0.35);
    margin-bottom: 32px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.10);
}

.case-flow-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
    animation: case-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes case-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}

.case-flow-badge-text {
    color: var(--gold);
}

.case-flow-badge-time {
    color: var(--text-muted);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 10px;
    margin-left: 4px;
}

/* Track - row of 4 nodes connected by line */
.case-flow-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.case-flow-line {
    position: absolute;
    top: 44px;
    left: 60px;
    right: 60px;
    height: 8px;
    width: calc(100% - 120px);
    z-index: 0;
    pointer-events: none;
    animation: case-line-dash 22s linear infinite;
}

@keyframes case-line-dash {
    to { stroke-dashoffset: -100; }
}

/* Node = orb + info */
.case-flow-node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(15px);
    animation: case-node-reveal 0.7s var(--ease-out-quart) forwards;
    animation-delay: var(--node-delay, 0s);
}

@keyframes case-node-reveal {
    to { opacity: 1; transform: translateY(0); }
}

.case-flow-node-orb {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(0, 240, 255, 0.10));
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 28px rgba(255, 215, 0, 0.20),
                inset 0 0 24px rgba(255, 215, 0, 0.08);
    transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s ease;
}

.case-flow-node--electric .case-flow-node-orb {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.18), rgba(255, 215, 0, 0.08));
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 8px 28px rgba(0, 240, 255, 0.20),
                inset 0 0 24px rgba(0, 240, 255, 0.08);
}

.case-flow-node--win .case-flow-node-orb {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(255, 215, 0, 0.12));
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 10px 36px rgba(16, 185, 129, 0.30),
                inset 0 0 28px rgba(16, 185, 129, 0.12);
    animation: case-win-pulse 2s ease-in-out infinite;
}

@keyframes case-win-pulse {
    0%, 100% { box-shadow: 0 10px 36px rgba(16, 185, 129, 0.30), inset 0 0 28px rgba(16, 185, 129, 0.12); }
    50%      { box-shadow: 0 14px 48px rgba(16, 185, 129, 0.45), inset 0 0 32px rgba(16, 185, 129, 0.18); }
}

.case-flow-node:hover .case-flow-node-orb {
    transform: translateY(-3px) scale(1.04);
}

.case-flow-node-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFF7CC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

.case-flow-node--electric .case-flow-node-num {
    background: linear-gradient(135deg, #00F0FF 0%, #B5FFFD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-flow-node--win .case-flow-node-num {
    background: linear-gradient(135deg, #10b981 0%, #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-flow-node-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-height: 56px;
}

.case-flow-node-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.35;
    max-width: 140px;
}

.case-flow-node-pct {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.10);
    border: 1px solid rgba(255, 215, 0, 0.25);
    font-family: var(--font-mono);
}

.case-flow-node--electric .case-flow-node-pct {
    background: rgba(0, 240, 255, 0.10);
    border-color: rgba(0, 240, 255, 0.25);
}

.case-flow-node--win .case-flow-node-pct {
    background: rgba(16, 185, 129, 0.14);
    border-color: rgba(16, 185, 129, 0.35);
}

.case-flow-node-pct strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
}

.case-flow-node--electric .case-flow-node-pct strong { color: var(--electric); }
.case-flow-node--win .case-flow-node-pct strong { color: #10b981; }

.case-flow-node-pct em {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-style: normal;
}

/* Sources chips */
.case-flow-sources {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.case-flow-sources-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.case-flow-sources-chips {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-flow-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: var(--electric);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Reaction (client's second message) */
.case-reaction {
    max-width: 760px;
    margin: 30px auto 0;
    padding: 24px 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.01));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-left: 3px solid #10b981;
}

.case-reaction-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #10b981;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.case-reaction-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
}

.case-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin: 30px auto 0;
    max-width: 640px;
    font-style: italic;
}

/* Light theme */
html.light-theme .case-flow {
    background: radial-gradient(ellipse at top, rgba(184, 134, 11, 0.06), transparent 60%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.008));
    border-color: rgba(0, 0, 0, 0.10);
}

html.light-theme .case-question,
html.light-theme .case-reaction {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.005));
    border-color: rgba(0, 0, 0, 0.10);
}

html.light-theme .case-question-text,
html.light-theme .case-reaction-text {
    color: #1a1a1a;
}

html.light-theme .case-flow-node-label {
    color: #1a1a1a;
}

html.light-theme .brain-case .brain-section-eyebrow {
    color: #b8860b;
    border-color: rgba(184, 134, 11, 0.4);
    background: rgba(184, 134, 11, 0.06);
}

html.light-theme .case-flow-node-num {
    background: linear-gradient(135deg, #b8860b 0%, #d4a52a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.light-theme .case-flow-node--electric .case-flow-node-num {
    background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile */
@media (max-width: 768px) {
    .case-flow {
        padding: 28px 18px 24px;
    }
    .case-flow-track {
        grid-template-columns: 1fr 1fr;
        gap: 24px 14px;
    }
    .case-flow-line {
        display: none;
    }
    .case-flow-node-orb {
        width: 72px;
        height: 72px;
    }
    .case-flow-node-num {
        font-size: 30px;
    }
    .case-question,
    .case-reaction {
        padding: 18px 20px;
    }
    .case-question-text {
        font-size: 17px;
    }
    .case-reaction-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .case-flow-track {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .case-flow-node-orb {
        width: 64px;
        height: 64px;
    }
    .case-flow-node-num {
        font-size: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .case-flow-node { animation: none; opacity: 1; transform: none; }
    .case-flow-line { animation: none; }
    .case-flow-badge-dot { animation: none; }
    .case-flow-node--win .case-flow-node-orb { animation: none; }
}

/* ================================================== */
/* === WHY NOW ======================================= */
/* ================================================== */
.why-now-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-now-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin: 14px 0;
}

.why-now-highlight {
    margin-top: 18px;
    padding: 14px 18px;
    border-left: 3px solid var(--gold);
    background: rgba(255, 215, 0, 0.05);
    font-weight: 600;
    color: var(--text-primary);
    border-radius: 0 12px 12px 0;
}

.why-now-comparison {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-now-card {
    flex: 1;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.why-now-card-old {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.20);
    opacity: 0.75;
    position: relative;
}
.why-now-card-old .why-now-card-price {
    color: rgba(239, 68, 68, 0.85);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(239, 68, 68, 0.55);
    text-underline-offset: 2px;
}

.why-now-card-new {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.10), rgba(0, 240, 255, 0.08));
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.18),
                inset 0 0 24px rgba(255, 215, 0, 0.04);
    transform: scale(1.02);
}
.why-now-card-new .why-now-card-price {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 32px !important;
    white-space: nowrap;
}

.why-now-card-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.why-now-card-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.why-now-card-new .why-now-card-price {
    color: var(--gold);
}

.why-now-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.why-now-vs {
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

@media (max-width: 920px) {
    .why-now-grid { grid-template-columns: 1fr; }
    .why-now-comparison { flex-direction: column; }
    .why-now-vs { transform: rotate(90deg); }
}

/* ================================================== */
/* === FAQ =========================================== */
/* ================================================== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* === PREMIUM FAQ === */
.brain-faq .brain-section-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--electric);
    padding: 6px 14px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 999px;
    background: rgba(0, 240, 255, 0.04);
    margin-bottom: 20px;
}

.faq-list {
    max-width: 820px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012));
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-out-quart);
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
    animation: faq-reveal 0.6s var(--ease-out-quart) forwards;
    animation-delay: var(--faq-delay, 0s);
}

@keyframes faq-reveal {
    to { opacity: 1; transform: translateY(0); }
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0), rgba(0, 240, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    transition: background 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.faq-item:hover::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(0, 240, 255, 0.4));
}

.faq-item[open] {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.06), rgba(255, 215, 0, 0.02));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30),
                inset 0 0 28px rgba(255, 215, 0, 0.04);
}

.faq-item[open]::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.55), rgba(0, 240, 255, 0.45));
}

.faq-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    min-height: 76px;
    transition: padding 0.3s var(--ease-out-quart);
}

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

/* Иконка категории */
.faq-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--gold);
    transition: all 0.3s var(--ease-out-quart);
}

.faq-icon--security {
    background: rgba(16, 185, 129, 0.10);
    border-color: rgba(16, 185, 129, 0.30);
    color: #10b981;
}
.faq-icon--price,
.faq-icon--value {
    background: rgba(255, 215, 0, 0.10);
    border-color: rgba(255, 215, 0, 0.30);
    color: var(--gold);
}
.faq-icon--time {
    background: rgba(0, 240, 255, 0.10);
    border-color: rgba(0, 240, 255, 0.30);
    color: var(--electric);
}
.faq-icon--compare,
.faq-icon--upgrade {
    background: rgba(168, 85, 247, 0.10);
    border-color: rgba(168, 85, 247, 0.30);
    color: #a855f7;
}
.faq-icon--package {
    background: rgba(0, 240, 255, 0.10);
    border-color: rgba(0, 240, 255, 0.30);
    color: var(--electric);
}

.faq-item:hover .faq-icon {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.20);
}

.faq-item[open] .faq-icon {
    transform: scale(1.04);
}

/* Wrap для category + question */
.faq-q-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.faq-cat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.8;
}

.faq-q {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-item:hover .faq-q {
    color: var(--gold);
}

.faq-item[open] .faq-q {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Toggle plus -> rotate to X */
.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--gold);
    transition: all 0.4s var(--ease-out-quart);
}

.faq-item:hover .faq-toggle {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.50);
}

.faq-item[open] .faq-toggle {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.20), rgba(0, 240, 255, 0.18));
    border-color: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.30);
}

.faq-toggle-plus {
    transition: transform 0.4s var(--ease-out-quart);
}

/* Answer container with smooth height + fade */
.faq-a-wrap {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s var(--ease-out-quart), opacity 0.3s ease 0.1s;
}

.faq-item[open] .faq-a-wrap {
    max-height: 600px;
    opacity: 1;
}

.faq-a {
    padding: 0 26px 24px 86px;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 15px;
    position: relative;
}

.faq-a::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 0;
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.4), transparent);
    margin-top: -4px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .faq-summary {
        padding: 18px 20px;
        gap: 12px;
        min-height: 64px;
    }
    .faq-icon {
        width: 38px;
        height: 38px;
    }
    .faq-icon svg {
        width: 18px;
        height: 18px;
    }
    .faq-q {
        font-size: 15px;
    }
    .faq-cat-label {
        font-size: 9px;
    }
    .faq-a {
        padding: 0 20px 20px 70px;
        font-size: 14px;
    }
    .faq-a::before {
        left: 20px;
        width: 38px;
    }
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .faq-a {
        padding: 0 20px 20px 20px;
    }
    .faq-a::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-item { animation: none; opacity: 1; transform: none; }
    .faq-item:hover { transform: none; }
    .faq-a-wrap { transition: none; }
}

/* ================================================== */
/* === BUSINESS MODEL ================================ */
/* ================================================== */
.business-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.business-stage {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s var(--ease-out-quart);
    position: relative;
}

.business-stage-paid {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.08);
}

.business-stage-num {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.business-stage-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.business-stage-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 16px;
    min-height: 4em;
}

.business-stage-price {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.business-stage-price-free {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
}

.business-stage-price-paid {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
}

.business-stage-hint {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
}

.business-quote {
    text-align: center;
    font-style: italic;
    font-size: 18px;
    color: var(--text-primary);
    max-width: 600px;
    margin: 24px auto 0;
}

.business-quote small {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
}

/* ================================================== */
/* === MANIFESTO ===================================== */
/* ================================================== */
.manifesto-card {
    position: relative;
    padding: 56px 48px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04), rgba(0, 240, 255, 0.04));
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.manifesto-orb-1 {
    width: 300px; height: 300px;
    top: -100px; left: -100px;
    background: var(--gold);
    opacity: 0.1;
}

.manifesto-orb-2 {
    width: 280px; height: 280px;
    bottom: -100px; right: -100px;
    background: var(--electric);
    opacity: 0.1;
}

.manifesto-eyebrow { margin-bottom: 12px; }

.manifesto-title {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 28px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manifesto-quote {
    position: relative;
    margin: 0;
    border: none;
    padding: 0;
}

.manifesto-quote p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.manifesto-emphasis {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px !important;
    color: var(--gold) !important;
}

.manifesto-author {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.manifesto-author-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.manifesto-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}

.manifesto-author-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: rgba(255, 215, 0, 0.08);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.22),
                0 0 0 2px rgba(255, 215, 0, 0.35),
                inset 0 0 16px rgba(255, 215, 0, 0.05);
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s ease;
}

.manifesto-author-photo::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #FFD700, #00F0FF, #FFD700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.85;
}

.manifesto-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.manifesto-author:hover .manifesto-author-photo {
    transform: scale(1.04);
    box-shadow: 0 12px 36px rgba(255, 215, 0, 0.35),
                0 0 0 2px rgba(255, 215, 0, 0.55),
                inset 0 0 16px rgba(255, 215, 0, 0.08);
}

.manifesto-author-info { display: flex; flex-direction: column; gap: 2px; }

.manifesto-author-name {
    font-weight: 700;
    color: var(--text-primary);
}

.manifesto-author-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ================================================== */
/* === FINAL CTA ===================================== */
/* ================================================== */
.brain-final-cta {
    position: relative;
    text-align: center;
}

.brain-cta-center {
    position: relative;
    max-width: 720px;
}

.brain-cta-pulse-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.08) 0%,
        rgba(0, 240, 255, 0.04) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: cta-orb-pulse 4s ease-in-out infinite;
}

@keyframes cta-orb-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50%      { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.brain-cta-title {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin: 0 0 14px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

.brain-cta-subtitle {
    position: relative;
    font-size: 17px;
    color: var(--text-secondary);
    margin: 0 0 32px;
    line-height: 1.6;
    z-index: 1;
}

.brain-cta-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1;
}

/* ================================================== */
/* === FOOTER ======================================== */
/* ================================================== */
.brain-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%),
        var(--bg-secondary);
    position: relative;
}
.brain-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-dim) 30%,
        var(--electric-dim) 70%,
        transparent 100%);
    opacity: 0.4;
}

.mkt-footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mkt-footer-brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.mkt-footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
}

.mkt-footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
}

.mkt-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mkt-footer-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    padding: 8px 4px;
    min-height: 36px;
    line-height: 1.2;
}

.mkt-footer-link:hover { color: var(--gold); }

.mkt-footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* ================================================== */
/* === TOAST ========================================= */
/* ================================================== */
.mkt-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s var(--ease-out-quart);
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mkt-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

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

/* Tablet + mobile: одноколоночный hero. !important обязателен,
   т.к. base правило .mkt-hero-grid (строка 162) тоже с !important */
@media (max-width: 960px) {
    .mkt-hero {
        padding: 64px 0 40px !important;
        min-height: auto !important;
    }
    .mkt-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .mkt-hero-content {
        gap: 14px;
        order: 1;
    }
    .mkt-hero-visual {
        min-height: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        order: 2;
        overflow: hidden;
    }

    /* Burger показываем, nav прячем как drawer */
    .mkt-burger { display: inline-flex; }

    .mkt-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s var(--ease-out-quart),
                    transform 0.25s var(--ease-out-quart);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        z-index: 99;
    }

    .mkt-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mkt-nav-link,
    .mkt-nav-cta {
        padding: 14px 16px !important;
        border-radius: 12px;
        text-align: left;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .mkt-nav-link {
        border-bottom: 1px solid var(--border);
    }
    .mkt-nav-link:last-of-type {
        border-bottom: none;
    }

    .mkt-nav-cta {
        margin-top: 8px;
        text-align: center !important;
        justify-content: center;
    }

    .brain-section { padding: 56px 0; }

    .brain-section-head { margin-bottom: 36px; }

    .manifesto-card { padding: 32px 24px; }

    /* Touch-targets WCAG 2.2 AA - минимум 44x44 */
    .mkt-btn { min-height: 48px; }
    .mkt-theme-toggle, .mkt-lang-trigger, .mkt-burger { min-width: 44px; min-height: 44px; }

    /* Hero title - крупный, но переносимый */
    .mkt-hero-title {
        font-size: clamp(30px, 8.5vw, 42px) !important;
        line-height: 1.12;
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Подзаголовок */
    .mkt-hero-subtitle, .mkt-hero-slogan {
        font-size: clamp(15px, 4vw, 17px);
        line-height: 1.45;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

@media (max-width: 600px) {
    .mkt-hero-title { font-size: clamp(28px, 8.5vw, 38px) !important; }

    /* Бейджи - компактные, в ряд с переносом */
    .mkt-badges {
        gap: 6px;
        flex-wrap: wrap;
    }
    .mkt-badge {
        font-size: 11px;
        padding: 5px 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Stats KPI блок - горизонтально с оберткой */
    .mkt-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px 12px;
        padding: 14px 16px;
    }
    .mkt-stat-divider { display: none; }
    .mkt-stat { min-width: calc(33% - 12px); flex: 1; }
    .mkt-stat-value { font-size: 22px !important; }

    /* CTA - кнопки на всю ширину, в столбик */
    .mkt-hero-cta {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .mkt-hero-cta .mkt-btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero-meta (✓ NDA · бесплатно) - переносим в столбик */
    .mkt-hero-meta {
        gap: 8px 16px !important;
        flex-wrap: wrap;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .mkt-container { padding-left: 14px !important; padding-right: 14px !important; }
    .mkt-logo { font-size: 18px; }
    .mkt-logo span:nth-of-type(2) { display: none; }
    .mkt-hero-title { font-size: 28px !important; }
    .mkt-badge { font-size: 10.5px; padding: 4px 9px; }
}

/* ====================================================== */
/* === LIGHT THEME - полный контраст всех секций ======== */
/* ====================================================== */

/* Бейджи в hero - заметные на бежевом */
html.light-theme .mkt-badge {
    background: #ffffff;
    border-color: rgba(184, 134, 11, 0.30);
    color: #4a3a1a;
    box-shadow: 0 2px 6px rgba(80, 60, 30, 0.06);
}
html.light-theme .mkt-badge-gold {
    color: #8b6914;
    border-color: rgba(184, 134, 11, 0.45);
    background: linear-gradient(135deg, #fff8e1 0%, #fffdf6 100%);
}
html.light-theme .mkt-badge-electric {
    color: #0e7490;
    border-color: rgba(14, 116, 144, 0.40);
    background: linear-gradient(135deg, #e0f7fa 0%, #f0fbfc 100%);
}
html.light-theme .mkt-badge-blue {
    color: #1e40af;
    border-color: rgba(30, 64, 175, 0.35);
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

/* Слоган - рамка слева видна */
html.light-theme .brain-slogan {
    border-left-color: #b8860b;
    background: linear-gradient(90deg, rgba(184, 134, 11, 0.10), transparent);
    color: #1a1a1a;
}

/* Цитата клиента */
html.light-theme .brain-client-quote-text {
    color: #2a2a2a;
}
html.light-theme .brain-client-quote-author {
    color: #6a5a3a;
}

/* Hero meta-чеки ✓ */
html.light-theme .mkt-hero-meta {
    color: #4a3a1a;
}
html.light-theme .mkt-hero-meta-item::before,
html.light-theme .mkt-hero-meta-item span:first-child {
    color: #15803d;
}

/* KPI stats блок в hero */
html.light-theme .mkt-stats {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.20);
    box-shadow: 0 4px 12px rgba(80, 60, 30, 0.08);
}
html.light-theme .mkt-stat-label {
    color: #6a5a3a;
}
html.light-theme .mkt-stat-divider {
    background: rgba(184, 134, 11, 0.20);
}

/* CTA-кнопки */
html.light-theme .mkt-btn-primary {
    color: #0a0a0a;
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.30);
}
html.light-theme .mkt-btn-ghost {
    color: #2a1f0a;
    border: 1px solid rgba(184, 134, 11, 0.40);
    background: #ffffff;
}
html.light-theme .mkt-btn-ghost:hover {
    background: #fff8e1;
    border-color: #b8860b;
}

/* Trigger-questions cards */
html.light-theme .trigger-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
    box-shadow: 0 4px 12px rgba(80, 60, 30, 0.06);
}
html.light-theme .trigger-card-question { color: #1a1a1a; }
html.light-theme .trigger-card-btn {
    background: #faf6ee;
    border: 1px solid rgba(184, 134, 11, 0.25);
    color: #4a3a1a;
}
html.light-theme .trigger-card-btn:hover {
    background: #fff8e1;
    border-color: #b8860b;
}
html.light-theme .trigger-card-btn.is-active-yes {
    background: #15803d;
    color: #ffffff;
    border-color: #15803d;
}
html.light-theme .trigger-card-btn.is-active-no {
    background: #b8860b;
    color: #ffffff;
    border-color: #b8860b;
}

/* Pain cards */
html.light-theme .pain-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
    box-shadow: 0 4px 12px rgba(80, 60, 30, 0.06);
}
html.light-theme .pain-card-text { color: #1a1a1a; }
html.light-theme .pain-card-icon { background: #fff8e1; }

/* How steps */
html.light-theme .how-step {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
    box-shadow: 0 4px 12px rgba(80, 60, 30, 0.06);
}
html.light-theme .how-step-num { color: #b8860b; }
html.light-theme .how-step-title { color: #1a1a1a; }
html.light-theme .how-step-desc { color: #4a3a1a; }
html.light-theme .how-step-tag-free { color: #15803d; background: #dcfce7; }

/* What-works features */
html.light-theme .feature-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
    box-shadow: 0 4px 12px rgba(80, 60, 30, 0.06);
}
html.light-theme .feature-card-title { color: #1a1a1a; }
html.light-theme .feature-card-desc { color: #4a3a1a; }
html.light-theme .feature-card-proof { color: #15803d; }
html.light-theme .feature-card-example {
    background: rgba(184, 134, 11, 0.04);
    border-left-color: rgba(184, 134, 11, 0.45);
}
html.light-theme .feature-card-example-label { color: #b8860b; }
html.light-theme .feature-card-example-text { color: #5a4818; }
html.light-theme .feature-card-result {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.30);
    color: #047857;
}

/* Case-study Bloomberg */
html.light-theme .case-msg-user .case-msg-body {
    background: #f0fbfc;
    border-left-color: #0e7490;
    color: #1a1a1a;
}
html.light-theme .case-msg-brain .case-msg-body {
    background: #fff8e1;
    border-left-color: #b8860b;
    color: #1a1a1a;
}
html.light-theme .case-msg-author { color: #1a1a1a; }
html.light-theme .case-msg-time { color: #6a5a3a; }
html.light-theme .case-funnel-step {
    background: rgba(14, 116, 144, 0.10);
    border-left-color: #0e7490;
    color: #1a1a1a;
}
html.light-theme .case-funnel-step-final {
    background: rgba(184, 134, 11, 0.18);
    border-left-color: #b8860b;
}

/* Why-now */
html.light-theme .why-now-comparison-item {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
}
html.light-theme .why-now-comparison-old { border-left: 3px solid #dc2626; }
html.light-theme .why-now-comparison-new { border-left: 3px solid #15803d; }

/* FAQ premium */
html.light-theme .brain-faq .brain-section-eyebrow {
    color: #0e7490;
    border-color: rgba(14, 116, 144, 0.4);
    background: rgba(14, 116, 144, 0.06);
}
html.light-theme .faq-item {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.008));
    border: 1px solid rgba(0, 0, 0, 0.12);
}
html.light-theme .faq-item:hover {
    border-color: rgba(184, 134, 11, 0.45);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
html.light-theme .faq-item[open] {
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.08), rgba(184, 134, 11, 0.02));
    border-color: rgba(184, 134, 11, 0.55);
    box-shadow: 0 16px 40px rgba(184, 134, 11, 0.12);
}
html.light-theme .faq-q { color: #1a1a1a; }
html.light-theme .faq-item:hover .faq-q { color: #b8860b; }
html.light-theme .faq-a { color: #4a4a4a; }
html.light-theme .faq-cat-label { color: #6a6a6a; }
html.light-theme .faq-icon { background: rgba(184, 134, 11, 0.10); border-color: rgba(184, 134, 11, 0.30); color: #b8860b; }
html.light-theme .faq-icon--security { background: rgba(16, 185, 129, 0.10); border-color: rgba(16, 185, 129, 0.35); color: #047857; }
html.light-theme .faq-icon--time,
html.light-theme .faq-icon--package { background: rgba(14, 116, 144, 0.10); border-color: rgba(14, 116, 144, 0.30); color: #0e7490; }
html.light-theme .faq-icon--compare,
html.light-theme .faq-icon--upgrade { background: rgba(126, 34, 206, 0.10); border-color: rgba(126, 34, 206, 0.30); color: #7e22ce; }
html.light-theme .faq-toggle { background: rgba(184, 134, 11, 0.10); border-color: rgba(184, 134, 11, 0.30); color: #b8860b; }
html.light-theme .faq-item[open] .faq-toggle {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.22), rgba(14, 116, 144, 0.18));
    border-color: #b8860b;
}

/* Business-model 3 этапа */
html.light-theme .business-stage {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.18);
    box-shadow: 0 4px 12px rgba(80, 60, 30, 0.06);
}
html.light-theme .business-stage-num { color: #b8860b; }
html.light-theme .business-stage-title { color: #1a1a1a; }
html.light-theme .business-stage-desc { color: #4a3a1a; }
html.light-theme .business-stage-free { color: #15803d; }

/* Manifesto */
html.light-theme .manifesto-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.20);
    box-shadow: 0 8px 24px rgba(80, 60, 30, 0.10);
}
html.light-theme .manifesto-card-text { color: #1a1a1a; }
html.light-theme .manifesto-author-name { color: #1a1a1a; }
html.light-theme .manifesto-author-role { color: #6a5a3a; }

/* Burger drawer на белой теме */
html.light-theme .mkt-nav {
    background: #ffffff;
    border-bottom-color: rgba(184, 134, 11, 0.25);
    box-shadow: 0 12px 32px rgba(80, 60, 30, 0.15);
}
html.light-theme .mkt-nav-link {
    color: #1a1a1a;
    border-bottom-color: rgba(184, 134, 11, 0.15);
}
html.light-theme .mkt-burger-line {
    background: #1a1a1a;
}

/* Hero orbs на белой теме - приглушить чтобы не сливаться */
html.light-theme .hero-orb {
    opacity: 0.4;
    mix-blend-mode: multiply;
}

/* === Дополнительные правки контраста light-theme === */

/* How-step цифры - на темно-золотом круге с белой цифрой */
html.light-theme .how-step-num {
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.30);
}

/* "БЕСПЛАТНО" плашка - темно-зеленый текст на светло-зеленом */
html.light-theme .how-step-tag-free,
html.light-theme .business-stage-free {
    background: #dcfce7;
    color: #14532d;
    font-weight: 600;
    border: 1px solid rgba(20, 83, 45, 0.18);
}

/* Final CTA subtitle - темный для контраста на бирюзовом orb */
html.light-theme .brain-cta-subtitle {
    color: #1a1a1a;
    font-weight: 500;
}

/* Final CTA orb - приглушить или сделать светлее */
html.light-theme .brain-cta-pulse-orb {
    background: radial-gradient(circle,
        rgba(184, 134, 11, 0.12) 0%,
        rgba(14, 116, 144, 0.06) 40%,
        transparent 70%);
}

/* Manifesto-author роль + текст */
html.light-theme .manifesto-card .mkt-badge {
    background: #fff8e1;
    color: #8b6914;
    border-color: rgba(184, 134, 11, 0.40);
    font-weight: 600;
}

/* Четкие границы на pain-card icon контейнере */
html.light-theme .pain-card-icon {
    background: #fff8e1;
    border: 1px solid rgba(184, 134, 11, 0.20);
}

/* Section heads (заголовки секций) */
html.light-theme .brain-section-head h2,
html.light-theme .brain-section-title {
    color: #1a1a1a;
}
html.light-theme .brain-section-head p,
html.light-theme .brain-section-subtitle {
    color: #4a3a1a;
}

/* Why-now текст */
html.light-theme .why-now-text { color: #1a1a1a; }
html.light-theme .why-now-text strong { color: #8b6914; }

/* Header на light-theme - чтобы был контраст */
html.light-theme .mkt-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.12);
}
html.light-theme .mkt-logo { color: #b8860b; }
html.light-theme .mkt-logo span:nth-of-type(2) { color: #4a3a1a; }

/* Theme toggle / Lang trigger / Burger - видимы */
html.light-theme .mkt-theme-toggle,
html.light-theme .mkt-lang-trigger {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.25);
    color: #4a3a1a;
}
html.light-theme .mkt-theme-toggle:hover,
html.light-theme .mkt-lang-trigger:hover {
    background: #fff8e1;
    border-color: #b8860b;
}

/* Footer */
html.light-theme .mkt-footer {
    background: #faf6ee;
    border-top: 1px solid rgba(184, 134, 11, 0.18);
    color: #4a3a1a;
}
html.light-theme .mkt-footer a { color: #b8860b; }
html.light-theme .mkt-footer a:hover { color: #8b6914; }

/* Focus-visible для accessibility */
html.light-theme :focus-visible {
    outline: 2px solid #b8860b;
    outline-offset: 2px;
}

/* === Mobile touch-targets и доп. фиксы === */
@media (max-width: 600px) {
    /* CTA-кнопка финальной секции - на mobile в столбик и full-width */
    .brain-cta-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 12px;
    }
    .brain-cta-buttons .mkt-btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    /* How-step на mobile - выровнять */
    .how-step { padding: 24px 18px; }
    .how-step-num {
        width: 48px; height: 48px;
        font-size: 22px;
    }

    /* Pain card padding */
    .pain-card { padding: 20px 18px; }

    /* Feature card */
    .feature-card { padding: 22px 18px; }

    /* Case-terminal padding на mobile */
    .case-terminal {
        padding: 18px 14px !important;
        border-radius: 14px;
    }
    .case-msg-body { padding: 12px 14px; font-size: 14px; }
    .case-msg-body-mono { font-size: 12.5px; }

    /* Trigger-card */
    .trigger-card { padding: 18px 16px; }
    .trigger-card-btn { min-height: 44px; }

    /* FAQ */
    .faq-item summary {
        padding: 16px 14px !important;
        font-size: 15px;
    }
    .faq-item[open] p { padding: 0 14px 16px !important; }

    /* Manifesto */
    .manifesto-card { padding: 28px 18px !important; }
    .manifesto-card-text {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }

    /* Business-stage */
    .business-stage { padding: 22px 18px; }
}

/* === iPhone notch / safe-area-inset (X+, 13/14/15 Pro) === */
@supports (padding: env(safe-area-inset-left)) {
    .mkt-container {
        padding-left: calc(20px + env(safe-area-inset-left));
        padding-right: calc(20px + env(safe-area-inset-right));
    }
    .mkt-header .mkt-container {
        padding-left: calc(16px + env(safe-area-inset-left));
        padding-right: calc(16px + env(safe-area-inset-right));
    }
    .mkt-footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }
}

/* Touch-устройства: убрать hover-эффекты которые залипают */
@media (hover: none) {
    .mkt-btn:hover { transform: none; box-shadow: none; }
    .pain-card:hover, .feature-card:hover, .trigger-card:hover,
    .how-step:hover, .business-stage:hover {
        transform: none;
    }
}

/* iOS input zoom prevention (нужно font-size >= 16px) */
@media (max-width: 768px) {
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
    }
}
