/* ==========================================================================
   Workshop Landing Page - Systemmatica
   AI-Ассистент для бизнеса
   ========================================================================== */

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */

:root {
    /* Colors - from Systemmatica brand */
    --primary: #3249CA;
    --primary-dark: #2438A8;
    --primary-light: #4A5FD6;
    --primary-pale: #E8EBFA;

    --accent: #FF6B35;
    --accent-light: #FFF0EB;

    --text-primary: #1A1A2E;
    --text-secondary: #5C5F62;
    --text-muted: #999;

    --bg-main: #F8F9FC;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A2E;

    --border: #E5E7EB;
    --success: #10B981;
    --success-light: #ECFDF5;

    /* Typography */
    --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --h1-size: 42px;
    --h2-size: 36px;
    --h3-size: 20px;
    --body-size: 16px;
    --small-size: 14px;

    --line-height: 1.6;
    --heading-line-height: 1.2;

    /* Spacing */
    --section-padding: 80px;
    --container-width: 1120px;
    --container-padding: 24px;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --transition: 0.2s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--body-size);
    line-height: var(--line-height);
    color: var(--text-primary);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3 {
    font-weight: 700;
    line-height: var(--heading-line-height);
    color: var(--text-primary);
}

h1 {
    font-size: var(--h1-size);
    font-weight: 800;
}

h2 {
    font-size: var(--h2-size);
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-size: var(--h3-size);
}

p {
    color: var(--text-secondary);
}

/* ==========================================================================
   Layout
   ========================================================================== */

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

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

/* Auto-alternating section backgrounds — reorder sections freely */
main > section:nth-child(odd) {
    background: var(--bg-white);
}
main > section:nth-child(even) {
    background: var(--bg-main);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-family);
    font-size: var(--body-size);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-pale);
    color: var(--primary);
}

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

.btn-full {
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    background: var(--bg-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--primary);
}

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

.nav-menu a {
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    background: linear-gradient(160deg, var(--bg-white) 0%, var(--primary-pale) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

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

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

.hero-image img {
    width: 100%;
    max-width: 700px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(50, 73, 202, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--bg-white);
    font-size: var(--small-size);
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero h1 {
    max-width: 700px;
    margin: 0 0 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-bullets li {
    font-size: 17px;
    color: var(--text-secondary);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.hero-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.hero-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-white);
    padding: 20px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

.urgency-label {
    font-size: var(--small-size);
    color: var(--text-muted);
}

.urgency-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.urgency-note {
    font-size: 12px;
    color: var(--text-muted);
}

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

/* ==========================================================================
   Pain Points Section
   ========================================================================== */

.section-pains {
    /* background managed by auto-alternation */
}

.pains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.pain-card {
    background: var(--bg-main);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: left;
}

.pain-icon {
    width: 64px;
    height: 64px;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-pale);
    border-radius: 50%;
    color: var(--primary);
}

.pain-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.pain-card p {
    font-size: var(--small-size);
    margin: 0;
}

/* ==========================================================================
   Solution Section
   ========================================================================== */

.section-solution {
    /* background managed by auto-alternation */
}

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

.solution-card {
    display: flex;
    gap: 20px;
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.solution-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-white);
    font-size: 24px;
    font-weight: 800;
    border-radius: var(--radius-sm);
}

.solution-content h3 {
    margin-bottom: 8px;
}

.solution-content p {
    font-size: var(--small-size);
    margin: 0;
}

.solution-bonus {
    text-align: center;
    padding: 20px;
    background: var(--primary-pale);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.solution-bonus strong {
    color: var(--primary-dark);
}

/* Solution grid variants */
.solution-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.solution-grid-4col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card-large {
    padding: 32px;
}

.solution-card-large h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.solution-examples {
    margin-top: 40px;
    text-align: center;
}

.solution-examples h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.examples-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.examples-grid span {
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: var(--small-size);
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Social Proof Section
   ========================================================================== */

.section-proof {
    /* background managed by auto-alternation */
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.proof-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

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

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: var(--small-size);
    color: var(--text-muted);
}

.proof-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--small-size);
    color: var(--text-secondary);
}

.feature-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
}

.proof-quote {
    background: var(--primary-pale);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.proof-quote p {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.proof-quote cite {
    font-size: var(--small-size);
    color: var(--text-muted);
    font-style: normal;
}

.bot-screenshot-placeholder {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9/16;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--text-muted);
}

.placeholder-content svg {
    margin-bottom: 12px;
    opacity: 0.5;
}

.placeholder-content span {
    display: block;
    font-size: var(--small-size);
}

.bot-screenshot {
    max-width: 280px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.proof-content-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.proof-visual-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

.proof-visual-row .bot-screenshot {
    max-width: 50%;
    height: auto;
}

/* ==========================================================================
   Storytelling Section
   ========================================================================== */

.section-stories {
    /* background managed by auto-alternation */
}

.stories-intro {
    text-align: center;
    max-width: 600px;
    margin: -20px auto 48px;
    font-size: 18px;
    color: var(--text-secondary);
}

.story-card {
    max-width: 800px;
    margin: 0 auto 24px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.story-trigger {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-pale);
}

.story-body p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.story-body > p:last-child {
    margin-bottom: 0;
}

.story-details {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.story-details li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.story-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--primary-pale);
    border-radius: 50%;
}

.story-details li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-60%) rotate(-45deg);
    width: 8px;
    height: 5px;
    border: 2px solid var(--primary);
    border-top: none;
    border-right: none;
}

