/* ============================================
   PROMPT ENGINEERING: FROM IDEA TO ACTION
   Landing Page Styles
   ============================================ */

:root {
    --bg-primary: #0D1B2A;
    --bg-secondary: #1B2838;
    --bg-card: #162232;
    --bg-card-hover: #1d2e42;
    --accent-blue: #4A9EFF;
    --accent-blue-hover: #6DB3FF;
    --accent-purple: #7B68EE;
    --accent-purple-hover: #9180FF;
    --accent-green: #4ADE80;
    --text-primary: #FFFFFF;
    --text-secondary: #B0BEC5;
    --text-muted: #6B7D8D;
    --border-color: rgba(74, 158, 255, 0.12);
    --border-color-strong: rgba(74, 158, 255, 0.25);
    --gradient-blue-purple: linear-gradient(135deg, #4A9EFF, #7B68EE);
    --gradient-bg: linear-gradient(180deg, #0D1B2A 0%, #1B2838 100%);
    --shadow-glow: 0 0 40px rgba(74, 158, 255, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.28);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); font-size: 16px; }

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-blue-hover); }

.container {
    width: min(1140px, calc(100% - 48px));
    margin: 0 auto;
}

.nav-container {
    width: min(1140px, calc(100% - 48px));
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }

.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-align: center; margin-bottom: 1rem; }
.section-subtitle { text-align: center; color: var(--text-secondary); font-size: 1.05rem; max-width: 700px; margin: 0 auto 3rem; line-height: 1.7; }
.section-body { text-align: center; color: var(--text-secondary); font-size: 1.1rem; max-width: 720px; margin: 0 auto 1.25rem; line-height: 1.8; }
.text-gradient { background: var(--gradient-blue-purple); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section { padding: 100px 0; position: relative; }
.section:nth-child(even) { background: var(--bg-secondary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-size: 1rem; font-weight: 600; font-family: var(--font-family); border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all 0.25s ease; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--accent-blue); color: #fff; box-shadow: 0 4px 16px rgba(74, 158, 255, 0.3); }
.btn-primary:hover { background: var(--accent-blue-hover); color: #fff; box-shadow: 0 6px 24px rgba(74, 158, 255, 0.45); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-color-strong); }
.btn-ghost:hover { color: var(--text-primary); border-color: var(--accent-blue); background: rgba(74, 158, 255, 0.06); }
.btn-outline { background: transparent; color: var(--accent-blue); border: 2px solid var(--accent-blue); }
.btn-outline:hover { background: var(--accent-blue); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; border-radius: var(--radius-md); }
.btn-full { width: 100%; }

/* ============================================
   NAVIGATION
   Handled by global.css — Academy pages now share
   the same nav as all other site pages.
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.hero { position: relative; display: flex; align-items: center; padding: calc(var(--nav-height) + 60px) 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(74, 158, 255, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 70% 20%, rgba(123, 104, 238, 0.06) 0%, transparent 50%); }
.hero-grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(74, 158, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 158, 255, 0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%); }

.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-headline { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.03em; }
.hero-subheadline { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 36px; max-width: 540px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.trust-bar { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; }
.trust-item i { color: var(--accent-blue); font-size: 0.8rem; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-image-wrapper { position: relative; max-width: 460px; width: 100%; }
.hero-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); position: relative; z-index: 1; }
.hero-image-glow { position: absolute; inset: -20px; background: radial-gradient(ellipse at center, rgba(74, 158, 255, 0.15) 0%, transparent 70%); z-index: 0; filter: blur(30px); }

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem { overflow: hidden; }
.problem-visual { display: flex; align-items: stretch; gap: 32px; max-width: 800px; margin: 48px auto 0; justify-content: center; }
.output-card { flex: 1; max-width: 340px; border-radius: var(--radius-md); padding: 28px; position: relative; }
.output-vague { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); opacity: 0.7; }
.output-structured { background: var(--bg-card); border: 1px solid var(--border-color-strong); box-shadow: var(--shadow-glow); }
.output-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.output-vague .output-label { color: #FF6B6B; }
.output-structured .output-label { color: #4ADE80; }
.output-content { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.blur-line { height: 10px; background: rgba(255, 255, 255, 0.08); border-radius: 4px; filter: blur(2px); }
.structured-line { display: flex; align-items: center; gap: 10px; }
.struct-tag { font-size: 0.7rem; font-weight: 600; color: var(--accent-blue); text-transform: uppercase; letter-spacing: 0.05em; min-width: 54px; }
.struct-bar { height: 10px; background: linear-gradient(90deg, rgba(74, 158, 255, 0.25), rgba(123, 104, 238, 0.25)); border-radius: 4px; display: block; }
.output-tag { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.output-structured .output-tag { color: var(--accent-blue); }
.output-arrow { display: flex; align-items: center; color: var(--accent-blue); font-size: 1.5rem; flex-shrink: 0; }

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-table { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 48px auto 0; }
.comparison-col { border-radius: var(--radius-md); overflow: hidden; }
.comparison-other { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); }
.comparison-this { background: var(--bg-card); border: 1px solid var(--border-color-strong); box-shadow: var(--shadow-glow); }
.comparison-header { padding: 20px 24px; font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border-color); }
.comparison-other .comparison-header { color: var(--text-muted); background: rgba(255, 255, 255, 0.02); }
.comparison-this .comparison-header { color: var(--accent-blue); background: rgba(74, 158, 255, 0.05); }
.comparison-item { padding: 16px 24px; font-size: 0.95rem; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.comparison-item:last-child { border-bottom: none; }
.comparison-this .comparison-item { color: var(--text-primary); }

/* ============================================
   CHEATSHEET / NEWSLETTER FORM SECTION
   ============================================ */
.section-cheatsheet-form {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #121d2e 50%, var(--bg-secondary) 100%);
    overflow: hidden;
    position: relative;
}
.section-cheatsheet-form::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.cheatsheet-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cheatsheet-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.12);
    color: var(--accent-green);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}
.cheatsheet-form-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cheatsheet-form-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}
/* Blurred cheatsheet preview */
.cheatsheet-preview { position: relative; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 24px; max-width: 420px; border: 1px solid var(--border-color-strong); }
.cheatsheet-preview-img { width: 100%; height: auto; display: block; filter: blur(2px); transition: filter 0.3s ease; }
.cheatsheet-preview:hover .cheatsheet-preview-img { filter: blur(4px); }
.cheatsheet-preview-lock { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: rgba(13, 27, 42, 0.45); transition: background 0.3s ease; }
.cheatsheet-preview:hover .cheatsheet-preview-lock { background: rgba(13, 27, 42, 0.6); }
.cheatsheet-preview-lock i { font-size: 2rem; color: var(--accent-blue); opacity: 0.9; }
.cheatsheet-preview-lock span { font-size: 0.85rem; font-weight: 600; color: #fff; background: rgba(74, 158, 255, 0.25); padding: 6px 16px; border-radius: 100px; border: 1px solid rgba(74, 158, 255, 0.4); }

.cheatsheet-form-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cheatsheet-form-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.cheatsheet-form-perks li i {
    color: var(--accent-green);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.cheatsheet-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color-strong);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-glow);
}

