/* breadcrumb strip */
.breadcrumb-strip {
    background: var(--black-2);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-strip .bc-link {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-strip .bc-link:hover {
    color: var(--amber);
}

.breadcrumb-strip .bc-sep {
    color: var(--gray-700);
    margin: 0 8px;
    font-size: 0.7rem;
}

.breadcrumb-strip .bc-current {
    font-size: 0.75rem;
    color: var(--amber);
    font-weight: 600;
}

/* ══════════════════════════════
       HERO — SPLIT ASYMMETRIC
    ══════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--black);
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: stretch;
}

/* diagonal split */
.hero-left {
    position: relative;
    z-index: 2;
    background: var(--black);
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    padding: 30px;
}

.hero-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background: linear-gradient(160deg, #1A0B00 0%, #2D1600 60%, #1A0B00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-right-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245, 166, 35, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(231, 12, 12, 0.1) 0%, transparent 60%);
}

/* floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--amber);
    top: -60px;
    right: -60px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--red);
    bottom: 60px;
    right: 120px;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--amber-lt);
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* hero content */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.35);
    color: var(--amber);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -1px;
}

.hero-title em {
    color: var(--amber);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 440px;
    margin-top: 1.5rem;
}

.hero-cta-row {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-amber {
    background: var(--amber);
    color: var(--black);
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    letter-spacing: 0.2px;
    transition: var(--transition);
    box-shadow: var(--shadow-amber);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-amber:hover {
    background: var(--amber-lt);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.4);
}

.btn-ghost-amber {
    background: transparent;
    color: var(--amber);
    border: 1.5px solid rgba(245, 166, 35, 0.4);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    letter-spacing: 0.2px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ghost-amber:hover {
    border-color: var(--amber);
    background: rgba(245, 166, 35, 0.08);
    color: var(--amber);
}

/* hero visual cards */
.hero-visual-stack {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
}

.hv-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    margin: 1rem 0;
}

.hv-card.gold-border {
    border-color: rgba(245, 166, 35, 0.4);
}

.hv-card-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.6rem;
}

.hv-amount {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--amber);
    line-height: 1;
}

.hv-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.hv-progress {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-top: 1rem;
}

.hv-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--amber-dk), var(--amber), var(--amber-lt));
}

.hv-milestone-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hv-milestone {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 0.7rem 0.8rem;
    text-align: center;
}

.hv-milestone-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.hv-milestone-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
}

/* floating pill */
.float-pill {
    position: absolute;
    background: var(--amber);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: var(--shadow-amber);
    animation: pillFloat 3s ease-in-out infinite;
}

.pill-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.pill-2 {
    bottom: 80px;
    left: 10px;
    animation-delay: 1.8s;
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

@keyframes pillFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* hero stats bottom bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--amber);
    display: flex;
}

.hsb-item {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.hsb-item:last-child {
    border-right: none;
}

.hsb-val {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    line-height: 1;
}

.hsb-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════
       SECTION SHARED
    ══════════════════════════════ */
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--black);
    letter-spacing: -0.5px;
}

.section-heading.on-dark {
    color: var(--white);
}

.section-heading em {
    color: var(--amber);
    font-style: italic;
}

.section-body {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ══════════════════════════════
       MILESTONE JOURNEY  (Organic timeline)
    ══════════════════════════════ */
.journey-section {
    background: var(--cream);
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.timeline {
    position: relative;
    margin-top: 4rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--amber) 0%, var(--amber-dk) 50%, var(--red) 100%);
    transform: translateX(-50%);
}

.tl-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.tl-item:nth-child(odd) {
    flex-direction: row;
}

.tl-item:nth-child(even) {
    flex-direction: row-reverse;
}

.tl-content {
    width: calc(50% - 50px);
    background: var(--white);
    border-radius: 14px;
    padding: 1.8rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.tl-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.3);
}

.tl-item:nth-child(odd) .tl-content {
    margin-right: 50px;
}