.story-outcome {
    margin-top: 16px;
    padding: 12px 20px;
    background: var(--success-light);
    border-left: 4px solid var(--success);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.stories-subtitle {
    text-align: center;
    font-size: 24px;
    margin: 48px 0 32px;
    color: var(--text-primary);
}

.stories-more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-mini {
    background: var(--bg-main);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.story-mini strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-primary);
}

.story-mini p {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Storytelling responsive */
@media (max-width: 1024px) {
    .stories-more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-card {
        padding: 24px;
    }

    .story-trigger {
        font-size: 18px;
    }

    .stories-subtitle {
        font-size: 20px;
        margin: 36px 0 24px;
    }
}

@media (max-width: 480px) {
    .stories-more-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        padding: 20px;
    }
}

/* ==========================================================================
   Program Section
   ========================================================================== */

.section-program {
    /* background managed by auto-alternation */
}

.program-intro {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 24px;
    color: var(--text-secondary);
}

.program-bring {
    text-align: center;
    background: var(--primary-pale);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
    font-size: var(--small-size);
}

.program-bring strong {
    color: var(--primary);
}

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

.program-days {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.program-day-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.program-list {
    max-width: 800px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.program-item-highlight {
    background: var(--primary-pale);
    border: 2px solid var(--primary);
}

.program-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
}

.program-item-highlight .program-icon {
    background: var(--primary-dark);
}

.program-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.program-content p {
    font-size: var(--small-size);
    margin: 0;
}

/* ==========================================================================
   Instructor Section
   ========================================================================== */

.section-instructor {
    /* background managed by auto-alternation */
}

.instructor-card {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.instructor-photo {
    flex-shrink: 0;
}

.instructor-photo img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: var(--shadow-md);
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.instructor-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.instructor-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.instructor-bio {
    margin-bottom: 12px;
}

.instructor-highlight {
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.section-pricing {
    /* background managed by auto-alternation */
}

.countdown-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.countdown-label {
    font-weight: 600;
}

.countdown {
    display: flex;
    gap: 16px;
}

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

.countdown-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.countdown-unit {
    font-size: 12px;
    opacity: 0.8;
}

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

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 2px solid var(--border);
    position: relative;
}

.pricing-vip {
    border-color: var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-white);
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header h3 {
    margin-bottom: 4px;
}

.pricing-condition {
    font-size: var(--small-size);
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 24px;
}

.price-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: var(--small-size);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

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

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--success-light);
    border-radius: 50%;
}

.pricing-features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 5px;
    border: 2px solid var(--success);
    border-top: none;
    border-right: none;
    transform: translateY(-60%) rotate(-45deg);
}

.feature-highlight {
    font-weight: 600;
    color: var(--primary) !important;
}

