/* ===================================================================
   SOFTWARE TESTING MASTERY IN SCRUM - STYLESHEET
   Version: 2.0
   Author: Dejan Majkić
   Created: December 2025
   Description: Mobile-first responsive CSS for high-converting sales page
   =================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors - Modern 2026 Palette */
    --primary-indigo: #4f46e5;
    --primary-dark: #3730a3;
    --secondary-cyan: #06b6d4;
    --secondary-teal: #0891b2;
    --accent-magenta: #ec4899;
    --accent-pink: #db2777;
    --accent-gold: #fbbf24;
    --success-green: #10b981;
    --electric-purple: #a855f7;
    --neon-lime: #84cc16;
    
    /* Neutral Colors */
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-gradient-start: #f8fafc;
    --bg-gradient-end: #f1f5f9;
    --bg-dark: #0f172a;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --border-gradient: linear-gradient(135deg, var(--primary-indigo), var(--secondary-cyan));
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing Scale */
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
    --spacing-xl: 80px;
    --section-padding: 80px;
    --container-max: 1200px;
    
    /* Shadows - Modern Colored Glows */
    --shadow-sm: 0 2px 8px rgba(79, 70, 229, 0.1);
    --shadow-md: 0 4px 16px rgba(79, 70, 229, 0.15);
    --shadow-lg: 0 8px 32px rgba(79, 70, 229, 0.2);
    --shadow-cta: 0 8px 32px rgba(236, 72, 153, 0.4);
    --shadow-cyan-glow: 0 0 40px rgba(6, 182, 212, 0.3);
    --shadow-magenta-glow: 0 0 40px rgba(236, 72, 153, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== ACCESSIBILITY ===== */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-coral);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-indigo);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

a {
    color: var(--secondary-cyan);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-magenta);
}

a:focus {
    outline: 2px solid var(--secondary-cyan);
    outline-offset: 2px;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-dark {
    background: var(--primary-navy);
    color: var(--bg-white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--bg-white);
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: none;
}

.sticky-cta.visible {
    transform: translateY(0);
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    color: white;
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.5), var(--shadow-magenta-glow);
    color: white;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-indigo);
    border: 2px solid var(--primary-indigo);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--electric-purple) 100%);
    color: white;
    border-color: transparent;
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.25rem;
}

.btn-full-mobile {
    width: 100%;
}

.btn-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: none;
    opacity: 0.9;
    margin-top: 6px;
    letter-spacing: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.video-container {
    margin: 3rem auto 0;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ===== SOCIAL PROOF BANNER ===== */
.social-proof-banner {
    background: var(--bg-white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat {
    animation: fadeIn 1s ease-out;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--electric-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--secondary-cyan) 0%, var(--primary-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--accent-magenta);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-magenta-glow);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.problem-card ul {
    list-style: none;
    padding: 0;
}

.problem-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-card li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-magenta);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== SOLUTION SECTION ===== */
.solution-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.08) 50%, rgba(236, 72, 153, 0.08) 100%);
    border-radius: 20px;
    border: 2px solid rgba(79, 70, 229, 0.2);
}

.solution-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-cyan) 0%, var(--accent-magenta) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: var(--shadow-cyan-glow);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: var(--font-display);
    color: rgba(255, 71, 87, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--electric-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.testimonial-highlight {
    font-weight: 600;
    color: var(--accent-magenta);
}

/* ===== INSTRUCTOR SECTION ===== */
.instructor-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
    color: white;
}

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

.instructor-image {
    position: relative;
}

.instructor-image-frame {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-cyan-glow);
    background: linear-gradient(135deg, #2d3e50 0%, #1a2332 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--secondary-cyan);
}

.instructor-image-placeholder {
    font-size: 8rem;
    opacity: 0.3;
}

.instructor-bio h2 {
    color: white;
    margin-bottom: 1rem;
}

