/* ===== CSS Variables & Reset ===== */
:root {
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #a7f3d0;
    --green-300: #6ee7b7;
    --green-400: #34d399;
    --green-500: #10B981;
    --green-600: #059669;
    --green-700: #047857;
    --green-800: #065F46;
    --green-900: #064E3B;
    --red-500: #EF4444;
    --red-600: #DC2626;
    --amber-500: #F59E0B;
    --bg-primary: #060A08;
    --bg-secondary: #0A0F0C;
    --bg-card: #101A14;
    --bg-card-hover: #152019;
    --border-color: #1E3328;
    --border-light: #2A4D3A;
    --text-primary: #FFFFFF;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

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

ul {
    list-style: none;
}

/* ===== Utility ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--green-400), var(--green-500), var(--green-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: #fff;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-500), var(--green-400));
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.35), 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}
.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--border-light);
    background: rgba(255,255,255,0.03);
}

.btn-outline {
    background: transparent;
    color: var(--green-400);
    border: 1.5px solid var(--green-600);
}
.btn-outline:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--green-400);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 12px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: rgba(10, 15, 13, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    padding: 10px 0;
    border-bottom-color: var(--border-color);
    background: rgba(10, 15, 13, 0.9);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-500);
    transition: width 0.3s;
}
.nav-links a:hover {
    color: var(--text-primary);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--green-400);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-400);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-pair {
    font-weight: 600;
    font-size: 1.1rem;
}

.chart-change.positive {
    color: var(--green-400);
    font-weight: 600;
    font-size: 0.95rem;
}

.chart-canvas {
    margin-bottom: 20px;
}

.chart-line {
    width: 100%;
    height: auto;
}

.candlesticks {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 80px;
    justify-content: center;
}

.candle {
    width: 12px;
    position: relative;
    border-radius: 2px;
    animation: candleGrow 1.5s ease-out forwards;
}
.candle.green {
    background: var(--green-500);
    height: var(--height);
}
.candle.red {
    background: var(--red-500);
    height: var(--height);
}
.candle::before, .candle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
}
.candle::before {
    bottom: 100%;
    height: var(--wick-top);
}
.candle::after {
    top: 100%;
    height: var(--wick-bottom);
}
.candle.green::before, .candle.green::after {
    background: var(--green-500);
}
.candle.red::before, .candle.red::after {
    background: var(--red-500);
}

@keyframes candleGrow {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
}

/* Floating cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.float-card-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}
.float-card-2 {
    bottom: 20px;
    left: -30px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.float-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green-400);
}
.float-icon.amber {
    background: rgba(245, 158, 11, 0.15);
    color: var(--amber-500);
}

.float-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.float-value {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--border-color);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--green-500);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    margin-bottom: 64px;
}
.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-400);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Course Section ===== */
.course-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.course-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.course-modules {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.course-modules li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.2s;
}
.course-modules li:hover {
    border-color: var(--border-light);
    background: rgba(16, 185, 129, 0.06);
}

.module-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-500);
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 36px;
    text-align: center;
}

.course-modules strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.course-modules span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.course-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 32px;
}

/* Course card visual */
.course-visual {
    display: flex;
    justify-content: center;
}

.course-card-main {
    background: linear-gradient(145deg, var(--bg-card), #0f1f17);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    max-width: 380px;
    position: relative;
    overflow: hidden;
}
.course-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--green-400), var(--green-600));
}

.course-card-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green-400);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.course-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.course-card-main h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.course-card-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.course-card-stats {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}

.ccs-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-400);
}

.ccs-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.ccf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ccf-check {
    color: var(--green-500);
    font-weight: 700;
    font-size: 0.85rem;
}

/* ===== Mentorship Section ===== */
.mentorship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mentorship-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
}
.mentorship-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mentorship-card.featured {
    border-color: var(--green-600);
    background: linear-gradient(145deg, var(--bg-card), rgba(16, 185, 129, 0.05));
}
.mentorship-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--green-400));
    border-radius: 16px 16px 0 0;
}

.mc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.mc-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-400);
    margin-bottom: 20px;
}

.mentorship-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.mentorship-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.mc-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.mc-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Community Section ===== */
.community-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.cf-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cf-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-400);
    flex-shrink: 0;
}

.cf-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.cf-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Community visual */
.community-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.community-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    border: 3px solid var(--bg-card);
    margin-left: -10px;
}
.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--green-400);
    background: rgba(16, 185, 129, 0.1);
    border: 3px solid var(--bg-card);
    margin-left: -10px;
}

.community-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.community-stats-row {
    display: flex;
    justify-content: center;
    gap: 36px;
}

.cs-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-400);
}

.cs-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.tc-stars {
    color: var(--amber-500);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
}

.tc-author strong {
    display: block;
    font-size: 0.9rem;
}