/* Form Styles */
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); }
.form-optional { font-weight: 400; color: var(--text-muted); font-size: 0.82rem; }
.form-required { color: #FF6B6B; }
.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color-strong);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--text-primary);
    outline: none;
    transition: all 0.25s ease;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.15); background: rgba(255, 255, 255, 0.07); }
.form-group input.error { border-color: #FF6B6B; box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15); }
.form-error { font-size: 0.82rem; color: #FF6B6B; display: none; }
.form-error.visible { display: block; }
.form-privacy { font-size: 0.78rem; color: var(--text-muted); text-align: center; line-height: 1.5; }

/* Form Success State */
.form-success { text-align: center; padding: 20px 0; }
.form-success-icon { font-size: 3rem; color: var(--accent-green); margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 24px; }
.form-success .btn { margin-bottom: 16px; }
.form-success-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }

.btn-loading { pointer-events: none; opacity: 0.7; }
.btn-loading .fa-download { display: none; }
.btn-loading::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   COURSE GALLERY — CAROUSEL
   ============================================ */
/* Keep legacy grid styles for fallback */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-color); transition: all 0.3s ease; background: var(--bg-card); }
.gallery-item:hover { border-color: var(--border-color-strong); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.gallery-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-caption { padding: 16px 20px; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.gallery-caption strong { color: var(--text-primary); }

/* Carousel component */
.carousel {
    position: relative;
    margin-top: 48px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.carousel-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color-strong);
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.carousel-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.4);
}
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 8px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-color-strong);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.carousel-dot:hover { background: var(--accent-blue); opacity: 0.7; }
.carousel-dot.active {
    background: var(--accent-blue);
    width: 28px;
    border-radius: 5px;
}