.instructor-title {
    font-size: 1.25rem;
    color: var(--secondary-cyan);
    font-weight: 600;
    margin-bottom: 2rem;
}

.instructor-bio p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.instructor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.instructor-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-cyan) 0%, var(--accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.instructor-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== CURRICULUM SECTION ===== */
.curriculum-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.module-list {
    max-width: 900px;
    margin: 0 auto;
}

.module-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.module-item:hover {
    box-shadow: var(--shadow-md);
}

.module-header {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-left: 4px solid var(--accent-magenta);
}

.module-header:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
}

.module-title-group h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.module-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.module-toggle {
    font-size: 1.5rem;
    color: var(--accent-magenta);
    transition: var(--transition);
}

.module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.module-content.active {
    max-height: 2000px;
    transition: max-height 0.6s ease-in;
}

.module-content-inner {
    padding: 30px;
    border-top: 1px solid var(--border-color);
}

.module-description {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.lesson-list {
    list-style: none;
    padding: 0;
}

.lesson-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.lesson-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--secondary-cyan);
    font-size: 0.75rem;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.05) 0%, rgba(107, 207, 127, 0.02) 100%);
    border-radius: 20px;
    border: 2px solid rgba(107, 207, 127, 0.2);
}

.guarantee-badge {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success-green) 0%, var(--neon-lime) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.guarantee-section h2 {
    margin-bottom: 1.5rem;
}

.guarantee-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.guarantee-terms {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.guarantee-terms ul {
    list-style: none;
    padding: 0;
}

.guarantee-terms li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.125rem;
}

.guarantee-terms li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.5rem;
}

.guarantee-signature {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 2rem;
    font-size: 1.125rem;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-badge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-badge-text {
    font-weight: 600;
    color: var(--primary-navy);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--bg-light);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.value-stack {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.stack-item:last-child {
    border-bottom: none;
}

.stack-item-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stack-item-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-magenta);
}

.stack-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 3px solid var(--accent-magenta);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stack-total-label {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.stack-total-value {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: line-through;
    color: var(--text-light);
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.recommended {
    border-color: var(--accent-magenta);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-magenta-glow);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-pink) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-magenta-glow);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1.5rem;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 3rem;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.pricing-guarantee p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
}

/* ===== BONUS SECTION ===== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.bonus-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bonus-card::before {
    content: '🎁';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 6rem;
    opacity: 0.1;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bonus-value {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--electric-purple) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bonus-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===== FAQ SECTION ===== */
.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-navy);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary-cyan);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer.active {
    max-height: 1000px;
    transition: max-height 0.6s ease-in;
}

.faq-answer-inner {
    padding: 0 30px 30px 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #312e81 50%, #4c1d95 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid2)"/></svg>');
    opacity: 0.5;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.final-cta-section p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.urgency-banner {
    display: inline-block;
    background: rgba(236, 72, 153, 0.2);
    border: 2px solid var(--accent-magenta);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: var(--shadow-magenta-glow);
}

.urgency-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    font-size: 0.875rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 1rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .btn-subtitle {
        font-size: 0.8rem;
        margin-top: 8px;
        line-height: 1.3;
    }
    
    .btn-large {
        padding: 20px 24px;
        font-size: 1.1rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problem-grid,
    .benefit-grid,
    .testimonial-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .instructor-image-frame {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .final-cta-section p {
        font-size: 1.125rem;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .sticky-cta-text {
        font-size: 0.875rem;
    }
    
    /* Mobile Image Fixes */
    .section-header img,
    .solution-intro img,
    img[style*="max-width"] {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .bonus-card img,
    .instructor-image-frame img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .problem-card,
    .benefit-card,
    .testimonial-card,
    .bonus-card {
        padding: 30px 20px;
    }
    
    .module-header {
        padding: 20px;
    }
    
    .module-content-inner {
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.125rem;
    }
    
    .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .sticky-cta,
    .hero-cta-group,
    .btn,
    .video-container,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
