:root {
    --primary: #f85621;
    --primary-hover: #fa6c3d;
    --bg-color: #0d0f14;
    --card-bg: #14161f;
    --border-color: #272a36;
    --text-light: #9ba3b8;
    --white: #ffffff;
    --gray-bg: #f7f8f9;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 60px;
}

.top-bar {
    background: linear-gradient(90deg, #c72111 0%, #dd4a13 100%);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container-sm {
    max-width: 700px;
    padding: 80px 20px;
    margin: 0 auto;
}

.relative-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 60px;
}

/* Background Gradients */
.hero-section {
    background-image: radial-gradient(circle at 50% 10%, #1c2235 0%, #0d0f14 50%);
}

.section-white {
    background-color: #ffffff;
    color: #111;
}

.section-gray {
    background-color: var(--gray-bg);
    color: #111;
}

.section-dark {
    background-color: #0b0c11;
    background-image: radial-gradient(circle at 50% 0%, #1a1518 0%, #0b0c11 50%);
}

/* Badges */
.badges-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.badge-dark {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.pulse-icon {
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pulse-icon::after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 50%;
}

.badge-red {
    background-color: rgba(248, 86, 33, 0.08);
    border: 1px solid rgba(248, 86, 33, 0.3);
    color: var(--primary);
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.red-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 8px var(--primary);
}

.badge-dark-orange {
    background-color: #1a0f0c;
    border: 1px solid #452115;
    color: var(--primary);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
}

/* Headings */
.hero-heading {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-heading .highlight {
    color: var(--primary);
}

.hero-subheading {
    font-size: 22px;
    color: var(--text-light);
    text-align: center;
    font-weight: 400;
    margin-bottom: 48px;
}

.hero-subheading .underline {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.section-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-heading.dark-text {
    color: #111;
}

.section-heading.light-text {
    color: #ffffff;
}

.section-heading .highlight {
    color: var(--primary);
}

.section-divider {
    width: 48px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
    margin: 0 auto 48px;
}

.section-subheading {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    font-weight: 400;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Coach Card */
.coach-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 800px;
    background-color: var(--card-bg);
    border: 1px solid rgba(248, 86, 33, 0.35);
    /* Subtle CRO orange glow */
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(248, 86, 33, 0.12), 0 20px 40px rgba(0, 0, 0, 0.5);
    /* Glowing effect */
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coach-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(248, 86, 33, 0.18), 0 25px 45px rgba(0, 0, 0, 0.6);
}

.coach-img-col {
    flex: 1;
    position: relative;
    background-color: #1a1c27;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.coach-img-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.coach-img-badge {
    position: absolute;
    bottom: 24px;
    background-color: #0b0c11;
    border: 1px solid #bc3b1b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.coach-info-col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coach-label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.coach-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.coach-title {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
}

.divider {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 24px;
    width: 100%;
}

.stats-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stats-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.stat-text {
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-light);
}

.stat-text strong {
    color: var(--white);
    font-weight: 700;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    width: 100%;
    max-width: 600px;
    margin: 20px auto 0;
}

.info-card {
    background-color: #14161f;
    border: 1px solid #282b3a;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-value {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

/* Red/Green Boxes */
.red-box {
    background-color: #fffafa;
    border: 1px solid #ffdbdb;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.red-box-heading {
    color: #d93025;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.red-box-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.red-box-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 17px;
    font-weight: 500;
    color: #111;
    line-height: 1.5;
}

.icon-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-circle-red {
    border: 1.5px solid #d93025;
    color: #d93025;
}

.green-box {
    background-color: #f2fcf6;
    border: 1px solid #a8e5c1;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.green-box-heading {
    color: #0f9d58;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.green-box-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.green-box-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 17px;
    font-weight: 500;
    color: #111;
    line-height: 1.5;
}

.icon-circle-green {
    border: 1.5px solid #0f9d58;
    color: #0f9d58;
}

/* Fail Cards */
.fail-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@keyframes failCardGlow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 0 0 0 rgba(217, 48, 37, 0.15);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 0 0 4px rgba(217, 48, 37, 0.08);
    }
}

.fail-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-left: 4px solid #d93025;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    animation: failCardGlow 3s ease-in-out infinite;
}

.fail-card:nth-child(1) { animation-delay: 0s; }
.fail-card:nth-child(2) { animation-delay: 0.3s; }
.fail-card:nth-child(3) { animation-delay: 0.6s; }
.fail-card:nth-child(4) { animation-delay: 0.9s; }
.fail-card:nth-child(5) { animation-delay: 1.2s; }

.fail-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.fail-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.fail-content p {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

/* Outcomes Cards */
.outcomes-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.outcome-card {
    background-color: #14161f;
    border: 1px solid #282b3a;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.outcome-icon-wrapper {
    width: 48px;
    height: 48px;
    border: 1px solid #3c241c;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e1412;
    margin-bottom: 24px;
}

.outcome-number {
    color: #8c3b28;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.outcome-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.outcome-desc {
    font-size: 15px;
    color: #8c90a1;
    line-height: 1.5;
}

.badge-mini-orange {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #f85621;
    color: #fff;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
}

/* Buttons */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@keyframes glossySweep {
    0% {
        transform: translateX(-100%) skewX(-12deg);
    }
    100% {
        transform: translateX(200%) skewX(-12deg);
    }
}

@keyframes slideArrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(0);
    }
}

.btn-primary {
    width: 100%;
    background: linear-gradient(90deg, #f8612f 0%, #e24314 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 18px 24px;
    font-size: 20px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(226, 67, 20, 0.4);
    transition: transform 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 45%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.25) 55%,
        transparent 100%
    );
    animation: glossySweep 2.5s ease-in-out infinite;
    pointer-events: none;
}

