/* =========================================
   SMS VARANASI - Landing Page
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Montserrat:wght@700;800&display=swap');

:root {
    --cta-green: #8C1D21;
    --success-green-bg: #fef5f5;
    --danger-red: #8B0000;
    --text-black: #111111;
    --text-muted: #555555;
    --font-head: 'Montserrat', sans-serif;
    --font-main: 'Inter', sans-serif;
    --section-padding: 40px;
    --effect-pulse: rgba(140,29,33,0.4);
    --accent-gold: #D4AF37;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-black);
    line-height: 1.4;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

img { max-width: 100%; }

/* =========================================
   SITE HEADER / LOGO
   ========================================= */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 4px 0;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    height: 72px;
    width: auto;
    display: block;
}

/* =========================================
   TOP TURNOVER BAR
   ========================================= */
.turnover-bar-top {
    background-color: #8C1D21;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-weight: 900;
    font-family: var(--font-head);
    font-size: 1.1rem;
    border-bottom: 2px solid #6d1519;
    line-height: 1.4;
}

/* =========================================
   GRID PATTERN BG
   ========================================= */
.bg-grid-pattern {
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-block { padding: 12px 0 0; }

.attn-text {
    display: inline-block;
    color: #8C1D21;
    background: rgba(140,29,33,0.08);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(140,29,33,0.2);
    margin-bottom: 15px;
}

.blueprint-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.headline {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: 1000px;
    margin: 0 auto 25px;
    letter-spacing: -1px;
}

.highlight.blue {
    color: #8C1D21 !important;
    font-weight: inherit;
    display: inline;
}

.highlight.gold {
    color: #D4AF37 !important;
    font-weight: inherit;
    display: inline;
}

.pain-points {
    font-weight: 700;
    font-size: 0.85rem;
    color: #444;
    background: #f1f1f1;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 4px;
    margin-bottom: 30px;
}

/* =========================================
   HERO INFO CARD
   ========================================= */
.hero-info-container {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    max-width: 950px;
    margin: 0 auto 30px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-info-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.hero-info-image {
    background: #fff;
    position: relative;
    overflow: hidden;
    border-right: 2px solid #f0f0f0;
}

.hero-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
    background-color: #f0f0f0;
}

.info-box {
    background-color: #ffffff;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease;
}

.info-box:hover { background-color: #fcfcfc; }

.info-box .m-emoji {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1;
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.info-box h4 {
    font-family: var(--font-head);
    font-size: 0.7rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.info-box p {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

/* Live pulse dot for Platform */
.info-box:nth-child(3) p::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* =========================================
   CTA BUTTON
   ========================================= */
.registration-area {
    max-width: 600px;
    margin: 0 auto;
}

@keyframes pulse {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 var(--effect-pulse); }
    70%  { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(140,29,33,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(140,29,33,0); }
}

.cta-btn {
    display: block;
    background-color: var(--cta-green);
    color: #fff;
    padding: 20px 40px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 10px 20px rgba(140,29,33,0.2);
    text-align: center;
    font-family: var(--font-head);
    cursor: pointer;
   border: none;
    width: 100%;
    animation: pulse 2s infinite;
}

.cta-btn:hover {
    color: #dac83c !important;
    animation-play-state: paused;
    transform: scale(1.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn strike { opacity: 0.6; font-size: 0.8em; margin-left: 8px; }

.brochure-cta-btn {
    /* Keep the main CTA look, but avoid the infinite pulse to reduce visual noise. */
    animation: none;
}

/* =========================================
   SCARCITY CARD
   ========================================= */
.scarcity-card {
    max-width: 600px;
    margin: 15px auto 40px;
    background: #fef5f0;
    border: 1px solid #f5c7a9;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
}

.scarcity-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.spots-left { color: var(--danger-red); font-weight: 800; }

.progress-track {
    background: #e9ecef;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: var(--danger-red);
    transition: width 1.5s cubic-bezier(0.1,0.7,1.0,0.1);
    width: 0%;
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #888;
    font-weight: 700;
}

/* =========================================
   TRUST SECTION
   ========================================= */
.trust-section { background: var(--success-bg); padding: 30px 0; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.trust-card {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    flex-direction: column;
    border: none;
    background: transparent;
    gap: 5px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.emoji-icon {
    font-size: 1.3rem;
    margin-bottom: 5px;
    display: inline-block;
    line-height: 1;
}

/* =========================================
   LOGO WALL
   ========================================= */
.section-logo-wall {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.logo-wall-headline {
    text-align: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.2rem, 3vw, 2.1rem);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.logo-grid-static {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-card-static {
    background: #fff;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    overflow: hidden;
}

.logo-card-static img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.logo-card-static:hover {
    border-color: var(--cta-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* =========================================
   CASE STUDY / RESULTS
   ========================================= */
.section-results {
    padding: var(--section-padding) 0;
    border-bottom: 1px solid #f0f0f0;
}

.results-headline {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 40px;
}

.case-study-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    align-items: center;
}

.mentor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.mentor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D4AF37;
    flex-shrink: 0;
}

.mentor-photo img { width: 100%; height: 100%; object-fit: cover; }

.mentor-info h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--text-black);
}

.mentor-info p { font-size: 0.85rem; color: var(--text-muted); }

.growth-tag {
    display: inline-block;
    background: var(--success-green-bg);
    color: var(--cta-green);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-top: 8px;
    text-transform: uppercase;
}

.mentor-quote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    border-left: 4px solid #f0f0f0;
    padding-left: 20px;
    margin-bottom: 30px;
}

.transformation-box { display: flex; flex-direction: column; gap: 10px; }

.t-item {
    font-size: 0.9rem;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-item.today { background: #fff5f5; color: #c53030; }
.t-item.after { background: #f0fff4; color: #22543d; font-weight: 700; }

.case-cta {
    margin-top: 20px;
    text-align: left;
}

.case-cta .cta-btn {
    width: auto;
    padding: 16px 32px;
    font-size: 1.05rem;
    animation: none;
    display: inline-block;
}

/* SVG Graph */
.graph-box {
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
}

.graph-title {
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
}

.growth-chart { width: 100%; height: auto; }

.animated-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawGraph 3s ease-out forwards;
}

@keyframes drawGraph { to { stroke-dashoffset: 0; } }

.graph-legend {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legend-item {
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

.dot-before { width: 8px; height: 8px; background: #ccc; border-radius: 50%; }
.dot-after  { width: 8px; height: 8px; background: var(--cta-green); border-radius: 50%; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.section-testimonials {
    padding: 40px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #f0f0f0;
}

.testimonial-headline {
    text-align: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.video-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Video Facade (thumbnail + play) */
.video-facade {
    background-color: #000;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

.video-facade::before {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2.5rem;
    color: #fff;
    background: rgba(140,29,33,0.9);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
}

.video-facade:hover::before {
    transform: scale(1.1);
    background: #8C1D21;
}

.video-facade iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

/* Image Proof Grid */
.image-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.image-placeholder {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Uniform circular images for alumni */
.alumni-image-circle {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block;
}

.testimonial-action { margin-top: 40px; }

/* =========================================
   COMPARISON SECTION
   ========================================= */
.section-comparison {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-headline {
    text-align: center;
    font-family: var(--font-head);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px auto;
    text-align: left;
}

.comp-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #eee;
}

.comp-card-v2.today-card {
    background-color: #fffafa;
    border: 1px dashed #feb2b2;
}

.comp-card-v2.today-card h3 {
    color: #c53030;
    font-family: var(--font-head);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comp-card-v2.after-card {
    background-color: #f5f0e6;
    border: 2px solid #D4AF37;
    box-shadow: 0 10px 30px rgba(212,175,55,0.1);
}

.comp-card-v2.after-card h3 {
    color: #8C1D21;
    font-family: var(--font-head);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comp-list-v2 { list-style: none; padding: 0; }

.comp-list-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.comp-list-v2 i { margin-top: 3px; font-size: 1.1rem; }
.today-card i { color: #fc8181; }
.after-card i { color: #8C1D21; }
.after-card li { font-weight: 700; color: #1a202c; }

.stop-chasing-box {
    background-color: #D4AF37;
    padding: 25px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 900px;
    border: 2px solid #000;
    box-shadow: 6px 6px 0px #000;
}

.stop-chasing-box h3 {
    font-family: var(--font-head);
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

/* =========================================
   WHY ATTEND
   ========================================= */
.section-why-attend {
    padding: 40px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.why-attend-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.blueprint-mockup-card {
    text-align: center;
    position: sticky;
    top: 30px;
}

.blueprint-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blueprint-brief-text {
    margin-top: 25px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.blueprint-brief-text b { color: var(--text-black); }

.why-point {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f5f5f5;
}

.why-point:last-child { border-bottom: none; }

.why-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.why-header i {
    font-size: 1.4rem;
    color: var(--cta-green);
    width: 30px;
    text-align: center;
}

.why-header h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-black);
}

.why-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 45px;
}

.why-text b { color: var(--text-black); font-weight: 700; }

.action-stack-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed #ddd;
}

.action-stack-bottom.compact {
    margin-top: 24px;
    padding-top: 18px;
}

/* =========================================
   PREMIUM PROGRAMS SECTION
   ========================================= */
.section-programs.premium-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: #fff;
    position: relative;
    border-bottom: 5px solid var(--accent-gold);
}

.programs-header {
    margin-bottom: 60px;
}

.programs-header h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.programs-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Make Mass Comm span across if there's an odd number of cards */
@media (min-width: 900px) {
    .program-card.mass-comm {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto;
    }
}

.program-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    outline: none;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-green), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.15);
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

.program-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(140,29,33,0.9), rgba(212,175,55,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.program-card h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.program-duration {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    background: rgba(212, 175, 55, 0.15);
    padding: 6px 14px;
    border-radius: 6px;
}

.program-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* =========================================
   TRAINER SECTION
   ========================================= */
.section-trainer {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.trainer-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.trainer-image-col { text-align: center; }

.trainer-photo-box {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f0f2f5;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.trainer-photo-box img { width: 100%; height: 100%; object-fit: cover; }

.trainer-name {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.trainer-titles { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; font-weight: 600; }

.trainer-bio h4 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.trainer-story { font-size: 1.05rem; line-height: 1.7; color: #444; margin-bottom: 30px; }
.trainer-story b { color: var(--text-black); }

.impact-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fef5f5;
    border: 1px solid rgba(140,29,33,0.1);
    border-radius: 10px;
}

.stat-card i { font-size: 1.2rem; color: var(--cta-green); }
.stat-card span { font-size: 0.9rem; font-weight: 700; color: #333; }

.trainer-punchline {
    background: #fef9e6;
    border-left: 5px solid #D4AF37;
    padding: 20px;
    margin: 30px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    line-height: 1.5;
}

/* Feature Image */
.section-feature-image {
    padding: 40px 0;
    background-color: #ffffff;
}

.image-container-16-9 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fcfcfc;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.image-container-16-9 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================================
   TRAINER EXPANDED
   ========================================= */
.section-trainer-expanded {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.trainer-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
    align-items: start;
}

.trainer-sticky-col {
    position: sticky;
    top: 40px;
    text-align: center;
}

.trainer-graphic-box {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f0f2f5;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.trainer-graphic-box img { width: 100%; height: 100%; object-fit: cover; }

.trainer-sub-labels {
    font-size: 0.9rem;
    color: var(--cta-green);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.trainer-main-bio p { font-size: 1.05rem; line-height: 1.7; color: #444; margin-bottom: 20px; }

.achievements-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.achievements-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievement-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.achievement-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: var(--success-green-bg);
    color: var(--cta-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 5px;
}

.achievement-content h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; color: var(--text-black); }
.achievement-content p { font-size: 0.95rem; line-height: 1.5; color: #666; }
.achievement-content b { color: var(--text-black); }

.mentor-closing {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-black);
    border-left: 4px solid var(--cta-green);
    padding-left: 20px;
    margin-top: 40px;
    line-height: 1.5;
}

/* =========================================
   CASE STUDIES / REAL RESULTS
   ========================================= */
.section-case-studies {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.case-study-header { text-align: center; margin-bottom: 50px; }

.case-study-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-black);
    text-transform: uppercase;
}

.case-study-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 15px auto 0;
}

.video-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Metric Row */
.metric-row-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.metric-pillar {
    padding: 35px 20px;
    border-right: 1px solid #f3f4f6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.metric-pillar:last-child { border-right: none; }

.metric-pillar .m-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; line-height: 1; }
.metric-pillar .m-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-black);
    line-height: 1.1;
    margin-bottom: 8px;
}
.metric-pillar .m-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.centered-action-area {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.centered-action-area .cta-btn { width: 100%; margin-bottom: 15px; }
.centered-action-area .scarcity-card { width: 100%; max-width: 600px; margin: 0 auto; }

/* =========================================
   WHY DIFFERENT
   ========================================= */
.section-different {
    padding: 40px 0;
    background-color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.different-header {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.different-body {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
}

.different-body p { margin-bottom: 25px; }
.different-body b { color: var(--text-black); text-decoration: underline; text-decoration-color: #f8d7da; }

.logic-chain-bar {
    background-color: #D4AF37;
    padding: 15px 20px;
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    color: #000;
    text-transform: uppercase;
    margin: 20px 0 40px;
    box-shadow: 4px 4px 0px rgba(0,0,0,1);
}

.freedom-punchline {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* =========================================
   OFFER / BUNDLE
   ========================================= */
.section-offer-final {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.bundle-container-v2 {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: #ffffff;
    border: 2px solid var(--text-black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.bundle-header-v2 {
    background: #f8f9fa;
    padding: 35px 20px;
    text-align: center;
    border-bottom: 2px solid var(--text-black);
}

.bundle-header-v2 h2 {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
}

.bundle-item {
    display: grid;
    grid-template-columns: 1fr 280px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.bundle-item:last-of-type { border-bottom: none; }
.bundle-item.core-item { background: #ffffff; }
.bundle-item.bonus-item { background: #fef5f0; }

.bundle-item-main { padding: 30px 40px; display: flex; gap: 20px; }
.bundle-item-main i { font-size: 1.5rem; color: var(--cta-green); margin-top: 5px; }

.bundle-item-text b { display: block; font-size: 1.2rem; margin-bottom: 8px; color: var(--text-black); }
.bundle-item-text p { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

.bundle-item-value {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.02);
    border-left: 1px solid #eee;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--danger-red);
    font-size: 1.1rem;
}

.bundle-footer-v2 {
    display: grid;
    grid-template-columns: 1fr 280px;
    background: var(--text-black);
    color: #ffffff;
    padding: 25px 0;
}

.bundle-footer-label {
    padding-left: 40px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.bundle-footer-total {
    text-align: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.8rem;
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Tiers */
.pricing-block {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    border-radius: 1.2rem;
    width: 100%;
    border: 2px solid #eee;
    background: #fff;
    transition: all 0.4s ease;
    margin-bottom: -1.5rem;
}

.pricing-tier:nth-child(3) { z-index: 1; transform: scale(0.92); opacity: 0.5; filter: blur(2px); }
.pricing-tier:nth-child(2) { z-index: 2; transform: scale(0.96); opacity: 0.8; filter: blur(0.5px); }

.pricing-tier.active {
    position: relative;
    z-index: 10;
    background-color: var(--cta-green);
    color: #fff;
    border-color: #6d1519;
    padding-top: 2.8rem;
    padding-bottom: 2rem;
    box-shadow: 0 25px 50px rgba(140,29,33,0.25);
    margin-bottom: 0;
    transform: scale(1);
    opacity: 1;
    filter: none;
}

.tier-banner {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 0.4rem 1.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tier-info { text-align: left; }
.tier-label { font-weight: 800; font-size: 1.25rem; display: block; }
.tier-bonus { font-size: 0.95rem; opacity: 0.9; }
.tier-price { font-size: 2.2rem; font-weight: 900; }

.price-today-summary {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 40px 0 20px;
}

.price-today-summary span { color: var(--cta-green); }

/* =========================================
   FAQ
   ========================================= */
.section-faq {
    padding: 40px 0;
    background-color: #fcfcfc;
    border-bottom: 1px solid #f0f0f0;
}

.faq-container { max-width: 850px; margin: 0 auto; }

.faq-header { text-align: center; margin-bottom: 60px; }

.faq-header h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-black);
    transition: background 0.2s ease;
}

.faq-question:hover { background: #f9fafb; }
.faq-question i { font-size: 0.9rem; transition: transform 0.3s ease; color: var(--cta-green); }

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0,1,0,1);
    background: #fff;
}

.faq-answer-inner {
    padding: 10px 0 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.faq-answer b { color: var(--text-black); }

.faq-item.active { border-color: var(--cta-green); box-shadow: 0 10px 20px rgba(140,29,33,0.05); }
.faq-item.active .faq-question { background: var(--success-green-bg); color: var(--cta-green); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { max-height: 1000px; transition: all 0.4s ease-in; }

/* =========================================
   MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    background: #fff;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;

    transform: translateY(12px) scale(0.98);
    transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal-card {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
}

.modal-header h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; }
.modal-header p { color: #666; font-size: 0.95rem; margin-bottom: 25px; }

.modal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.modal-logo img {
    height: 64px;
    width: auto;
}

.turnover-box-modal {
    background: #fef5f0;
    color: #8C1D21;
    border: 1px dashed #8C1D21;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
    width: 100%;
}

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; color: #333; }
.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
}

.field-error {
    display: none;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--danger-red);
}

.modal-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--cta-green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-head);
}

.modal-submit-btn:hover { background: #6d1519; transform: scale(1.02); }

.modal-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.lead-success-message {
    margin-top: 15px;
    background: var(--success-green-bg);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 900;
    text-align: center;
}
.form-privacy { font-size: 0.75rem; color: #999; margin-top: 15px; text-align: center; }

/* =========================================
   MOBILE STICKY BAR
   ========================================= */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: #ffffff;
    padding: 12px 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 99999;
    border-top: 1px solid #e0e0e0;
}

.mobile-sticky-bar .cta-btn {
    width: 100%;
    margin: 0;
    padding: 14px 10px;
    font-size: 1rem;
    box-shadow: none;
    animation: pulse 1.5s infinite;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .case-study-card { grid-template-columns: 1fr; padding: 30px 20px; }
    .why-attend-grid { grid-template-columns: 1fr; gap: 40px; }
    .blueprint-mockup-card { position: static; }
    .trainer-grid { grid-template-columns: 1fr; gap: 40px; }
    .impact-stats-grid { grid-template-columns: 1fr; }
    .trainer-photo-box { max-width: 400px; margin: 0 auto 25px; }
    .trainer-layout { grid-template-columns: 1fr; gap: 40px; }
    .trainer-sticky-col { position: static; }
    .qualify-list-main { grid-template-columns: 1fr; padding: 30px; gap: 20px; }
    .video-results-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .bundle-item, .bundle-footer-v2 { grid-template-columns: 1fr; }
    .bundle-item-value { border-left: none; border-top: 1px solid #eee; padding: 15px; background: #fafafa; }
    .bundle-footer-v2 { text-align: center; gap: 10px; }
    .bundle-footer-label { padding-left: 0; justify-content: center; }
    .metric-row-v3 { grid-template-columns: 1fr 1fr; }
    .metric-pillar:nth-child(2) { border-right: none; }
    .metric-pillar { border-bottom: 1px solid #f3f4f6; }
}

@media (max-width: 768px) {
    :root { --section-padding: 40px; }
    body { padding-bottom: 90px; }

    .turnover-bar-top { font-size: 0.8rem; padding: 10px 15px; }
    .hero-block { padding: 20px 0 0; }
    .headline { font-size: clamp(1.4rem, 6vw, 2rem); letter-spacing: -0.5px; }
    .hero-info-container { grid-template-columns: 1fr; border-radius: 16px; max-width: 400px; }
    .hero-info-image { border-right: none; border-bottom: 2px solid #f0f0f0; }
    .hero-info-boxes { grid-template-columns: 1fr 1fr; }
    .info-box { padding: 15px 10px; }
    .info-box .m-emoji { width: 35px; height: 35px; font-size: 1rem; }
    .info-box p { font-size: 0.8rem; }
    .cta-btn { font-size: 1rem; padding: 16px 20px; }
    .scarcity-card { padding: 15px; }
    .mobile-sticky-bar { display: block; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .trust-card { font-size: 0.9rem; padding: 10px; }
    .logo-grid-static { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .logo-card-static { height: 90px; padding: 15px; }
    .comparison-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .video-proof-grid { grid-template-columns: 1fr; }
    .image-proof-grid { grid-template-columns: 1fr; gap: 15px; }
    .section-logo-wall { padding: 40px 0; }
    .metric-row-v3 { grid-template-columns: 1fr 1fr; }

    .pricing-tier { padding: 1rem 1.5rem; }
    .tier-price { font-size: 1.6rem; }
    .tier-label { font-size: 1rem; }
    .price-today-summary { font-size: 1.4rem; }
    .video-results-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-info-boxes { grid-template-columns: 1fr 1fr; }
    .info-box { padding: 12px 8px; }
    .info-box h4 { font-size: 0.6rem; letter-spacing: 0.8px; }
    .info-box p { font-size: 0.75rem; }
    .info-box .m-emoji { width: 30px; height: 30px; font-size: 0.85rem; margin-bottom: 6px; }
    .cta-btn { font-size: 0.9rem; padding: 14px 15px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-card { font-size: 0.8rem; }
    .qualify-card-header h2 { font-size: 1.1rem; }
    .qualify-list-main { padding: 20px 15px; gap: 15px; }
    .qualify-row p { font-size: 0.9rem; }
}