/* Carousel counter text */
.carousel-counter {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-bottom: 12px;
}

/* ============================================
   DELIVERABLES SECTION
   ============================================ */
.prompt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.prompt-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}
.prompt-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-blue); opacity: 0; transition: opacity 0.3s ease; }
.prompt-card:hover { border-color: var(--border-color-strong); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.prompt-card:hover::before { opacity: 1; }
.prompt-card[data-prompt="P2"]::before { background: var(--accent-purple); }
.prompt-card[data-prompt="P3"]::before { background: var(--gradient-blue-purple); }

.prompt-card-badge { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(74, 158, 255, 0.12); color: var(--accent-blue); font-weight: 800; font-size: 0.9rem; margin-bottom: 20px; }
.badge-purple { background: rgba(123, 104, 238, 0.12); color: var(--accent-purple); }
.badge-gradient { background: linear-gradient(135deg, rgba(74, 158, 255, 0.12), rgba(123, 104, 238, 0.12)); color: var(--accent-blue); }

.prompt-card-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.prompt-card-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.prompt-card-tag { font-size: 0.82rem; font-weight: 600; color: var(--accent-blue); display: flex; align-items: center; gap: 8px; padding-top: 16px; border-top: 1px solid var(--border-color); }
.prompt-card[data-prompt="P2"] .prompt-card-tag { color: var(--accent-purple); }

.cheatsheet-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px; max-width: 680px; margin-left: auto; margin-right: auto; }
.cheatsheet-card { display: flex; align-items: center; gap: 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 24px; transition: all 0.3s ease; }
.cheatsheet-card:hover { border-color: var(--accent-purple); box-shadow: 0 0 20px rgba(123, 104, 238, 0.1); }
.cheatsheet-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(123, 104, 238, 0.12); color: var(--accent-purple); border-radius: var(--radius-sm); font-size: 1.2rem; flex-shrink: 0; }
.cheatsheet-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.cheatsheet-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.experience-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 36px; transition: all 0.3s ease; }
.experience-card:hover { border-color: var(--border-color-strong); transform: translateY(-2px); }
.experience-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(74, 158, 255, 0.1); color: var(--accent-blue); border-radius: var(--radius-md); font-size: 1.3rem; margin-bottom: 20px; }
.experience-card:nth-child(2) .experience-icon { background: rgba(123, 104, 238, 0.1); color: var(--accent-purple); }
.experience-card:nth-child(3) .experience-icon { background: rgba(74, 222, 128, 0.1); color: #4ADE80; }
.experience-card:nth-child(4) .experience-icon { background: rgba(251, 191, 36, 0.1); color: #FBBF24; }
.experience-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.experience-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   CURRICULUM SECTION
   ============================================ */
.curriculum-accordion { max-width: 760px; margin: 48px auto 0; }
.accordion-item { border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; background: var(--bg-card); transition: border-color 0.3s ease; }
.accordion-item:hover { border-color: var(--border-color-strong); }
.accordion-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; background: transparent; border: none; color: var(--text-primary); font-family: var(--font-family); cursor: pointer; transition: background 0.2s ease; }
.accordion-header:hover { background: rgba(74, 158, 255, 0.03); }
.accordion-module-info { display: flex; align-items: center; gap: 16px; text-align: left; }
.accordion-module-num { font-size: 0.78rem; font-weight: 700; color: var(--accent-blue); text-transform: uppercase; letter-spacing: 0.05em; min-width: 70px; }
.accordion-module-title { font-size: 1.05rem; font-weight: 600; }
.accordion-module-meta { font-size: 0.82rem; color: var(--text-muted); white-space: nowrap; }
.accordion-icon { color: var(--text-muted); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 28px; }
.accordion-item.active .accordion-body { max-height: 200px; padding: 0 28px 22px; }
.accordion-body p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; padding-top: 8px; border-top: 1px solid var(--border-color); }