/* Referral bonus */
.referral-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    padding: 20px 32px;
    background: var(--success-light);
    border: 2px solid var(--success);
    border-radius: var(--radius-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.referral-icon {
    font-size: 32px;
}

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

.referral-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.referral-text p {
    font-size: var(--small-size);
    margin: 0;
}

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

/* Two-column pricing grid */
.pricing-grid-2col {
    grid-template-columns: repeat(2, minmax(400px, 1fr));
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    gap: 40px;
}

/* Pricing Tiers (3-step ladder) */
.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.price-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.price-tier .tier-date {
    font-size: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.price-tier .tier-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.price-tier .price-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-tier .price-currency {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Active tier — current price */
.price-tier.active {
    background: var(--success-light);
    border: 2px solid var(--success);
}

.price-tier.active .tier-date {
    color: var(--success);
    font-weight: 600;
}

.price-tier.active .price-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.price-tier.active .price-currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

/* Passed tier — struck through */
.price-tier.passed {
    opacity: 0.5;
}

.price-tier.passed .price-value {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Upcoming tier — dimmed */
.price-tier.upcoming {
    opacity: 0.6;
}

/* Flexbox for pricing card content alignment */
.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-features {
    flex-grow: 1;
}

/* Bonuses */
.bonuses-section h3 {
    text-align: center;
    margin-bottom: 24px;
}

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

.bonuses-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.bonus-item {
    display: flex;
    gap: 16px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
}

.bonus-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50%;
}

.bonus-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: var(--small-size);
}

.bonus-content p {
    font-size: 12px;
    margin: 0;
}

/* ==========================================================================
   Installment Block (под ценой тарифа)
   ========================================================================== */

.installment-block {
    margin-top: 14px;
    padding: 12px 14px;
    background: var(--primary-pale);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
}

.installment-label {
    display: block;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 12px;
}

.installment-options {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.installment-options li {
    color: var(--text-primary);
}

.installment-options strong {
    font-weight: 600;
    color: var(--primary);
}

/* ==========================================================================
   Installment Instruction (под pricing-grid)
   ========================================================================== */

.installment-instruction {
    margin: 48px auto 0;
    max-width: 720px;
    padding: 28px 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.installment-instruction h3 {
    margin: 0 0 16px;
    font-size: 22px;
    color: var(--text-primary);
}

.installment-steps {
    margin: 0;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.55;
    color: var(--text-primary);
}

.installment-steps strong {
    font-weight: 600;
    color: var(--text-primary);
}

.installment-note {
    margin: 18px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .installment-instruction {
        padding: 22px 20px;
        margin-top: 32px;
    }
    .installment-instruction h3 {
        font-size: 19px;
    }
    .installment-block {
        padding: 10px 12px;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.section-faq {
    /* background managed by auto-alternation */
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

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

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

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: var(--small-size);
}

/* ==========================================================================
   Registration Section
   ========================================================================== */

.section-registration {
    background: linear-gradient(160deg, var(--primary-pale) 0%, var(--bg-white) 100%);
}

.registration-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-row {
    margin-bottom: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: var(--small-size);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.required {
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-family: var(--font-family);
    font-size: var(--body-size);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(50, 73, 202, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Tariff selector */
.tariff-selector {
    display: flex;
    gap: 12px;
}

.tariff-option {
    flex: 1;
    cursor: pointer;
}

.tariff-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tariff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
    text-align: center;
}

.tariff-option:hover .tariff-card {
    border-color: var(--primary);
}

.tariff-option input:checked + .tariff-card {
    border-color: var(--primary);
    background: rgba(50, 73, 202, 0.05);
    box-shadow: 0 0 0 4px rgba(50, 73, 202, 0.1);
}

.tariff-name {
    font-weight: 700;
    font-size: var(--body-size);
    color: var(--text-primary);
}

.tariff-price {
    font-size: var(--small-size);
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 480px) {
    .tariff-selector {
        gap: 8px;
    }
    .tariff-card {
        padding: 12px 8px;
    }
}

.form-row-checkbox {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--small-size);
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success svg {
    color: var(--success);
    margin: 0 auto 16px;
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 8px;
}

/* Payment section (hidden behind ?pay=1) */
#payment-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.payment-info {
    font-size: var(--body-size);
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.payment-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.payment-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

#pay-button,
#sbp-button {
    min-width: 200px;
}

.sbp-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 0;
}

/* SBP QR Code */
#sbp-qr-container {
    margin-top: 24px;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.sbp-instruction {
    font-size: var(--body-size);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.sbp-qr {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.sbp-qr svg {
    max-width: 256px;
    max-height: 256px;
}

.sbp-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.sbp-commission {
    font-size: 13px;
    color: var(--success);
    font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
}

.footer-tagline {
    font-size: var(--small-size);
    opacity: 0.7;
    margin-top: 4px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--bg-white);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --h1-size: 40px;
        --h2-size: 32px;
        --section-padding: 60px;
    }

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

    .pricing-grid,
    .pricing-grid-2col {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .bonuses-grid,
    .bonuses-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-content-horizontal {
        grid-template-columns: 1fr;
    }

    .proof-visual-row {
        justify-content: center;
    }

    .proof-visual-row .bot-screenshot {
        max-width: 45%;
    }

    .proof-content {
        grid-template-columns: 1fr;
    }

    .proof-visual {
        order: -1;
    }

    .bot-screenshot-placeholder {
        max-width: 280px;
        aspect-ratio: 9/14;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --h1-size: 32px;
        --h2-size: 28px;
        --section-padding: 48px;
        --container-padding: 20px;
    }

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

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero h1 {
        margin: 0 auto 16px;
    }

    .hero-urgency {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }

    .urgency-divider {
        width: 80%;
        height: 1px;
    }

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

    .solution-grid,
    .solution-grid-3col {
        grid-template-columns: 1fr;
    }

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

    .hero-info-wrapper {
        align-items: center;
    }

    .proof-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .instructor-card {
        flex-direction: column;
        align-items: center;
    }

    .instructor-card .instructor-info {
        text-align: left;
    }

    .countdown-banner {
        flex-direction: column;
        gap: 16px;
    }

    .bonuses-grid,
    .bonuses-grid-3col {
        grid-template-columns: 1fr;
    }

    .pricing-tiers {
        gap: 0;
    }

    .price-tier {
        padding: 10px 12px;
    }

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

    .registration-form {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --h1-size: 28px;
        --h2-size: 24px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .urgency-value {
        font-size: 24px;
    }

    .stat-value {
        font-size: 28px;
    }

    .price-value {
        font-size: 32px;
    }
}

/* ==========================================================================
   Video Context Section
   ========================================================================== */

.section-video {
    /* background managed by auto-alternation */
    padding: var(--section-padding) 0;
}

.video-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.video-duration {
    font-size: var(--small-size);
    color: var(--text-muted);
    margin-bottom: 24px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    font-size: var(--body-size);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-video {
        padding: 48px 0;
    }

    .video-content h3 {
        font-size: 20px;
    }
}

/* ==========================================================================
   Lightbox for Case Study Images
   ========================================================================== */

.proof-visual-row .bot-screenshot {
    cursor: zoom-in;
    transition: transform var(--transition), box-shadow var(--transition);
}

.proof-visual-row .bot-screenshot:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */

.section-cases {
    /* background managed by auto-alternation */
}

.cases-intro {
    text-align: center;
    max-width: 600px;
    margin: -20px auto 40px;
    font-size: 18px;
    color: var(--text-secondary);
}

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

.case-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.case-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--border);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.case-card h3 {
    font-size: 16px;
    padding: 16px 16px 4px;
}

.case-card p {
    font-size: 13px;
    padding: 0 16px 16px;
    margin: 0;
    line-height: 1.5;
}

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

@media (max-width: 480px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Purchase Popup Modal
   ========================================================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.popup-overlay.active .popup-card {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--bg-main);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.popup-close:hover {
    background: var(--border);
}

.popup-header {
    text-align: center;
    margin-bottom: 24px;
}

.popup-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.popup-tariff {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
}

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

.popup-tariff-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.popup-form .form-group {
    margin-bottom: 16px;
}

.popup-form .form-row-checkbox {
    margin-bottom: 20px;
}

.popup-payment-buttons {
    display: flex;
    gap: 12px;
}

.popup-payment-buttons .btn {
    flex: 1;
}

@media (max-width: 480px) {
    .popup-card {
        padding: 24px;
    }

    .popup-tariff-price {
        font-size: 20px;
    }
}

/* ==========================================================================
   Payment Result Overlay
   ========================================================================== */

.payment-result-overlay {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    padding: 40px 20px;
}

.payment-result-card {
    max-width: 520px;
    width: 100%;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.payment-result-icon {
    margin-bottom: 24px;
}

.payment-result-content h2 {
    font-size: 28px;
    line-height: var(--heading-line-height);
    margin-bottom: 12px;
}

.payment-result-subtitle {
    font-size: var(--body-size);
    color: var(--text-secondary);
    line-height: var(--line-height);
    margin-bottom: 32px;
}

.payment-result-details {
    background: var(--success-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.payment-result-details p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: var(--small-size);
}

.payment-result-contact {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.payment-result-contact:hover {
    text-decoration: underline;
}

.payment-result-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.optional-hint {
    color: var(--text-muted);
    font-weight: 400;
    font-size: var(--small-size);
}

.sbp-status {
    font-size: var(--small-size);
    color: var(--text-muted);
    margin-top: 8px;
    animation: pulse 2s ease-in-out infinite;
}

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

@media (max-width: 480px) {
    .payment-result-card {
        padding: 40px 24px;
    }

    .payment-result-content h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   Sign-up Form Section (inside pricing)
   ========================================================================== */

.signup-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: var(--small-size);
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}

.signup-link:hover {
    color: var(--primary);
}

.signup-section {
    max-width: 560px;
    margin: 40px auto 0;
}

.signup-form-card {
    background: var(--bg-main);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.signup-form-card h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 8px;
}

.signup-subtitle {
    text-align: center;
    font-size: var(--small-size);
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.field-hint {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-error {
    text-align: center;
    color: var(--accent);
    font-size: var(--small-size);
    font-weight: 500;
    margin-top: 12px;
}

#signup-form .btn {
    margin-top: 8px;
}

#signup-success {
    text-align: center;
    padding: 40px 20px;
}

#signup-success svg {
    color: var(--success);
    margin: 0 auto 16px;
    display: block;
}

#signup-success h3 {
    color: var(--success);
    margin-bottom: 12px;
}

#signup-success p {
    color: var(--text-secondary);
    font-size: var(--body-size);
}

@media (max-width: 768px) {
    .signup-form-card {
        padding: 24px;
    }
}

/* ==========================================================================
   Sticky Mobile CTA
   ========================================================================== */

.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        padding: 12px 20px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--border);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        display: none;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .sticky-cta.visible {
        display: block;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Before/After Comparison Section
   ========================================================================== */

.comparison-table {
    max-width: 960px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 16px;
}

.comparison-th {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 8px 0;
}

.comparison-th-negative {
    color: var(--text-muted);
}

.comparison-th-positive {
    color: var(--primary);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 12px;
}

.comparison-cell {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    line-height: 1.5;
}

.comparison-negative {
    background: #FEF2F2;
    color: #991B1B;
    border-left: 3px solid #EF4444;
}

.comparison-positive {
    background: var(--success-light);
    color: #065F46;
    border-left: 3px solid var(--success);
}

@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .comparison-row {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   Guarantee Section
   ========================================================================== */

.guarantee-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background: var(--success-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--success);
}

.guarantee-icon {
    color: var(--success);
    margin-bottom: 16px;
}

.guarantee-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.guarantee-card p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

.sticky-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   Lead Magnet CTA Section
   ========================================================================== */

.section-lead-magnet {
    padding: 60px 0;
}

.lead-magnet-card {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, #064764 0%, #0A6B8A 100%);
    border-radius: 20px;
    padding: 48px 56px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lead-magnet-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(1, 145, 132, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.lead-magnet-badge {
    display: inline-block;
    background: rgba(1, 145, 132, 0.3);
    color: #7EDDD4;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.lead-magnet-content h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}

.lead-magnet-content p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.lead-magnet-content p strong {
    color: #fff;
    font-weight: 700;
}

.lead-magnet-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.lead-magnet-benefits li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.lead-magnet-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7EDDD4;
    font-weight: 700;
}

.lead-magnet-btn {
    display: inline-block;
    background: #019184;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(1, 145, 132, 0.3);
}

.lead-magnet-btn:hover {
    background: #01A896;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 145, 132, 0.4);
}

.lead-magnet-hint {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.6;
}

/* Mockup */

.lead-magnet-visual {
    display: flex;
    justify-content: center;
}

.lead-magnet-mockup {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    width: 280px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    color: #1A1A2E;
    transform: rotate(2deg);
}

.mockup-header {
    font-size: 16px;
    font-weight: 800;
    color: #064764;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E5E7EB;
}

.mockup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #F3F4F6;
    color: #374151;
}

.mockup-check {
    width: 16px;
    height: 16px;
    border: 2px solid #D1D5DB;
    border-radius: 3px;
    flex-shrink: 0;
}

.mockup-more {
    color: #019184;
    font-weight: 600;
    border-bottom: none;
    padding-left: 26px;
}

/* Mobile */

@media (max-width: 768px) {
    .lead-magnet-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }

    .lead-magnet-content h2 {
        font-size: 26px;
    }

    .lead-magnet-visual {
        display: none;
    }

    .lead-magnet-btn {
        display: block;
        text-align: center;
        font-size: 16px;
        padding: 14px 24px;
    }
}