.tc-author span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== CTA Section ===== */
.cta-section {
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 36px;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.social-links a:hover {
    color: var(--green-400);
    border-color: var(--green-600);
    background: rgba(16, 185, 129, 0.1);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--green-400);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-secondary) !important;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .features-grid,
    .mentorship-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .course-layout,
    .community-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .course-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-subtitle {
        margin: 0 auto 36px;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        padding: 20px 24px;
        gap: 16px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-actions .btn {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .features-grid,
    .mentorship-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 72px 0;
    }
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    .ea-hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .ea-hero-title {
        font-size: 2rem;
    }
    .ea-hero-subtitle {
        font-size: 1.1rem;
    }
    .ea-feature-pills {
        justify-content: center;
    }
    .ea-hero-cta {
        justify-content: center;
    }
    .ea-hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    .social-proof-bar .container {
        flex-direction: column;
        gap: 20px;
    }
    .sp-divider {
        width: 40px;
        height: 1px;
    }
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .lead-magnet-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .lead-magnet-benefits {
        text-align: left;
    }
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .founder-text {
        text-align: left;
    }
    .nav-ea-cta {
        display: none !important;
    }
    .nav-ea-cta-mobile {
        display: inline-flex !important;
    }
}

/* ===== EA Hero Section ===== */
.ea-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: #0B0B0B;
}

.ea-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 180, 80, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 80, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.ea-hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 180, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ea-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ea-hero-pretag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 180, 80, 0.1);
    border: 1px solid rgba(0, 180, 80, 0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #00B450;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    animation: eaPulse 3s ease-in-out infinite;
}

@keyframes eaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 80, 0.15); }
    50% { box-shadow: 0 0 20px 4px rgba(0, 180, 80, 0.1); }
}

.ea-hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.ea-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: #A0A0A0;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.ea-hero-body {
    font-size: 1.05rem;
    color: #CBD5E1;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 28px;
}

.ea-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.ea-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 180, 80, 0.08);
    border: 1px solid rgba(0, 180, 80, 0.18);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #CBD5E1;
}

.ea-pill .pill-check {
    color: #00B450;
}

