/* ============================================================
   ADVANCED MANIFESTATION MAGIC - Elite CSS (v4.0 Mobile Optimized)
============================================================ */

:root {
    /* Premium Lavish Palette */
    --bg-main: #070708;       
    --bg-tint: #111114;       
    --bg-card: #16161a;       
    
    /* Golden Gradients & Tones */
    --gold-light: #FBE6A0;
    --gold-mid: #D4AF37;
    --gold-dark: #997A15;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-gradient-dark: linear-gradient(135deg, #7A5C13, #B38728, #4D3907);
    
    /* Text Colors */
    --text-main: #EAE6DF;     
    --text-muted: #A39E95;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-subhead: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --shadow-gold: 0 8px 20px rgba(212, 175, 55, 0.15);
    --shadow-glow: 0 0 15px rgba(252, 246, 186, 0.3);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --radius-md: 4px; 
    --radius-lg: 8px;
    --transition: all 0.3s ease;
}

/* --- Base & Resets --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background-color: var(--bg-main); }
body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 100px; /* Reduced for tighter mobile footer */
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--gold-mid);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Global Utilities (Mobile First) --- */
.container { width: 92%; max-width: 1100px; margin: 0 auto; }
.text-center { text-align: center; }
/* Tighter vertical sections for mobile */
.section { padding: 3rem 0; position: relative; z-index: 1; }
.dark-tint-section { background-color: var(--bg-tint); border-top: var(--border-gold); border-bottom: var(--border-gold); }
.section-title { font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.section-lead { font-family: var(--font-subhead); font-size: 1.2rem; color: var(--gold-light); font-style: italic; max-width: 700px; margin: 0 auto 2rem auto; line-height: 1.3; opacity: 0.9; }

.magic-highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.8));
    font-weight: 700;
}

/* --- Golden Button with Shimmer Animation --- */
.primary-btn {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/* Shimmer Sweep Effect */
.primary-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg) translate(-100%, -100%);
    animation: shimmer 4s infinite;
    pointer-events: none;
    z-index: 2;
}
@keyframes shimmer {
    0% { transform: rotate(30deg) translate(-100%, -100%); }
    20% { transform: rotate(30deg) translate(100%, 100%); }
    100% { transform: rotate(30deg) translate(100%, 100%); }
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* --- Top Announcement Ribbon --- */
.top-ribbon { background: var(--gold-gradient-dark); color: var(--gold-light); text-align: center; padding: 6px 10px; font-size: 0.8rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; border-bottom: var(--border-gold); position: relative; z-index: 50; }
.flame-glow { color: #FCF6BA; margin-right: 5px; filter: drop-shadow(0 0 5px #FCF6BA); }

/* --- Ornate Divider --- */
.ornate-divider { display: flex; align-items: center; justify-content: center; gap: 15px; padding: 1.5rem 0; opacity: 0.6; }
.ornate-divider span { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-mid)); }
.ornate-divider span:last-child { background: linear-gradient(270deg, transparent, var(--gold-mid)); }
.ornate-divider i { color: var(--gold-mid); font-size: 1.2rem; }

/* --- Ambient Mystical Background Glows & Mandala --- */
.ambient-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; animation: drift 15s infinite alternate ease-in-out; }
.glow-top { width: 300px; height: 300px; background: var(--gold-mid); top: -50px; left: -50px; }
.glow-bottom { width: 400px; height: 400px; background: var(--gold-light); bottom: 10%; right: -100px; animation-delay: -5s; }

.mandala-medallion { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; max-width: 150vw; stroke: var(--gold-mid); stroke-width: 0.5; fill: none; opacity: 0.05; animation: spin-slow 120s linear infinite; z-index: 0; }
@keyframes spin-slow { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes drift { 0% { transform: translate(0, 0); } 100% { transform: translate(30px, 30px); } }

/* --- Hero Section --- */
.hero-section { overflow: hidden; position: relative; padding-top: 2rem; }
.hero-container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }

.badge-pill { background: rgba(0,0,0,0.6); color: var(--gold-light); padding: 6px 18px; border-radius: 30px; font-weight: 600; font-size: 0.75rem; border: 1px solid var(--gold-dark); margin-bottom: 15px; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(5px); letter-spacing: 1px; text-transform: uppercase; }
.badge-pill i { color: var(--gold-mid); }

.main-title { font-size: clamp(2.2rem, 8vw, 4.5rem); margin-bottom: 0.5rem; line-height: 1.1; }
.subtitle { font-family: var(--font-subhead); font-size: clamp(0.9rem, 3.5vw, 1.2rem); letter-spacing: 1.5px; color: var(--text-muted); font-style: italic; margin-bottom: 2rem; max-width: 800px; }

.video-container { width: 100%; max-width: 850px; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-gold); border: 1px solid var(--gold-dark); background: #000; margin-bottom: 1.5rem; position: relative; }
.video-container iframe { width: 100%; height: 100%; object-fit: cover; }

.date-callout { background: var(--bg-card); color: var(--gold-light); padding: 10px 20px; border-radius: var(--radius-md); font-size: 1rem; border: 1px solid var(--gold-dark); margin-bottom: 1.5rem; font-family: var(--font-heading); }
.date-callout i { margin-right: 8px; color: var(--gold-mid); }

.hero-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.hero-features span { background: rgba(20,20,20,0.8); padding: 6px 14px; border-radius: var(--radius-md); font-size: 0.85rem; font-weight: 400; border: 1px solid #333; display: flex; align-items: center; gap: 6px; letter-spacing: 0.5px; }
.hero-features i { color: var(--gold-mid); font-size: 0.9rem; }

/* --- Authority Records --- */
.records-section { padding: 1.5rem 0; }
.records-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; align-items: center; }
.record-item { text-align: center; width: 100px; }
.record-item img { width: 100%; border-radius: var(--radius-md); margin-bottom: 8px; border: 1px solid #333; filter: sepia(30%) contrast(110%); }
.record-item p { font-size: 0.75rem; color: var(--gold-light); font-family: var(--font-body); line-height: 1.1; }

/* --- General Grid Layouts --- */
.grid-card-layout { display: grid; grid-template-columns: 1fr; gap: 12px; }
.layout-3 { grid-template-columns: 1fr; }

/* --- Information Cards --- */
.info-card { background: var(--bg-card); padding: 20px 15px; border-radius: var(--radius-md); box-shadow: 0 5px 15px rgba(0,0,0,0.3); border: 1px solid #2a2a2a; position: relative; overflow: hidden; }
.info-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--gold-gradient); }
.pain-card { display: flex; flex-direction: row; align-items: center; gap: 15px; } /* Row for mobile to save vertical space */
.card-icon { width: 45px; height: 45px; flex-shrink: 0; background: rgba(212, 175, 55, 0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--gold-mid); font-size: 1.2rem; border: 1px solid var(--gold-dark); }
.pain-card p { font-size: 0.95rem; color: var(--text-main); font-weight: 300; margin: 0; line-height: 1.4; }