.tl-item:nth-child(even) .tl-content {
    margin-left: 50px;
}

.tl-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.15), var(--shadow-amber);
    flex-shrink: 0;
}

.tl-age {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.tl-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.tl-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.tl-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.8rem;
    background: var(--cream);
    border: 1px solid var(--cream-dk);
    color: var(--amber-dk);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

/* ══════════════════════════════
       WHY SECTION — Alternating dark/light cards
    ══════════════════════════════ */
.why-section {
    background: var(--black);
    padding: 110px 0;
}

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

.why-cell {
    background: var(--black-2);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-dk), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.why-cell:hover {
    background: #1F1500;
}

.why-cell:hover::after {
    transform: scaleX(1);
}

.why-cell:hover .why-icon {
    background: rgba(245, 166, 35, 0.18);
    color: var(--amber);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.why-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.why-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.why-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    user-select: none;
}

/* ══════════════════════════════
       PLANS SECTION
    ══════════════════════════════ */
.plans-section {
    background: var(--cream);
    padding: 110px 0;
}

.plan-card-edu {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-200);
    padding: 2.2rem 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.plan-card-edu.highlighted {
    background: var(--black);
    border-color: var(--amber);
    box-shadow: var(--shadow-amber);
}

.plan-card-edu:not(.highlighted):hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.4);
}

.plan-stamp {
    position: fixed;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: var(--black);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-tier {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.plan-card-edu.highlighted .plan-tier {
    color: rgba(255, 255, 255, 0.4);
}

.plan-price-edu {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--black);
    line-height: 1;
    margin: 0.8rem 0 0.2rem;
}

.plan-card-edu.highlighted .plan-price-edu {
    color: var(--amber);
}

.plan-price-edu sup {
    font-size: 1rem;
    font-family: var(--font-body);
    vertical-align: super;
}

.plan-price-edu span {
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--gray-500);
}

.plan-card-edu.highlighted .plan-price-edu span {
    color: rgba(255, 255, 255, 0.3);
}

.plan-cover {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.plan-card-edu.highlighted .plan-cover {
    color: rgba(255, 255, 255, 0.45);
}

.edu-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.edu-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--gray-700);
    margin-bottom: 0.7rem;
}

.plan-card-edu.highlighted .edu-features li {
    color: rgba(255, 255, 255, 0.75);
}

.edu-features li .fi {
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 1px;
}

.edu-features li .fi-muted {
    color: var(--gray-300);
}

.plan-card-edu.highlighted .edu-features li .fi-muted {
    color: rgba(255, 255, 255, 0.15);
}

.btn-edu-amber {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--amber);
    color: var(--black);
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.85rem;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-amber);
}

.btn-edu-amber:hover {
    background: var(--amber-lt);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-edu-outline {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--gray-200);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.85rem;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}

.btn-edu-outline:hover {
    border-color: var(--amber);
    color: var(--amber-dk);
}

/* ══════════════════════════════
       GROWTH VISUALIZER
    ══════════════════════════════ */
.growth-section {
    background: var(--cream-dk);
    padding: 110px 0;
}

.growth-chart {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.chart-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cbl {
    font-size: 0.78rem;
    color: var(--gray-500);
    width: 80px;
    flex-shrink: 0;
    text-align: right;
}

.cb-outer {
    flex: 1;
    height: 36px;
    background: var(--gray-100);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.cb-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.cb-fill.animate {
    transform: scaleX(1);
}

.cb-fill.g1 {
    background: linear-gradient(90deg, var(--amber-lt), var(--amber));
    width: 20%;
}

.cb-fill.g2 {
    background: linear-gradient(90deg, var(--amber), var(--amber-dk));
    width: 35%;
}

.cb-fill.g3 {
    background: linear-gradient(90deg, var(--amber-dk), #9B6000);
    width: 52%;
}

.cb-fill.g4 {
    background: linear-gradient(90deg, #9B6000, var(--red-dark));
    width: 68%;
}

.cb-fill.g5 {
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    width: 85%;
}

.cb-fill.g6 {
    background: linear-gradient(90deg, var(--red), #FF4444);
    width: 100%;
}

.cbv {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--black);
    width: 50px;
    flex-shrink: 0;
}

/* goals grid */
.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.goal-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    padding: 1.4rem;
    transition: var(--transition);
}

.goal-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(245, 166, 35, 0.3);
}

.goal-icon {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.goal-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black);
}

.goal-amt {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--amber-dk);
    margin-top: 2px;
}