.ea-hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.btn-ea-primary {
    background: linear-gradient(135deg, #009940, #00B450);
    color: #fff;
    box-shadow: 0 0 24px rgba(0, 180, 80, 0.25), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-ea-primary:hover {
    background: linear-gradient(135deg, #00B450, #00CC5C);
    box-shadow: 0 0 36px rgba(0, 180, 80, 0.35), 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-ea-outline {
    background: transparent;
    color: #A0A0A0;
    border: 1.5px solid rgba(160, 160, 160, 0.3);
}
.btn-ea-outline:hover {
    color: #fff;
    border-color: rgba(160, 160, 160, 0.6);
    background: rgba(255, 255, 255, 0.04);
}

.ea-hero-price {
    font-size: 0.85rem;
    color: #94A3B8;
    letter-spacing: 0.3px;
}

.ea-hero-visual {
    position: relative;
}

.ea-dashboard-card {
    background: linear-gradient(145deg, #111111, #0D0D0D);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.ea-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.ea-dashboard-pair {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.ea-dashboard-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: #00B450;
    background: rgba(0, 180, 80, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.ea-chart-area {
    position: relative;
    height: 140px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 180, 80, 0.02);
}

.ea-chart-area svg {
    width: 100%;
    height: 100%;
}

.ea-sma-labels {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.ea-sma-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #94A3B8;
}

.ea-sma-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.ea-sma-dot.fast { background: #00B450; }
.ea-sma-dot.slow { background: #F02828; }

.ea-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ea-stat {
    text-align: center;
}

.ea-stat-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #00B450;
}

.ea-stat-label {
    font-size: 0.7rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ea-dashboard-logo {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: 0.15;
}

/* ===== Social Proof Bar ===== */
.social-proof-bar {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #0B0B0B;
}

.social-proof-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #A0A0A0;
}

.sp-icon {
    color: #00B450;
    font-size: 1.1rem;
}

.sp-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
}

/* ===== Tools Section ===== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.tool-card.live {
    border-color: rgba(0, 180, 80, 0.4);
    background: linear-gradient(145deg, var(--bg-card), rgba(0, 180, 80, 0.04));
}
.tool-card.live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #009940, #00B450);
}

.tool-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.tool-status.live {
    color: #00B450;
    background: rgba(0, 180, 80, 0.1);
    animation: eaPulse 3s ease-in-out infinite;
}

.tool-status.coming {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
}

.tool-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.tool-card > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #00B450;
    margin-bottom: 20px;
}

.tool-card .btn {
    width: 100%;
    justify-content: center;
}

/* ===== Lead Magnet Section ===== */
.lead-magnet-section {
    background: linear-gradient(160deg, #071A10, #0A1F14, #060A08);
    border-top: 1px solid rgba(0, 180, 80, 0.12);
    border-bottom: 1px solid rgba(0, 180, 80, 0.12);
    position: relative;
    overflow: hidden;
}

.lead-magnet-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 80, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.lead-magnet-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-magnet-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.lead-magnet-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.lead-magnet-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.lm-benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.lm-benefit .lm-check {
    color: #00B450;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lm-input-row {
    display: flex;
    gap: 12px;
}

.lm-input-row input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.lm-input-row input:focus {
    border-color: #00B450;
}

.lm-input-row input::placeholder {
    color: #64748B;
}

.lm-input-row .btn {
    flex-shrink: 0;
}

.lm-trust {
    font-size: 0.8rem;
    color: #64748B;
}

.lm-success {
    display: none;
    padding: 20px;
    background: rgba(0, 180, 80, 0.08);
    border: 1px solid rgba(0, 180, 80, 0.2);
    border-radius: 12px;
    color: #00B450;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.lm-success.show {
    display: block;
}

/* Lead magnet visual */
.lead-magnet-visual {
    display: flex;
    justify-content: center;
}

.lm-pack-card {
    background: linear-gradient(145deg, var(--bg-card), #0f1f17);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    max-width: 340px;
}

.lm-pack-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.lm-pack-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.lm-pack-card > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.lm-pack-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.lm-pack-items li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.lm-pack-items li::before {
    content: '📄';
    font-size: 0.75rem;
}

/* ===== Founder Section ===== */
.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.founder-photo-card {
    background: linear-gradient(145deg, var(--bg-card), #0f1f17);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.founder-photo-card .watermark {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.founder-photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(0, 180, 80, 0.08);
    border: 2px solid rgba(0, 180, 80, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.founder-photo-placeholder svg {
    width: 60px;
    height: 60px;
    color: rgba(0, 180, 80, 0.3);
}

.founder-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.founder-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.founder-socials a:hover {
    color: #00B450;
    border-color: rgba(0, 180, 80, 0.4);
    background: rgba(0, 180, 80, 0.1);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.founder-title-label {
    color: #00B450;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.founder-bio p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.founder-ctas {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* ===== Mentorship Pricing ===== */
.mc-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #00B450;
    margin-bottom: 4px;
}

.mc-price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.mc-footnote {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 32px;
    font-style: italic;
}

/* ===== Nav EA CTA ===== */
.nav-ea-cta {
    background: linear-gradient(135deg, #009940, #00B450) !important;
    color: #fff !important;
    font-size: 0.85rem !important;
    padding: 10px 20px !important;
}
.nav-ea-cta:hover {
    background: linear-gradient(135deg, #00B450, #00CC5C) !important;
    box-shadow: 0 0 20px rgba(0, 180, 80, 0.3);
}

.nav-ea-cta-mobile {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, #009940, #00B450);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 180, 80, 0.3);
}

/* ===== Email Capture Modal ===== */
.notify-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.notify-modal-overlay.show {
    display: flex;
}

.notify-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
}

.notify-modal h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.notify-modal p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.notify-modal input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    margin-bottom: 14px;
}
.notify-modal input:focus {
    border-color: #00B450;
}

.notify-modal .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.notify-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
}
.notify-modal-close:hover {
    color: var(--text-primary);
}

/* ===== FAQ Accordion ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #00B450;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #00B450;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Blog Styles ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--border-light);
}

.blog-card-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card .btn {
    align-self: flex-start;
}

/* Blog post page */
.blog-post-header {
    padding: 160px 0 40px;
    text-align: center;
}

.blog-post-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
}

.blog-post-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-style: italic;
}

.blog-post-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.blog-post-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.blog-share {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.blog-share span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.blog-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.blog-share a:hover {
    color: #00B450;
    border-color: rgba(0, 180, 80, 0.4);
}

/* Thank you page */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 160px 0 80px;
}

.thankyou-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.thankyou-section h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.thankyou-section > .container > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 40px;
}

.thankyou-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto 40px;
}

.thankyou-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.2s;
}

.thankyou-link:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.thankyou-link .tl-icon {
    font-size: 1.2rem;
}

.thankyou-link strong {
    font-size: 0.92rem;
}

.thankyou-link span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.thankyou-redirect {
    font-size: 0.82rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .ea-hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .lead-magnet-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-post-title {
        font-size: 2rem;
    }
    .lm-input-row {
        flex-direction: column;
    }
    .thankyou-section h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .blog-post-title {
        font-size: 1.6rem;
    }
    .blog-post-header {
        padding: 120px 0 24px;
    }
    .blog-post-content {
        padding: 24px 16px 60px;
    }
    .faq-question {
        padding: 16px 18px;
        font-size: 0.88rem;
    }
    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.88rem;
    }
    .thankyou-section h1 {
        font-size: 1.5rem;
    }
    .thankyou-section {
        padding: 120px 0 60px;
    }
}
