/*
File: /home/claude/landman-course/styles.css
Description: Glassmorphism-enhanced styling for Landman Leadership course with gritty oilfield aesthetic, truck and pump jack backgrounds
Version: 2024.12.18.1515
*/



    


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

:root {
    /* Color Palette - Landman TV Show Inspired */
    --primary-dark: #0d0d0d;
    --secondary-dark: #151515;
    --tertiary-dark: #1f1f1f;
    --accent-orange: #ff6b35;
    --accent-rust: #d84315;
    --accent-yellow: #ffc947;
    --accent-gold: #c9a85a;
    --text-light: #e8e8e8;
    --text-mid: #b8b8b8;
    --text-dark: #787878;
    --border-color: rgba(255, 107, 53, 0.3);
    --success-green: #4caf50;
    --warning-red: #e53935;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --glass-blur: blur(12px);
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    ba ckground-color: var(--primary-dark);
    background: transparent;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
    background-image: url('/media/images/misc/tommyshutter_a_widescreen_background_image_a_pump_jack_camel__b06884f1-f187-42ff-8c69-89e0a6559aa2_1.png');
}

/* Gritty Background Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        );
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 0;
}

/* All content above background overlays */
body > * {
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(255, 107, 53, 0.5),
        0 0 40px rgba(255, 107, 53, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.9);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-mid);
    margin-bottom: 3rem;
}

/* ===== BUTTONS WITH GLASSMORPHISM ===== */
.btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-rust));
    color: white;
    box-shadow: 
        0 8px 32px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8555, var(--accent-orange));
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-light);
    border: 2px solid var(--accent-orange);
    box-shadow: var(--glass-shadow);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    border-color: var(--accent-yellow);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

/* ===== HERO SECTION WITH OILFIELD BACKGROUND ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    backgro und: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23000000;stop-opacity:1" /><stop offset="100%" style="stop-color:%231a0f0a;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23skyGrad)" width="1920" height="1080"/><g opacity="0.4"><ellipse cx="200" cy="900" rx="400" ry="180" fill="%23000000"/><ellipse cx="1400" cy="920" rx="500" ry="160" fill="%23000000"/></g><g opacity="0.6"><path d="M 0 850 Q 200 800 400 850 T 800 850 Q 1000 880 1200 850 T 1600 850 Q 1700 870 1920 850 L 1920 1080 L 0 1080 Z" fill="%230d0d0d"/></g><g opacity="0.3" fill="%23ff6b35"><circle cx="1650" cy="200" r="60"/><circle cx="1650" cy="200" r="100" opacity="0.3"/><circle cx="1650" cy="200" r="140" opacity="0.1"/></g><g opacity="0.5" fill="%23201510"><rect x="80" y="750" width="140" height="180" rx="5"/><rect x="100" y="730" width="100" height="30" rx="3"/><polygon points="120,770 200,770 190,850 130,850"/><rect x="140" y="850" width="40" height="80" rx="15"/><rect x="140" y="850" width="40" height="80" rx="15"/><circle cx="110" cy="910" r="25"/><circle cx="210" cy="910" r="25"/></g><g opacity="0.6" fill="%23201510"><rect x="1500" y="700" width="35" height="200"/><rect x="1480" y="850" width="80" height="15"/><circle cx="1518" cy="700" r="25"/><path d="M 1460 700 L 1518 650 L 1575 700" fill="none" stroke="%23201510" stroke-width="8"/><ellipse cx="1518" cy="920" rx="100" ry="40" fill="%23000000" opacity="0.3"/></g><g opacity="0.2"><rect x="600" y="880" width="80" height="20" fill="%23ff6b35"/><rect x="700" y="890" width="60" height="15" fill="%23ff6b35"/><rect x="1100" y="870" width="90" height="25" fill="%23ff6b35"/></g></svg>');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* Animated dust particles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 20% 30%, rgba(201, 168, 90, 0.3), transparent),
                      radial-gradient(2px 2px at 60% 70%, rgba(201, 168, 90, 0.2), transparent),
                      radial-gradient(1px 1px at 50% 50%, rgba(201, 168, 90, 0.3), transparent),
                      radial-gradient(1px 1px at 80% 10%, rgba(201, 168, 90, 0.2), transparent);
    background-size: 200% 200%;
    animation: dustFloat 20s ease-in-out infinite;
}

@keyframes dustFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(-10px, -20px); opacity: 0.6; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    back ground: 
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(to bottom, transparent 0%, rgba(13, 13, 13, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--glass-shadow),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-rust));
    color: white;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 30px rgba(255, 107, 53, 0.6),
        0 0 60px rgba(255, 107, 53, 0.4),
        4px 4px 8px rgba(0, 0, 0, 0.9);
    color: var(--text-light);
    letter-spacing: 4px;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    text-shadow: 
        0 0 20px rgba(255, 201, 71, 0.5),
        2px 2px 6px rgba(0, 0, 0, 0.9);
}

.tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 4px solid var(--accent-orange);
    border-radius: 5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== INTRO SECTION WITH GLASSMORPHISM ===== */