/* --- Premium Quote Box --- */
.premium-box { background: var(--bg-card); border-left: 3px solid var(--gold-mid); padding: 25px 20px; border-radius: 0 var(--radius-md) var(--radius-md) 0; max-width: 800px; margin: 0 auto; position: relative; text-align: left; border-top: 1px solid #222; border-right: 1px solid #222; border-bottom: 1px solid #222; }
.quote-icon { position: absolute; top: 15px; right: 20px; font-size: 2.5rem; color: var(--gold-mid); opacity: 0.1; }
.premium-box p { font-family: var(--font-subhead); font-size: 1.15rem; color: var(--gold-light); position: relative; z-index: 1; line-height: 1.4; }
.premium-box strong { font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.5px; color: var(--gold-mid); }

/* --- Mentor Section --- */
.mentor-layout { display: flex; flex-direction: column; align-items: center; gap: 20px; background: var(--bg-card); padding: 25px 15px; border-radius: var(--radius-lg); border: var(--border-gold); }
.mentor-image-box { position: relative; width: 160px; height: 160px; flex-shrink: 0; }
.mentor-image-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 3px solid var(--gold-mid); filter: contrast(1.1); }
.mentor-floating-badge { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); background: var(--gold-gradient); color: #000; font-size: 0.65rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }
.mentor-content { text-align: center; }
.mentor-content h3 { font-size: 1.8rem; margin-bottom: 5px; }
.mentor-sub { font-family: var(--font-subhead); color: var(--gold-light); font-size: 1.05rem; margin-bottom: 15px; font-style: italic; }
.mentor-bio { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; font-weight: 300; }
.badges-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.badges-grid span { background: rgba(0,0,0,0.5); padding: 5px 10px; border-radius: var(--radius-md); font-size: 0.75rem; display: flex; align-items: center; gap: 5px; border: 1px solid #333; color: var(--text-main); }

/* =========================================================
   WHAT YOU'LL GET (Lavish Exclusive Ticket Layout)
========================================================= */
.package-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
.package-card { background: var(--bg-card); border-radius: var(--radius-md); padding: 25px 15px; width: 100%; max-width: 340px; text-align: center; border: 1px solid #2a2a2a; display: flex; flex-direction: column; align-items: center; position: relative; }
.pkg-icon-circle { width: 55px; height: 55px; border-radius: 50%; border: 2px solid var(--gold-mid); margin-bottom: 15px; background: var(--gold-gradient-dark); position: relative; }
.pkg-icon-circle::after { content: '\f0d0'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--gold-light); font-size: 1.2rem; }
.package-card h4 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 8px; color: var(--gold-light); }
.package-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; font-weight: 300; line-height: 1.4; }
.pkg-tag { background: rgba(212, 175, 55, 0.1); color: var(--gold-mid); font-weight: 600; font-size: 0.7rem; padding: 6px 12px; border-radius: 4px; border: 1px solid var(--gold-dark); width: 100%; text-transform: uppercase; }

