/* =============================================
   COMPOSER FORGE — LAUNCH PAGE STYLES (LIGHT)
   launch.composerforge.com
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Backgrounds */
    --bg-white:      #ffffff;
    --bg-off:        #f7f8fc;
    --bg-subtle:     #f0f2f8;
    --bg-tint:       #eef1fb;

    /* Borders */
    --border:        #e2e6f0;
    --border-mid:    #d0d6e8;

    /* Accent — same purple as rest of CF brand */
    --accent:        #667eea;
    --accent-dark:   #4a5fd4;
    --accent-light:  #8b9bf7;
    --accent-dim:    rgba(102, 126, 234, 0.10);
    --accent-glow:   rgba(102, 126, 234, 0.20);

    /* Gold for badges */
    --gold:          #b8860b;
    --gold-bg:       #fdf8ec;
    --gold-border:   #e6d48a;

    /* Green for guarantee */
    --green:         #1a7f4e;
    --green-bg:      #f0faf5;
    --green-border:  #a8ddc3;

    /* Text */
    --text-heading:  #1a202c;
    --text-body:     #1a202c;
    --text-mid:      #2d3748;
    --text-muted:    #4a5568;
    --text-faint:    #718096;

    /* Tiers section uses a dark panel to create visual contrast */
    --tiers-bg:      #1a1e38;
    --tiers-card:    #242848;
    --tiers-border:  rgba(102, 126, 234, 0.2);
    --tiers-featured:#2a2f5a;
    --tiers-text:    #e8eaf8;
    --tiers-muted:   #9fa8c8;
    --tiers-faint:   #6870a0;

    --radius-sm:     6px;
    --radius-md:     10px;
    --radius-lg:     16px;
    --shadow-sm:     0 1px 4px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.04);
    --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-card:   0 2px 8px rgba(102,126,234,0.08), 0 0 0 1px var(--border);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 1.125rem;
    -webkit-font-smoothing: antialiased;
}

/* --- LAYOUT --- */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px;  margin: 0 auto; padding: 0 24px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h1 em { font-style: italic; color: var(--accent); }

h2, .section-heading {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    margin-bottom: 20px;
}

h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4 { font-size: 1rem;   margin-bottom: 8px; }

.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.body-lg {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); }

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
}

/* =============================================
   HERO — dark panel for visual punch at top
   ============================================= */
.hero {
    background:
        radial-gradient(ellipse 90% 70% at 50% -5%, rgba(102,126,234,0.22) 0%, transparent 65%),
        #12163a;
    padding: 80px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(102,126,234,0.04) 80px, rgba(102,126,234,0.04) 81px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(102,126,234,0.04) 80px, rgba(102,126,234,0.04) 81px);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.logo-wrap { margin-bottom: 44px; }
.logo-img  { width: 80px; height: auto; }

.badge {
    display: inline-block;
    background: rgba(232, 200, 80, 0.12);
    border: 1px solid rgba(232, 200, 80, 0.35);
    color: #e8c850;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 36px;
}

.hero h1 { color: #f0f2ff; margin-bottom: 24px; }
.hero h1 em { color: #a0b0ff; }

.hero-sub {
    font-size: 1.2rem;
    color: rgba(200, 210, 240, 0.8);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* --- COUNTDOWN --- */
.countdown-wrap   { margin-bottom: 48px; }
.countdown-label  {
    font-size: 1rem;
    color: rgba(160, 176, 220, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 76px;
}

.countdown-num {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3rem;
    color: #ffffff;
    line-height: 1;
    display: block;
    min-width: 2ch;
    text-align: center;
}

.countdown-word {
    font-size: 1rem;
    color: rgba(160,176,220,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.countdown-sep {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.4rem;
    color: rgba(100, 120, 200, 0.4);
    padding-bottom: 18px;
    line-height: 1;
}

.countdown-sm .countdown-num  { font-size: 2rem; }
.countdown-sm .countdown-unit { min-width: 56px; }

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section {
    padding: 88px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.video-section .section-eyebrow,
.video-section .section-heading { text-align: center; }
.video-section .section-heading  { margin-bottom: 36px; }

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-mid);
    box-shadow: var(--shadow-md);
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section {
    padding: 88px 0;
    background: var(--bg-off);
    border-bottom: 1px solid var(--border);
}

.problem-section .section-heading { margin-bottom: 44px; }

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 52px;
}

.problem-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.problem-icon {
    font-size: 1.4rem;
    color: var(--text-faint);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
    margin-top: 2px;
}

.problem-card p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
}

.pull-quote {
    border-left: 3px solid var(--accent);
    padding: 20px 0 20px 28px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    color: var(--text-heading);
    line-height: 1.5;
    font-style: italic;
}
.pull-quote cite {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-muted);
    margin-top: 10px;
}

/* =============================================
   SOLUTION SECTION
   ============================================= */
.solution-section {
    padding: 88px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.solution-section .section-heading { margin-bottom: 28px; }

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 52px 0;
}

.track-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.track-card:hover {
    border-color: var(--accent-light);
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-2px);
}

.track-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: start;
    gap: 14px;
}
.track-card-wide h3 { margin-bottom: 0; }
.track-card-wide .track-num { grid-row: 1 / 3; margin-top: 2px; }
.track-card-wide p { grid-column: 3; grid-row: 2; }

.track-num {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 8px;
}

.track-card h3 { color: var(--text-heading); font-size: 1.1rem; margin-bottom: 8px; }
.track-card p  { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }

.optional-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 100px;
    vertical-align: middle;
    margin-left: 6px;
}