/* ============================================
   OUTCOMES SECTION
   ============================================ */
.outcomes-list { max-width: 720px; margin: 48px auto 0; }
.outcome-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border-color); }
.outcome-item:last-child { border-bottom: none; }
.outcome-check { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: rgba(74, 222, 128, 0.12); color: #4ADE80; border-radius: 50%; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.outcome-item p { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   INCLUDES SECTION
   ============================================ */
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.include-item { display: flex; align-items: center; gap: 16px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 20px 24px; transition: all 0.3s ease; }
.include-item:hover { border-color: var(--border-color-strong); }
.include-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(74, 158, 255, 0.08); color: var(--accent-blue); border-radius: var(--radius-sm); font-size: 0.95rem; flex-shrink: 0; }
.include-item span { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================
   REQUIREMENTS SECTION
   ============================================ */
.requirements-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 780px; margin: 48px auto 0; }
.req-col h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.req-need h3 { color: #4ADE80; }
.req-no-need h3 { color: #FF6B6B; }
.req-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }
.req-yes i { color: #4ADE80; margin-top: 4px; }
.req-no i { color: #FF6B6B; margin-top: 4px; }
.req-closing { text-align: center; margin-top: 48px; font-size: 1.2rem; font-weight: 700; color: var(--text-primary); }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-card-wrapper { display: flex; justify-content: center; margin-top: 48px; }
.pricing-card { position: relative; background: var(--bg-card); border: 1px solid var(--border-color-strong); border-radius: var(--radius-xl); padding: 48px; max-width: 440px; width: 100%; text-align: center; overflow: hidden; }
.pricing-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(74, 158, 255, 0.12) 0%, transparent 70%); pointer-events: none; }
.pricing-badge { display: inline-block; background: var(--accent-purple); color: #fff; font-size: 0.82rem; font-weight: 700; padding: 6px 20px; border-radius: 100px; margin-bottom: 24px; letter-spacing: 0.03em; }
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin-bottom: 8px; }
.pricing-old { font-size: 1.5rem; color: var(--text-muted); text-decoration: line-through; font-weight: 500; }
.pricing-current { font-size: 4rem; font-weight: 800; color: var(--text-primary); line-height: 1; letter-spacing: -0.03em; }
.pricing-subtitle { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 32px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 0.95rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: #4ADE80; font-size: 0.8rem; }
.pricing-alt { font-size: 0.88rem; color: var(--text-muted); margin-top: 16px; }
.pricing-alt a { color: var(--accent-blue); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-accordion { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; background: transparent; border: none; color: var(--text-primary); font-family: var(--font-family); font-size: 1.05rem; font-weight: 600; cursor: pointer; text-align: left; gap: 16px; transition: color 0.2s ease; }
.faq-question:hover { color: var(--accent-blue); }
.faq-icon { color: var(--accent-blue); font-size: 0.9rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-final-cta { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); text-align: center; position: relative; overflow: hidden; }
.section-final-cta::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(74, 158, 255, 0.06) 0%, transparent 70%); pointer-events: none; }
.final-cta-content { position: relative; z-index: 1; }
.final-cta-body { font-size: 1.15rem; color: var(--text-secondary); max-width: 560px; margin: 16px auto 40px; line-height: 1.8; }
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #060e18; border-top: 1px solid var(--border-color); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; font-weight: 600; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--border-color-strong);
    color: var(--text-secondary); transition: all 0.2s; text-decoration: none;
}
.footer-social a:hover { background: var(--accent-blue); color: #fff; border-color: var(--accent-blue); }
.footer-company-info {
    margin-top: 32px; padding: 16px 0; border-top: 1px solid var(--border-color);
    text-align: center;
}
.footer-company-info p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }
.footer-company-info p strong { color: var(--text-secondary); }
.footer-company-info i { margin-right: 6px; color: var(--accent-blue); font-size: 0.8rem; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-logo-link { display: inline-block; }
.footer-logo-img { height: 48px; width: auto; margin-bottom: 8px; }
.footer-academy-label { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-top: 6px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); margin-top: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-secondary); font-size: 0.9rem; text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); margin-top: 20px; padding: 20px 0; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/*
 * Footer Newsletter placement normalization
 * See css/global.css for the full explanation. Mirrors the same behavior so that
 * `.footer-newsletter` rendered outside the 4-column grid stays compact (right-aligned)
 * instead of stretching full-width.
 */