/* Highlight Card */
.pkg-popular { border: 1px solid var(--gold-mid); background: #1a1610; transform: scale(1.02); }
.pkg-badge-top { position: absolute; top: -12px; background: var(--gold-gradient); color: #000; font-size: 0.65rem; font-weight: 700; padding: 4px 15px; border-radius: 20px; }
.tag-purple { background: var(--gold-gradient); color: #000; border: none; } 

/* Price Summary Box */
.price-summary-box { background: var(--bg-card); border-radius: var(--radius-md); padding: 30px 15px; text-align: center; max-width: 800px; margin: 0 auto 20px auto; border: 1px solid var(--gold-mid); box-shadow: inset 0 0 20px rgba(0,0,0,0.8); background-image: radial-gradient(circle at top right, rgba(212,175,55,0.05), transparent); }
.ps-label { display: block; font-family: var(--font-subhead); font-size: 1.1rem; color: var(--text-muted); margin-bottom: 5px; font-style: italic; }
.ps-strike { display: block; font-size: 1.5rem; text-decoration: line-through; color: #666; margin-bottom: 15px; font-family: var(--font-heading); }
.ps-final { font-family: var(--font-heading); font-size: clamp(2.2rem, 6vw, 3.5rem); font-weight: 700; color: var(--gold-light); margin-bottom: 15px; line-height: 1; text-shadow: 0 0 15px rgba(212,175,55,0.3); }
.ps-savings { display: inline-block; background: var(--gold-gradient-dark); border: 1px solid var(--gold-mid); color: var(--gold-light); padding: 8px 16px; border-radius: 4px; font-size: 0.9rem; }

/* --- Science Grid --- */
.science-grid { display: grid; grid-template-columns: 1fr; gap: 10px; max-width: 1000px; margin: 0 auto; }
.science-card { padding: 20px; text-align: left; }
.science-card h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 5px; color: var(--white); }
.border-red { border-left: 3px solid #e74c3c; border-top: none; } .text-red { color: #e74c3c; font-weight: 600; font-size: 0.85rem;}
.border-green { border-left: 3px solid #D4AF37; border-top: none; } .text-green { color: #D4AF37; font-weight: 600; font-size: 0.85rem;}
.border-blue { border-left: 3px solid #8e9eab; border-top: none; } .text-blue { color: #8e9eab; font-weight: 600; font-size: 0.85rem;}
.border-rose { border-left: 3px solid #b76e79; border-top: none; } .text-rose { color: #b76e79; font-weight: 600; font-size: 0.85rem;}
.science-card p { font-size: 0.9rem; margin: 0; }

/* --- Steps & Roadmap --- */
.step-card { position: relative; overflow: hidden; z-index: 1; padding: 25px 20px; }
.watermark-num { position: absolute; top: -10px; right: 10px; font-size: 4.5rem; font-weight: 700; color: rgba(255,255,255,0.03); z-index: -1; font-family: var(--font-heading); }
.step-card h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--gold-light); }
.step-card p { font-weight: 300; font-size: 0.95rem; line-height: 1.4; }

.roadmap-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.roadmap-step { display: flex; align-items: center; gap: 15px; background: var(--bg-card); padding: 20px; border-radius: var(--radius-md); border: 1px solid #2a2a2a; }
.step-icon { width: 50px; height: 50px; flex-shrink: 0; background: rgba(212,175,55,0.1); border: 1px solid var(--gold-dark); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--gold-mid); font-size: 1.2rem; }
.step-content h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 5px; color: var(--white); }
.step-content p { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; margin: 0; line-height: 1.4; }
.roadmap-line { width: 1px; height: 25px; background: var(--gold-mid); margin-left: 45px; opacity: 0.3; }

/* --- Results Banner & Grid --- */
.hero-result-banner { background: var(--gold-gradient-dark); color: var(--gold-light); padding: 15px; border-radius: var(--radius-md); text-align: center; font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 25px; border: 1px solid var(--gold-mid); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.result-pill { background: rgba(20,20,20,0.8); padding: 12px 10px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 10px; font-weight: 400; font-size: 0.85rem; border: 1px solid #333; }
.result-pill i { color: var(--gold-mid); font-size: 1.1rem; }

/* --- Featured Logos --- */
.small-title { font-family: var(--font-subhead); font-size: 0.95rem; letter-spacing: 2px; color: var(--gold-dark); margin-bottom: 20px; text-transform: uppercase; }
.featured-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.5; filter: sepia(1) hue-rotate(5deg) saturate(200%); }
.news-logo { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-muted); }

/* --- YouTube Video Grid --- */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.video-wrapper { position: relative; padding-bottom: 177.77%; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gold-dark); background: #000; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* --- Format Grid --- */
.format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.format-box { background: var(--bg-card); padding: 20px 10px; text-align: center; border-radius: var(--radius-md); border: 1px solid #2a2a2a; }
.format-box i { display: block; font-size: 1.8rem; color: var(--gold-mid); margin-bottom: 10px; }
.format-box span { font-weight: 400; font-size: 0.9rem; color: var(--gold-light); }

/* --- Final CTA & Contact Snippet --- */
.final-cta-section { background: radial-gradient(circle at center, var(--bg-tint) 0%, var(--bg-main) 100%); padding-bottom: 4rem; }
.cta-card { max-width: 700px; margin: 0 auto; background: var(--bg-card); padding: 35px 20px; border-radius: var(--radius-md); border: 1px solid var(--gold-mid); position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold-gradient); }
.cta-title { font-size: 1.8rem; margin-bottom: 15px; }
.cta-price-row { display: flex; justify-content: center; align-items: baseline; gap: 15px; margin-bottom: 10px; }
.cta-strike { font-family: var(--font-heading); font-size: 1.4rem; text-decoration: line-through; color: #666; }
.cta-main { font-family: var(--font-heading); font-size: 3rem; color: var(--gold-light); line-height: 1; }
.cta-subtext { font-family: var(--font-subhead); color: var(--gold-dark); font-size: 1.1rem; margin-bottom: 25px; font-style: italic; }
.guarantee-text { margin-top: 25px; font-size: 0.85rem; color: var(--text-muted); display: flex; justify-content: center; align-items: center; gap: 8px; }
.guarantee-text i { color: var(--gold-mid); }

.contact-support { margin-top: 15px; font-size: 0.9rem; color: var(--text-muted); }
.contact-support a { color: var(--gold-mid); text-decoration: none; font-weight: 600; letter-spacing: 0.5px; }
.contact-support i { color: #25D366; margin-right: 5px; font-size: 1.1rem; }

/* Moved to standard flow, not sticky anymore */
.refund-notice {
    background: rgba(0,0,0,0.5); border: 1px solid #333; color: #999;
    padding: 10px 15px; border-radius: var(--radius-md); font-size: 0.8rem; font-weight: 400;
    text-align: center; max-width: 400px; margin: 20px auto 0 auto;
}

/* --- FAQ --- */
.faq-section { padding-top: 0; }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item, .faq-container > .faq-btn { background: var(--bg-card); border-radius: var(--radius-md); margin-bottom: 10px; border: 1px solid #2a2a2a; display: block; width: 100%; overflow: hidden; }
.faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 18px 15px; font-size: 0.95rem; font-weight: 500; font-family: var(--font-body); color: var(--gold-light); display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.3s; }
.faq-btn:hover { background: #1c1c20; }
.faq-btn i { color: var(--gold-dark); font-size: 1rem; transition: transform 0.3s; }
.faq-btn.active i { transform: rotate(45deg); color: var(--gold-light); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--bg-tint); }
.faq-content p { padding: 0 15px 15px 15px; color: var(--text-main); font-size: 0.9rem; font-weight: 300; line-height: 1.5; }

/* --- Sticky Footer Mobile Optimized --- */
.sticky-footer {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(10,10,12,0.95); z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.8); border-top: 1px solid var(--gold-dark);
}
.timer-bar { background: var(--gold-gradient-dark); color: var(--gold-light); padding: 5px; text-align: center; font-size: 0.75rem; display: flex; justify-content: center; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px; }
.timer-digits { font-family: var(--font-heading); font-size: 1rem; color: #fff; }
.sticky-content { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; max-width: 1100px; margin: 0 auto; }
.sticky-price { display: flex; flex-direction: column; line-height: 1.1; }
.s-strike { font-family: var(--font-heading); font-size: 0.8rem; text-decoration: line-through; color: #888; }
.s-price { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--gold-light); }
.small-btn { padding: 12px 20px; font-size: 0.9rem; text-align: center; border-radius: var(--radius-md); }


/* =========================================================
   DESKTOP SCALING & LAYOUT TWEAKS (Upscaling back from Mobile)
========================================================= */
@media (min-width: 768px) {
    body { padding-bottom: 120px; }
    .section { padding: 4.5rem 0; }
    
    /* Grids */
    .grid-card-layout { grid-template-columns: 1fr 1fr; gap: 20px; }
    .layout-3 { grid-template-columns: 1fr 1fr 1fr; }
    .science-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .video-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .format-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .results-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    
    /* Layouts */
    .pain-card { flex-direction: column; align-items: flex-start; }
    .mentor-layout { flex-direction: row; text-align: left; padding: 45px; gap: 40px; }
    .mentor-image-box { width: 220px; height: 220px; }
    .mentor-content { text-align: left; }
    .badges-grid { justify-content: flex-start; }
    
    /* Package / Roadmap */
    .package-grid { gap: 25px; }
    .package-card { padding: 40px 25px; }
    .roadmap-step { padding: 30px; gap: 25px; }
    .step-card { padding: 35px 30px; }
    
    /* UI sizing */
    .primary-btn { padding: 18px 36px; font-size: 1.1rem; }
    .cta-card { padding: 50px 30px; }
    .faq-btn { padding: 25px; font-size: 1.1rem; }
    .faq-content p { padding: 0 25px 25px 25px; font-size: 1rem; }
    
    /* Sticky Footer */
    .sticky-content { padding: 15px 40px; }
    .s-strike { font-size: 1rem; }
    .s-price { font-size: 2rem; }
    .small-btn { width: auto; min-width: 300px; padding: 15px 30px; font-size: 1.1rem; }
}

@media (min-width: 992px) {
    .package-grid { max-width: 1100px; margin: 0 auto 50px auto; }
    .package-card { width: calc(33.333% - 17px); max-width: none; }
}