.goal-yr {
    font-size: 0.72rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ══════════════════════════════
       TESTIMONIALS
    ══════════════════════════════ */
.testi-section {
    background: var(--black);
    padding: 110px 0;
}

.tcard {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.tcard:hover {
    border-color: rgba(245, 166, 35, 0.25);
    box-shadow: var(--shadow-amber);
}

.tcard-stars {
    color: var(--amber);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.tcard-quote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--black);
    background: var(--amber);
    flex-shrink: 0;
}

.tcard-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
}

.tcard-sub {
    font-size: 0.72rem;
    color: var(--gray-500);
}

/* ══════════════════════════════
       CALCULATOR
    ══════════════════════════════ */
.calc-section {
    background: var(--cream);
    padding: 110px 0;
}

.edu-calc {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ec-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.ec-sub {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.ec-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.ec-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    width: 100%;
    font-family: var(--font-body);
    transition: var(--transition);
}

.ec-input:focus {
    outline: none;
    border-color: var(--amber);
    background: rgba(245, 166, 35, 0.04);
}

.ec-range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.ec-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--amber);
    cursor: pointer;
    box-shadow: var(--shadow-amber);
}

.ec-result {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(245, 166, 35, 0.05));
    border: 1px solid rgba(245, 166, 35, 0.25);
    border-radius: 10px;
    padding: 1.8rem;
    text-align: center;
    margin-top: 1.5rem;
}

.ec-result-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ec-result-val {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--amber);
    line-height: 1;
}

.ec-result-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.3rem;
}

.ec-result-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.ec-result-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
}

.ec-ri-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ec-ri-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
}

/* ══════════════════════════════
       FAQ
    ══════════════════════════════ */
.faq-section {
    background: var(--cream-dk);
    padding: 110px 0;
}

.accordion-item {
    border: 1px solid var(--gray-200) !important;
    border-radius: 8px !important;
    margin-bottom: 0.8rem !important;
    overflow: hidden;
}

.accordion-button {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--black) !important;
    background: var(--white) !important;
    box-shadow: none !important;
    padding: 1.2rem 1.5rem;
    font-family: var(--font-body);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F5A623'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed) {
    color: var(--amber-dk) !important;
}

.accordion-body {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.75;
    background: var(--white);
}

/* ══════════════════════════════
       CTA BAND
    ══════════════════════════════ */
.cta-band {
    background: var(--black);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 80% 50%, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
}

.cta-band-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    line-height: 1.1;
}

.cta-band-title em {
    color: var(--amber);
    font-style: italic;
}

.cta-band-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 440px;
    margin-top: 1rem;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 991.98px) {
    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        width: 100%;
        clip-path: none;
        padding: 70px 0 120px;
    }

    .hero-right {
        position: static;
        width: 100%;
        min-height: 340px;
    }

    .hero-stats-bar {
        position: static;
    }

    .timeline::before {
        left: 24px;
    }

    .tl-item,
    .tl-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .tl-dot {
        left: 0px;
        transform: none;
    }

    .tl-item:nth-child(odd) .tl-content,
    .tl-item:nth-child(even) .tl-content {
        width: 100%;
        margin: 0;
    }

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

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

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

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

    .ec-result-row {
        flex-direction: column;
    }

    .hsb-item {
        padding: 0.7rem 0.3rem;
    }

    .hsb-val {
        font-size: 1.1rem;
    }
}