.btn-primary svg {
    animation: slideArrow 1.5s infinite ease-in-out;
}

.btn-primary:hover {
    animation-play-state: paused;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(226, 67, 20, 0.6);
    background: linear-gradient(90deg, #fa7e4a 0%, #fa5524 100%);
}

a.btn-primary {
    text-decoration: none;
    color: inherit;
}

.btn-secondary {
    width: 100%;
    max-width: 420px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #7a2d21;
    color: var(--text-light);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

/* Sticky Bottom Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 60px;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-timer-col {
    background-color: #000;
    color: var(--white);
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.timer-label {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.timer-value {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
    display: flex;
    align-items: baseline;
}

.timer-unit {
    font-size: 10px;
    color: #888;
    margin: 0 4px 0 1px;
}

.timer-seats {
    font-size: 10px;
    color: #888;
}

.sticky-action-col {
    flex-grow: 1;
    background-color: #fab216;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background-color 0.2s;
}

.strike-price {
    text-decoration: line-through;
    opacity: 0.6;
    margin: 0 6px 0 12px;
    font-weight: 600;
}

.final-price {
    font-weight: 800;
}

/* ========================================= */
/* NEW SECTIONS: CURRICULUM, JOURNEY, MEET */
/* ========================================= */

.timeline {
    position: relative;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background-color: #ffe6dd;
    z-index: 0;
}

.timeline-item {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.timeline-circle {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border: 2px solid #f85621;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    color: #f85621;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px #fff, 0 8px 16px rgba(248, 86, 33, 0.15);
}

.timeline-item:nth-child(2) .timeline-circle {
    background: linear-gradient(135deg, #f8612f 0%, #e24314 100%);
    color: #fff;
    border-color: #fff;
}

.timeline-card {
    background-color: #fff;
    border: 2px solid rgba(248, 86, 33, 0.2);
    border-radius: 16px;
    padding: 32px;
    flex-grow: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(248, 86, 33, 0.08);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-card:hover {
    border-color: rgba(248, 86, 33, 0.4);
    box-shadow: 0 14px 48px rgba(248, 86, 33, 0.12), 0 0 0 1px rgba(248, 86, 33, 0.15);
}

.t-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.bg-pink {
    background-color: #ffefeb;
}

.bg-orange {
    background-color: #ffe4d6;
}

.t-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.badge-pink {
    background-color: #fff0eb;
    color: #f85621;
}

.badge-orange.bg-solid-orange {
    background-color: #f85621;
    color: #fff;
}

.t-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.t-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.t-feat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.feather-red {
    background-color: #fffafa;
    border: 1px solid #ffebea;
    color: #d93025;
}

.feather-orange {
    border: 1px solid #ffe6dd;
    color: #f85621;
}

/* Journey Section */
.badge-mini-pink {
    background-color: #fff0eb;
    color: #f85621;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.outline-pink {
    border: 1px solid #ffdbcc;
}

.journey-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.journey-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.glow-blob {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(248, 86, 33, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.j-time {
    color: #f85621;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.j-title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.j-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Meet Kishan Section */
.meet-card {
    background-color: #1a1c27;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.meet-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 24px;
    padding: 3px;
    background: linear-gradient(135deg, #f8612f 0%, #e24314 100%);
    box-shadow: 0 0 30px rgba(248, 86, 33, 0.3);
}

.meet-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1a1c27;
}

.meet-heading {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.meet-subtitle {
    color: #f85621;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.meet-desc {
    font-size: 16px;
    color: #9ba3b8;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 32px;
}

.meet-divider {
    width: 100%;
    height: 1px;
    background-color: #272a36;
    margin-bottom: 32px;
}

.meet-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 500px;
}

.m-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m-stat-val {
    color: #f85621;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.m-stat-label {
    color: #9ba3b8;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* ========================================= */
/* STRICT 400x800 RESPONSIVE EXACTNESS */
/* ========================================= */

@media (max-width: 768px) {
    .container {
        padding: 40px 16px;
    }

    .container-sm {
        padding: 60px 16px;
    }

    .hero-heading {
        font-size: 32px;
        line-height: 1.15;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subheading {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .section-heading {
        font-size: 26px;
    }

    .section-subheading {
        font-size: 16px;
    }

    .coach-card {
        flex-direction: row;
        align-items: stretch;
        transform: scale(1.03);
        margin: 10px auto 24px;
    }

    .coach-info-col {
        padding: 14px !important;
        flex: 1.1;
        justify-content: center;
    }

    .coach-img-col {
        flex: 1.6;
    }

    .coach-img-col img {
        max-height: 220px;
        object-fit: cover;
        transform: translateY(-10px);
    }

    .coach-label {
        font-size: 9px;
        margin-bottom: 3px;
        line-height: 1.1;
    }

    .coach-name {
        font-size: 18px;
        margin-bottom: 4px;
        line-height: 1.15;
    }

    .coach-title {
        font-size: 11px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .divider {
        margin-bottom: 8px;
    }

    .stat-text {
        font-size: 11px;
        line-height: 1.4;
    }

    .stats-list {
        gap: 6px;
    }

    .check-svg {
        width: 12px;
        height: 12px;
        margin-top: 0;
    }

    .coach-img-badge {
        font-size: 9px;
        padding: 6px 8px;
        bottom: 16px;
        white-space: normal;
        text-align: center;
        max-width: 95%;
        border-width: 2px;
        line-height: 1.2;
    }

    /* Info grid adjustment */
    .info-card {
        padding: 12px;
        gap: 8px;
    }

    .info-icon {
        width: 36px;
        height: 36px;
    }

    .info-icon svg {
        width: 18px;
        height: 18px;
    }

    .info-label {
        font-size: 9px;
    }

    .info-value {
        font-size: 13px;
    }

    /* Section Boxes */
    .red-box,
    .green-box {
        padding: 24px 16px;
    }

    .red-box-heading,
    .green-box-heading {
        font-size: 20px;
    }

    .red-box-list li,
    .green-box-list li {
        font-size: 14px;
    }

    .fail-card {
        padding: 16px;
        gap: 12px;
    }

    .fail-content h4 {
        font-size: 16px;
    }

    .fail-content p {
        font-size: 13px;
    }

    .outcome-card {
        padding: 24px;
    }

    .outcome-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .outcome-title {
        font-size: 18px;
    }

    .outcome-desc {
        font-size: 14px;
    }

    /* New Sections Responsive Limits */
    .timeline::before {
        left: 19px;
    }

    .timeline-item {
        gap: 16px;
    }

    .timeline-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .timeline-card {
        padding: 24px 16px;
    }

    .t-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .t-title {
        font-size: 18px;
    }

    .t-desc {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .t-feat {
        font-size: 12px;
        padding: 8px 12px;
    }

    .journey-card {
        padding: 24px 16px;
    }

    .j-title {
        font-size: 18px;
    }

    .j-desc {
        font-size: 14px;
    }

    .meet-card {
        padding: 32px 16px;
    }

    .meet-img-wrap {
        width: 100px;
        height: 100px;
    }

    .meet-heading {
        font-size: 28px;
    }

    .meet-desc {
        font-size: 14px;
    }

    .m-stat-val {
        font-size: 24px;
    }

    .m-stat-label {
        font-size: 9px;
    }
}

/* ====== NEW SECTIONS EXTENSIONS ====== */

/* Stack Section */
.stack-section {
    padding-bottom: 40px;
}
.stack-section .container-sm {
    padding-bottom: 40px;
}

.stack-subtitle {
    margin-top: 10px;
    color: #f85621;
}

.stack-card {
    background-color: #12141c;
    border-radius: 24px;
    padding: 0;
    margin-top: 40px;
    border: 1px solid #1f2231;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.stack-header-pill {
    background: linear-gradient(90deg, #3f1a1d 0%, #30171a 100%);
    border: 1px solid #752926;
    color: #ffd6d6;
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 800;
    margin: 32px auto 0;
    border-radius: 30px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stack-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 24px 0 40px;
}

.stack-table {
    padding: 0 40px;
}

.stack-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px dashed #272a36;
}

.stack-row:first-child {
    border-top: none;
}

.s-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.s-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 1.5px solid #f85621;
    border-radius: 50%;
}

.s-icon svg {
    color: #f85621;
}

.s-price {
    color: #f85621;
    font-weight: 800;
    font-size: 18px;
}

.stack-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    border-top: 1px solid #272a36;
    margin-top: 16px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.s-total-price {
    color: #4b5166;
    text-decoration: line-through;
}

.stack-footer {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sf-text {
    color: #9ba3b8;
    font-size: 16px;
    margin-bottom: 8px;
}

.sf-price {
    color: #f85621;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(248, 86, 33, 0.3);
}

/* Bonus Section */
.bonus-section {
    background-color: #f8f9fb;
    padding-top: 48px !important;
}

.bonus-pill {
    border: none !important;
}

.bonus-card {
    background-color: #fff;
    border: 1px solid #eef0f5;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.bonus-icon {
    width: 48px;
    height: 48px;
    background-color: #fff0eb;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
}

.bonus-title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.bonus-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.bonus-value {
    color: #f85621;
    font-size: 14px;
    font-weight: 800;
}

/* Guarantee Group */
.guarantee-box {
    background: linear-gradient(180deg, #d38b1d 0%, #b86e11 100%);
    border-radius: 20px;
    text-align: center;
    padding-top: 40px;
    margin-top: 32px;
    box-shadow: 0 20px 40px rgba(184, 110, 17, 0.3);
}

.g-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    background-color: rgba(255, 255, 255, 0.1);
}

.g-title {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 32px;
}

.g-text-box {
    background-color: #fffaf0;
    border: 2px solid #edc682;
    border-radius: 20px;
    padding: 32px;
    font-size: 16px;
    color: #82470f;
    line-height: 1.6;
    font-weight: 500;
}

.g-text-box strong {
    color: #7f3900;
    font-weight: 800;
}

/* FAQ Section */
.faq-section .section-heading {
    margin-bottom: 32px;
}

.faq-box {
    background-color: #fff;
    border: 1px solid #e1e3eb;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 700;
    color: #111;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-box:hover {
    border-color: rgba(248, 86, 33, 0.3);
    box-shadow: 0 6px 20px rgba(248, 86, 33, 0.08);
}

.faq-item.active .faq-box {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(248, 86, 33, 0.12);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item + .faq-item {
    margin-top: 4px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
    color: #4b5166;
    font-size: 15px;
    line-height: 1.65;
    padding: 0 4px;
}

.faq-answer p {
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 220px;
    opacity: 1;
    margin-top: 12px;
    padding-left: 4px;
}

.faq-toggle {
    transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Confused Burger Section */
.burger-section {
    background-color: #0b0c11;
}

.b-heading {
    color: #d93025;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.b-main-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.b-desc {
    color: #9ba3b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.b-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.b-ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
}

.b-ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #f85621;
    border-radius: 50%;
    flex-shrink: 0;
}

.burger-box,
.sprint-box {
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

.burger-box {
    background-color: #14161f;
    border: 1px solid #272a36;
}

.sprint-box {
    background-color: #0a1711;
    border: 1px solid #105933;
}

.b-title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.b-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #9ba3b8;
}

.b-icon {
    font-size: 16px;
}

.sprint-box .b-list li {
    color: #e3ffe9;
}

.sprint-box .b-title {
    color: #fff;
}

.b-footer-text {
    text-align: center;
    color: #51586e;
    font-size: 13px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .stack-header-pill {
        font-size: 10px;
        padding: 8px 16px;
    }

    .stack-title {
        font-size: 24px;
    }

    .stack-table {
        padding: 0 20px;
    }

    .s-item {
        font-size: 14px;
        gap: 12px;
    }

    .s-icon {
        width: 16px;
        height: 16px;
    }

    .s-icon svg {
        width: 10px;
        height: 10px;
    }

    .s-price {
        font-size: 15px;
    }

    .stack-total {
        padding: 20px;
        font-size: 18px;
    }

    .stack-footer {
        padding: 24px 20px;
    }

    .sf-price {
        font-size: 56px;
    }

    .bonus-card {
        padding: 24px 20px;
    }

    .bonus-title {
        font-size: 18px;
    }

    .bonus-desc {
        font-size: 14px;
    }

    .g-title {
        font-size: 22px;
    }

    .g-text-box {
        padding: 20px;
        font-size: 14px;
    }

    .faq-box {
        font-size: 15px;
        padding: 16px 20px;
    }

    .b-main-title {
        font-size: 26px;
    }

    .b-desc,
    .b-ul li {
        font-size: 14px;
    }

    .burger-box,
    .sprint-box {
        padding: 20px;
    }

    .b-title {
        font-size: 18px;
    }

    .b-list li {
        font-size: 13px;
    }
}