/* How it works */
.how-it-works {
    background: var(--bg-tint);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 44px;
}

.how-it-works h3 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-heading);
    font-size: 1.35rem;
    margin-bottom: 28px;
}

.hiw-items { display: grid; gap: 24px; }

.hiw-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.hiw-num {
    background: var(--accent-dim);
    border: 1.5px solid var(--accent-light);
    color: var(--accent-dark);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.hiw-item strong { display: block; color: var(--text-heading); font-weight: 600; margin-bottom: 3px; }
.hiw-item p      { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }

.curriculum-cta {
    text-align: center;
    padding: 28px;
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.curriculum-cta p { color: var(--text-muted); margin-bottom: 14px; }

/* =============================================
   METHOD SECTION
   ============================================= */
.method-section {
    padding: 88px 0;
    background: var(--bg-off);
    border-bottom: 1px solid var(--border);
}

.method-section .section-heading { margin-bottom: 28px; }

.method-layers {
    margin: 44px 0 0;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.method-layer {
    display: grid;
    grid-template-columns: 96px 1fr;
    border-bottom: 1px solid var(--border);
}
.method-layer:last-child { border-bottom: none; }

.layer-num {
    background: var(--bg-subtle);
    padding: 28px 16px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid var(--border);
}

.layer-content {
    padding: 28px 32px;
    background: var(--bg-white);
}

.layer-content h4 { color: var(--text-heading); font-size: 1.05rem; margin-bottom: 6px; }
.layer-content p  { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }

/* =============================================
   TIERS — dark panel for maximum contrast/focus
   ============================================= */
.tiers-section {
    padding: 88px 0;
    background: var(--tiers-bg);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tiers-section .section-eyebrow { text-align: center; color: #8b9bf7; }
.tiers-section .section-heading { text-align: center; color: #e8eaf8; margin-bottom: 14px; }

.tiers-sub {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 56px;
    color: var(--tiers-muted);
    font-size: 1.025rem;
    line-height: 1.7;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: start;
}

.tier-card {
    background: var(--tiers-card);
    border: 1px solid var(--tiers-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}
.tier-card:hover {
    border-color: rgba(139,155,247,0.5);
    transform: translateY(-3px);
}

.tier-card-featured {
    border-color: #667eea;
    background: var(--tiers-featured);
    box-shadow: 0 0 0 1px #667eea, 0 8px 32px rgba(102,126,234,0.25);
    transform: scale(1.02);
}
.tier-card-featured:hover {
    transform: scale(1.02) translateY(-3px);
    border-color: var(--accent-light);
}

.tier-badge {
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    text-align: center;
}

.tier-header {
    padding: 22px 18px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tier-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c8d0f0;
    margin-bottom: 5px;
}

.tier-price {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.tier-price-sub { font-size: 1rem; color: #c8d0f0; }

.tier-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tier-features {
    list-style: none;
    margin-bottom: 14px;
    flex: 1;
}

.tier-features li {
    font-size: 1rem;
    color: #e8eaf8;
    padding: 7px 0 7px 28px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    list-style: none;
}
.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4cd87a;
    font-weight: 700;
    font-size: 1rem;
}
.tier-features li:first-child { padding-top: 0; }
.tier-features li:last-child  { border-bottom: none; }

.tier-value {
    font-size: 1rem;
    color: #c8d0f0;
    line-height: 1.5;
    margin-bottom: 14px;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
}

.btn-tier {
    display: block;
    background: #28a745;
    border: none;
    color: #fff;
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 10px;
}
.btn-tier:hover {
    background: #218838;
    color: #fff;
    transform: translateY(-1px);
}

.btn-tier-featured {
    background: #28a745;
    border: none;
    color: #fff;
}
.btn-tier-featured:hover {
    background: #218838;
    color: #fff;
}

.tier-note {
    font-size: 1rem;
    color: #c8d0f0;
    line-height: 1.5;
    font-style: italic;
}

.tiers-footnote {
    text-align: center;
    margin-top: 36px;
    color: var(--tiers-muted);
    font-size: 1rem;
}

/* =============================================
   TIMELINE SECTION
   ============================================= */
.timeline-section {
    padding: 88px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.timeline-section .section-heading { margin-bottom: 52px; }

.timeline {
    position: relative;
    margin-bottom: 56px;
    padding-left: 20px;
    border-left: 2px solid var(--border-mid);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 0 0 36px 28px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--bg-white);
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 2px;
}

.timeline-content strong { display: block; color: var(--text-heading); font-weight: 600; margin-bottom: 4px; }
.timeline-content p { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }

/* Guarantee */
.guarantee-box {
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.guarantee-icon { font-size: 2rem; color: var(--green); margin-bottom: 16px; }

.guarantee-box h3 {
    color: var(--text-heading);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.guarantee-box p {
    color: var(--text-mid);
    margin-bottom: 12px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.guarantee-note {
    font-size: 1rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 88px 0;
    background: var(--bg-off);
    border-bottom: 1px solid var(--border);
}

.about-section .section-heading { margin-bottom: 40px; }

.about-content {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 56px;
    align-items: start;
}

.about-text p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-sig { color: var(--text-muted) !important; font-style: italic; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.stat {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-num {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.7rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: 88px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.faq-section .section-heading { margin-bottom: 44px; }

.faq-list {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.faq-question {
    width: 100%;
    background: var(--bg-white);
    border: none;
    padding: 20px 24px;
    text-align: left;
    color: var(--text-heading);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
    line-height: 1.5;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
    font-family: 'DM Sans', sans-serif;
}

.faq-question.active::after { transform: rotate(45deg); }
.faq-question:hover { background: var(--bg-tint); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 500px; }

.faq-answer p {
    padding: 4px 24px 24px;
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.75;
    background: var(--bg-off);
    border-top: 1px solid var(--border);
}

.faq-answer p a { color: var(--accent); }

/* =============================================
   SERVICE SECTIONS (FEEDBACK + MENTORING)
   ============================================= */
.service-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}
.service-section-alt {
    background: var(--bg-off);
}
.service-section .section-heading { margin-bottom: 24px; }

.service-compare {
    margin: 36px 0 24px;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
}
.service-compare-row:last-child { border-bottom: none; }

.service-compare-header {
    background: var(--bg-subtle);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
}

.service-compare-row > div {
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--text-body);
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.service-compare-row > div:last-child { border-right: none; }

.service-compare-highlight {
    background: rgba(40,167,69,0.06);
    border-top: 2px solid #28a745;
}
.service-compare-highlight > div {
    font-weight: 600;
    color: var(--text-heading);
}

.saving-tag {
    display: inline-block;
    background: #28a745;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
}

.service-note {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}

.feedback-sample {
    margin: 36px 0 24px;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.feedback-sample-label {
    background: var(--bg-subtle);
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    margin: 0;
}
.feedback-sample-img {
    width: 100%;
    display: block;
}
.feedback-sample-caption {
    padding: 10px 18px;
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* =============================================
   SAVINGS SECTION
   ============================================= */
.savings-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}
.savings-section .section-heading { margin-bottom: 40px; }

.savings-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.savings-col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-mid);
}

.savings-col-us h3 {
    color: #28a745;
    border-bottom-color: #28a745;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}
.savings-item:last-child { border-bottom: none; }
.savings-item span { color: var(--text-mid); font-size: 1rem; }
.savings-item strong { color: var(--text-heading); font-size: 1.05rem; white-space: nowrap; }

.savings-item-note {
    display: block;
    border-bottom: 1px solid var(--border);
    padding: 8px 0 12px;
}
.savings-item-note span {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.savings-item-tier {
    display: block;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
}
.savings-item-tier:last-child { margin-bottom: 0; }
.savings-item-tier.savings-item-featured {
    border-color: #28a745;
    background: rgba(40,167,69,0.04);
}

.savings-tier-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.savings-tier-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #28a745;
    line-height: 1.1;
    margin-bottom: 4px;
}
.savings-tier-saving {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.savings-tier-saving strong { color: var(--text-heading); font-size: 1rem; }

.savings-footnote {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-style: italic;
}

@media (max-width: 768px) {
    .savings-compare { grid-template-columns: 1fr; }
    .service-compare-row { grid-template-columns: 1fr; }
    .service-compare-row > div { border-right: none; border-bottom: 1px solid var(--border); }
    .service-compare-row > div:last-child { border-bottom: none; }
    .service-compare-header { display: none; }
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-section {
    padding: 88px 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 120%, rgba(102,126,234,0.14) 0%, transparent 70%),
        #12163a;
    text-align: center;
}

.final-cta-section h2 {
    color: #f0f2ff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.final-sub {
    color: rgba(180, 192, 230, 0.75);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.final-countdown-wrap { margin-bottom: 48px; }

.final-tiers-quick {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto 36px;
}

.final-tier-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    gap: 12px;
}
.final-tier-btn:hover {
    border-color: rgba(40,167,69,0.7);
    background: rgba(40,167,69,0.12);
    transform: translateX(3px);
}

.final-tier-btn-featured {
    border-color: #28a745;
    background: rgba(40,167,69,0.18);
    box-shadow: 0 0 0 1px rgba(40,167,69,0.4);
}

.ftb-badge {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #28a745;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

.ftb-label { font-size: 1rem; color: rgba(220,228,248,0.95); text-align: left; flex: 1; }
.ftb-price { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 800; font-size: 1.5rem; color: #ffffff; flex-shrink: 0; }

.final-questions { color: rgba(160,176,220,0.65); font-size: 1rem; }
.final-questions a { color: rgba(160,176,220,0.85); }
.final-questions a:hover { color: #fff; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    padding: 44px 0;
    background: #0d1128;
    text-align: center;
}

.footer-logo      { margin-bottom: 18px; }
.footer-logo-img  { width: 44px; height: auto; opacity: 0.55; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 18px;
}
.footer-links a {
    color: rgba(160,176,220,0.6);
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: rgba(200,212,240,0.9); }

.footer-copy { color: rgba(120,136,180,0.45); font-size: 1rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .tiers-grid { grid-template-columns: repeat(3, 1fr); }
    .tier-card-featured { transform: none; }
    .tier-card-featured:hover { transform: translateY(-3px); }
}

@media (max-width: 900px) {
    .tracks-grid { grid-template-columns: 1fr 1fr; }
    .track-card-wide {
        grid-column: 1 / -1;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }
    .track-card-wide h3  { grid-column: 2; }
    .track-card-wide p   { grid-column: 2; grid-row: 2; }
    .about-content       { grid-template-columns: 1fr; }
    .about-stats         { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero                { padding: 56px 20px 72px; }
    .countdown-unit      { min-width: 54px; }
    .countdown-num       { font-size: 2.2rem; }
    .problem-grid        { grid-template-columns: 1fr; }
    .tracks-grid         { grid-template-columns: 1fr; }
    .track-card-wide     { grid-template-columns: auto 1fr; }
    .tiers-grid          { grid-template-columns: 1fr; }
    .timeline-item       { grid-template-columns: 1fr; gap: 4px; }
    .about-stats         { grid-template-columns: repeat(2, 1fr); }
    .how-it-works        { padding: 24px 18px; }
    .method-layer        { grid-template-columns: 76px 1fr; }
    .guarantee-box       { padding: 28px 20px; }
    .final-cta-section h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .container, .container-narrow { padding: 0 16px; }
    .badge           { font-size: 1rem; padding: 6px 14px; }
    .hero-sub        { font-size: 1rem; }
    .countdown-num   { font-size: 1.7rem; }
    .countdown-unit  { min-width: 42px; }
    .countdown-sep   { font-size: 1.7rem; }
    .layer-content   { padding: 20px 16px; }
    .tiers-sub       { font-size: 1rem; }
}