.intro {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, transparent 100%);
    pointer-events: none;
}

.intro .container {
    position: relative;
    z-index: 2;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.intro-text h3 {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-text .highlight {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 1.2rem;
    border-left: 4px solid var(--accent-orange);
    padding-left: 20px;
    margin-top: 2rem;
    background: rgba(255, 201, 71, 0.05);
    padding: 15px 20px;
    border-radius: 5px;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    text-align: center;
    border-left: 5px solid var(--accent-orange);
    border-radius: 10px;
    box-shadow: 
        var(--glass-shadow),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-left-width: 5px;
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateX(10px);
    border-left-width: 8px;
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--accent-orange);
    line-height: 1;
    text-shadow: 
        0 0 20px rgba(255, 107, 53, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ===== CURRICULUM SECTION WITH GLASSMORPHISM ===== */
.curriculum {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.week-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-left: 5px solid var(--accent-orange);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.week-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-orange), 
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.week-card:hover::before {
    opacity: 1;
}

.week-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border-left-width: 8px;
    border-left-color: var(--accent-yellow);
    background: rgba(30, 20, 15, 0.7);
}

.week-card-final {
    border-left-color: var(--accent-yellow);
    background: linear-gradient(135deg, 
        rgba(30, 20, 15, 0.6) 0%, 
        rgba(40, 25, 15, 0.6) 100%);
    box-shadow: 
        var(--glass-shadow),
        0 0 30px rgba(255, 201, 71, 0.2);
}

.week-card-final:hover {
    box-shadow: 
        0 15px 40px rgba(255, 201, 71, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.week-number {
    font-size: 1.5rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.week-status {
    font-size: 0.8rem;
    color: var(--accent-yellow);
    background: rgba(255, 201, 71, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 201, 71, 0.3);
    text-shadow: 0 0 10px rgba(255, 201, 71, 0.5);
}

.week-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.week-description {
    color: var(--text-mid);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-style: italic;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-left: 3px solid var(--accent-gold);
    border-radius: 5px;
}

.week-topics {
    list-style: none;
    margin-bottom: 25px;
}

.week-topics li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.week-topics li:hover {
    padding-left: 35px;
    color: var(--accent-yellow);
    background: rgba(255, 201, 71, 0.05);
}

.week-topics li:last-child {
    border-bottom: none;
}

.week-topics li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.week-deliverables {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text-mid);
    border-left: 3px solid var(--accent-yellow);
    border-radius: 5px;
    border: 1px solid rgba(255, 201, 71, 0.2);
}

.week-deliverables strong {
    color: var(--accent-yellow);
    text-shadow: 0 0 10px rgba(255, 201, 71, 0.3);
}

/* ===== TARGET AUDIENCE SECTION WITH GLASSMORPHISM ===== */
.target-audience {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.audience-column {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
}

.audience-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.audience-column:first-child {
    border-top: 3px solid var(--success-green);
    box-shadow: 
        var(--glass-shadow),
        0 0 20px rgba(76, 175, 80, 0.2);
}

.audience-column:first-child:hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(76, 175, 80, 0.3);
}

.audience-column:last-child {
    border-top: 3px solid var(--warning-red);
    box-shadow: 
        var(--glass-shadow),
        0 0 20px rgba(229, 57, 53, 0.2);
}

.audience-column:last-child:hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(229, 57, 53, 0.3);
}

.audience-header {
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
}

.audience-header.good {
    color: var(--success-green);
    border-bottom-color: var(--success-green);
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.audience-header.bad {
    color: var(--warning-red);
    border-bottom-color: var(--warning-red);
    text-shadow: 0 0 20px rgba(229, 57, 53, 0.5);
}

.audience-list {
    list-style: none;
}

.audience-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.audience-list li:hover {
    padding-left: 40px;
    background: rgba(255, 255, 255, 0.03);
}

.audience-list li:last-child {
    border-bottom: none;
}

.audience-column:first-child .audience-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
}

.audience-column:last-child .audience-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--warning-red);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(229, 57, 53, 0.6);
}

/* ===== ENROLLMENT SECTION WITH PREMIUM GLASSMORPHISM ===== */
.enrollment {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.enrollment::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.enrollment-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border: 2px solid var(--accent-orange);
    box-shadow: 
        var(--glass-shadow),
        0 0 50px rgba(255, 107, 53, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.enrollment-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--accent-orange), 
        var(--accent-yellow), 
        var(--accent-orange));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.enrollment-box h2 {
    font-size: 3rem;
    text-align: center;
    color: var(--accent-orange);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

.enrollment-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.price-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    margin-bottom: 40px;
    border-left: 5px solid var(--accent-yellow);
    border-radius: 10px;
    border: 1px solid rgba(255, 201, 71, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.price-main {
    font-family: 'Bebas Neue', cursive;
    text-align: center;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
    color: var(--accent-yellow);
    text-shadow: 0 0 20px rgba(255, 201, 71, 0.5);
}

.amount {
    font-size: 5rem;
    color: var(--accent-orange);
    text-shadow: 
        0 0 30px rgba(255, 107, 53, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.price-details {
    color: var(--text-light);
}

.price-line {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.price-line:hover {
    padding-left: 35px;
    color: var(--accent-yellow);
}

.price-line:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
}

.enrollment-box .btn {
    width: 100%;
    margin-bottom: 30px;
}

.guarantee {
    text-align: center;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--success-green);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
}

.guarantee strong {
    color: var(--success-green);
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.enrollment-bonus {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 5px solid var(--accent-yellow);
    border-radius: 10px;
    border: 1px solid rgba(255, 201, 71, 0.3);
}

.enrollment-bonus h4 {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 201, 71, 0.5);
}

.enrollment-bonus ul {
    list-style: none;
}

.enrollment-bonus li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.enrollment-bonus li:hover {
    padding-left: 35px;
    background: rgba(255, 201, 71, 0.05);
}

.enrollment-bonus li:last-child {
    border-bottom: none;
}

.enrollment-bonus li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-size: 1.2rem;
    text-shadow: 0 0 15px rgba(255, 201, 71, 0.6);
}

.enrollment-bonus strong {
    color: var(--accent-orange);
}

/* ===== FAQ SECTION WITH GLASSMORPHISM ===== */
.faq {
    padding: 80px 0;
    background: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    border-left: 4px solid var(--accent-orange);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-left-width: 6px;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    background: rgba(30, 20, 15, 0.7);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 100px 0;
    background: transparent;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    max-width: 900px;
}

.final-cta h2 {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

.final-cta p {
    font-size: 1.3rem;
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.final-cta .btn {
    margin-top: 30px;
}

.fine-print {
    font-size: 0.9rem !important;
    color: var(--text-dark) !important;
    margin-top: 20px !important;
}

/* ===== FOOTER WITH GLASSMORPHISM ===== */
.footer {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.footer-column p {
    color: var(--text-mid);
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-mid);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-orange);
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.85rem;
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .price-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 25px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .weeks-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .enrollment-box {
        padding: 40px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intro-text {
        padding: 30px;
    }
    
    .audience-column {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .enrollment-box {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 4rem;
    }
    
    .week-card {
        padding: 25px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: var(--accent-orange);
    color: white;
}

::-moz-selection {
    background: var(--accent-orange);
    color: white;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-rust));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8555, var(--accent-orange));
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.btn:focus,
a:focus {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 3px;
}

/* ===== LOADING ANIMATION (OPTIONAL) ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    background-size: 1000px 100%;
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero,
    .cta-buttons,
    .btn,
    .enrollment-box,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .week-card {
        page-break-inside: avoid;
        border: 1px solid black;
    }
}