.footer > .container > .footer-newsletter,
.footer .container > .footer-newsletter {
    max-width: 320px;
    margin-left: auto;
    margin-right: 0;
    margin-top: 32px;
}
.footer-grid > .footer-newsletter {
    grid-column: 4 / 5;
    max-width: 100%;
    margin-top: 0;
}
@media (max-width: 768px) {
    .footer > .container > .footer-newsletter,
    .footer .container > .footer-newsletter,
    .footer-grid > .footer-newsletter {
        max-width: 100%;
        margin-left: 0;
        grid-column: 1 / -1;
    }
}

/* ---- Footer Newsletter (aligned with global.css — compact column layout) ---- */
.footer-newsletter { margin-top: 24px; }
.footer-newsletter h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}
.footer-newsletter h4 i { margin-right: 6px; color: var(--accent-blue); }
.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
}
.footer-newsletter-form input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.88rem;
    transition: border-color 0.2s;
    min-height: 40px;
}
.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(74,158,255,0.15);
}
.footer-newsletter-form input::placeholder { color: var(--text-muted); }
.footer-newsletter-form button {
    padding: 10px 20px;
    background: var(--accent-blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    align-self: flex-start;
}
.footer-newsletter-form button:hover { background: var(--accent-blue-hover, #3b8de8); transform: translateY(-1px); }
.footer-newsletter-msg { font-size: 0.8rem; margin-top: 4px; }
.footer-newsletter-msg.success { color: var(--accent-green); }
.footer-newsletter-msg.error { color: #ef4444; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-subheadline { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .trust-bar { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-image-wrapper { max-width: 360px; }
    .prompt-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .experience-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
    .includes-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-table { grid-template-columns: 1fr; max-width: 480px; }
    .cheatsheet-form-wrapper { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .cheatsheet-form-perks { align-items: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .section { padding: 72px 0; }
    .nav-logo-img { height: 32px; }
    .hero { min-height: auto; padding-top: calc(var(--nav-height) + 40px); padding-bottom: 40px; }
    .hero-headline { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .trust-bar { gap: 12px; }
    .trust-item { font-size: 0.78rem; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .problem-visual { flex-direction: column; align-items: center; }
    .output-card { max-width: 100%; }
    .output-arrow { transform: rotate(90deg); }
    .comparison-table { grid-template-columns: 1fr; }
    .cheatsheet-cards { grid-template-columns: 1fr; }
    .cheatsheet-form-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .cheatsheet-form-box { padding: 28px 20px; }
    .includes-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .carousel-btn { width: 36px; height: 36px; font-size: 0.9rem; }
    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
    .requirements-grid { grid-template-columns: 1fr; gap: 32px; }
    .pricing-card { padding: 32px 24px; }
    .pricing-current { font-size: 3rem; }
    .accordion-module-info { flex-direction: column; align-items: flex-start; gap: 4px; }
    .accordion-module-meta { font-size: 0.75rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-content { flex-direction: column; gap: 24px; }
    .footer-links { flex-direction: column; gap: 10px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-newsletter-form { flex-direction: column; }
    .footer-newsletter-form input, .footer-newsletter-form button { width: 100%; flex: none; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .final-cta-buttons .btn { width: 100%; max-width: 340px; }
}

@media (max-width: 480px) {
    .container { width: min(1140px, calc(100% - 32px)); }
    .hero-image-wrapper { max-width: 280px; }
    .prompt-card { padding: 24px; }
    .experience-card { padding: 28px; }
    .cheatsheet-form-box { padding: 24px 16px; }
}
