:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAF8;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-footer: #111111;
    --accent-primary: #F5A623;
    --accent-hover: #E09010;
    --accent-green: #22C55E;
    --accent-red: #EF4444;
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-on-accent: #FFFFFF;
    --border-light: #E8E8E4;
    --border-card: #E0DDD5;
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
    --shadow-cta: 0 4px 20px rgba(245, 166, 35, 0.35);
    --radius-btn: 8px;
    --radius-card: 12px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fraunces', Georgia, serif;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    z-index: 1000;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 10px;
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Page Layout Wrapper */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
    position: relative;
}

@media (max-width: 991px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .sidebar-column {
        display: none;
    }
}

.main-column .container {
    padding: 0;
    max-width: none;
}

.main-column section {
    padding: 40px 0;
    background: transparent !important;
    border: none !important;
}

.main-column section.skill-income,
.main-column section.final-cta {
    background: #1c2333 !important;
    /* Dark bluish card */
    color: white;
    border-radius: 16px;
    padding: 48px;
    margin: 40px 0;
}

.main-column section.skill-income h2,
.main-column section.skill-income p,
.main-column section.skill-income .skill-col h3,
.main-column section.final-cta h2,
.main-column section.final-cta p {
    color: white;
}

.main-column section.skill-income .skill-col ul li,
.main-column section.final-cta .final-trust span {
    color: rgba(255, 255, 255, 0.8);
}

.main-column section.skill-income .tab {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.main-column section.skill-income .tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-column section.skill-income .tab.active {
    background: white;
    color: #1c2333;
}

.sidebar-column {
    position: sticky;
    top: 20px;
    padding-top: 140px;
    padding-bottom: 80px;
    z-index: 10;
}

@media (max-width: 991px) {
    .sidebar-column {
        position: relative;
        top: 0;
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

section {
    padding: 60px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    gap: 8px;
    min-height: 48px;
    min-width: 44px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-on-accent);
    box-shadow: var(--shadow-cta);
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
    }

    50% {
        box-shadow: 0 4px 30px rgba(245, 166, 35, 0.55);
    }
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.45);
    animation: none;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-secondary:hover {
    background-color: var(--accent-primary);
    color: var(--text-on-accent);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

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

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

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page load animations */
.hero-badge {
    animation: fadeSlideUp 0.6s ease forwards;
    opacity: 0;
}

.hero h1 {
    animation: fadeSlideUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-subhead {
    animation: fadeSlideUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-meta {
    animation: fadeSlideUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-cta {
    animation: fadeSlideUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.community-card {
    animation: fadeSlideUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTION 1: Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #0f172a;
    color: white;
    font-size: 0.875rem;
    text-align: center;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
    min-width: 36px;
}

.countdown-block span {
    font-family: 'DM Sans', monospace;
    font-weight: 700;
    font-size: 1rem;
}

.countdown-block label {
    font-size: 0.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.countdown-sep {
    font-weight: 700;
    opacity: 0.7;
}

@media (max-width: 479px) {
    .announcement-bar {
        flex-direction: column;
        gap: 8px;
        padding: 8px 12px;
    }
    
    .countdown {
        gap: 4px;
    }
    
    .countdown-block {
        padding: 2px 6px;
        min-width: 28px;
    }
    
    .countdown-block span {
        font-size: 0.875rem;
    }
    
    .countdown-block label {
        font-size: 0.375rem;
    }
    
    .countdown-sep {
        font-size: 0.875rem;
    }
}

/* SECTION 2: Sticky Navigation */
nav {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: white;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

@media (max-width: 479px) {
    nav {
        top: 105px;
    }
}

nav.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-primary), #FF6B35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-links {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-secondary);
        transition: color 0.2s;
    }

    .nav-links a:hover {
        color: var(--text-primary);
    }
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-drawer {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 479px) {
    .mobile-drawer {
        top: 155px;
    }
}

.mobile-drawer.open {
    display: block;
}

.mobile-drawer a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.mobile-drawer .btn {
    width: 100%;
    margin-top: 16px;
}

/* SECTION 3: Hero */
.hero {
    padding: 80px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

@media (max-width: 767px) {
    .hero {
        padding: 32px 0 48px;
    }
}

.hero-grid {
    display: block;
}

/* Hero card inline styles override for mobile */
@media (max-width: 599px) {
    .hero-card {
        margin-top: 16px !important;
        padding: 16px !important;
    }
    
    .hero-card h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: var(--accent-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

@media (max-width: 479px) {
    .hero h1 {
        font-size: 1.75rem;
    }
}

.hero h1 .highlight {
    color: var(--accent-primary);
}

.hero-subhead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-cta .btn {
    height: 56px;
    font-size: 1rem;
    padding: 0 32px;
    border-radius: 10px;
}

.hero-secondary {
    display: block;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
}

.hero-secondary:hover {
    color: var(--accent-primary);
}

.hero-trust {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Community Card Widget */
/* Community Card Widget */
.community-card {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: rotate(-1deg);
    transition: var(--transition);
    will-change: transform;
    max-width: 320px;
    margin: 0 auto;
}

.community-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-thumbnail {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-thumbnail.automation-card,
.course-thumb.automation-card {
    background: radial-gradient(circle at 50% 120%, rgba(245, 166, 35, 0.4), transparent), #1a1a1a;
    border-bottom: 2px solid var(--accent-primary);
}

.card-content {
    padding: 16px;
}

.card-title {
    font-family: 'Fraunces', serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.card-subtitle {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-benefits {
    margin-bottom: 16px;
    list-style: none;
    padding: 0;
}

.card-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.card-benefits li::before {
    display: none;
}

.emoji-icon {
    font-size: 1rem;
    line-height: 1.2;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-val {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.stat-lbl {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: capitalize;
}

.card-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.avatar-stack .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-stack .avatar:first-child {
    margin-left: 0;
}

.card-btn {
    width: 100%;
    height: 48px;
    font-size: 0.9375rem;
    font-weight: 700;
    background-color: var(--accent-primary);
    color: var(--text-on-accent);
    border: none;
    box-shadow: var(--shadow-cta);
    margin-bottom: 12px;
    animation: cta-pulse 2s infinite;
}

.card-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.45), 0 0 30px rgba(245, 166, 35, 0.3);
    animation: none;
}

.card-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
}

.rating-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-avatars {
    display: flex;
}

.tiny-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid white;
    margin-left: -6px;
}

.tiny-avatar:first-child {
    margin-left: 0;
}

.rating-group .stars {
    color: #FFB400;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.rating-score {
    font-weight: 700;
    color: var(--text-primary);
}

.review-count {
    color: var(--text-muted);
}

.card-footer {
    display: flex;
    justify-content: center;
    padding: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: transparent;
    border-top: 1px solid var(--border-light);
}

.card-footer strong {
    color: var(--text-primary);
    margin-left: 4px;
    font-weight: 700;
}

/* SECTION 4: Social Proof Strip */
.social-proof {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.stat-item {
    position: relative;
}

@media (min-width: 768px) {
    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -16px;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
        width: 1px;
        background: var(--border-light);
    }
}

.stat-number {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* SECTION 5: Who This Is For */
.who-for {
    background: var(--bg-primary);
}

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

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 767px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.who-card {
    background: white;
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}

@media (max-width: 479px) {
    .who-card {
        padding: 20px;
    }
}

.who-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.who-card.active {
    border-left: 4px solid var(--accent-primary);
}

.who-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.who-card h3 {
    font-size: 1.125rem;
    font-family: 'Fraunces', serif;
    margin-bottom: 16px;
}

.who-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.who-card ul li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
}

/* SECTION 6: Pain Points */
.pain-points {
    background: var(--bg-secondary);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 599px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}

.pain-pill {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.pain-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.pain-pill .icon {
    font-size: 1.25rem;
}

.resolution {
    text-align: center;
    margin-bottom: 24px;
}

.resolution h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.resolution p {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.resolution .badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.badge-pill {
    background: var(--accent-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

/* SECTION 7: 12-Week Roadmap */
.roadmap {
    background: var(--bg-primary);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: none;
}

.tab.active {
    background: var(--accent-primary);
    color: white;
}

.tab:not(.active):hover {
    background: var(--border-light);
}

.roadmap-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roadmap-content.active {
    display: block;
    opacity: 1;
}

.roadmap-list {
    max-width: 700px;
    margin: 0 auto;
}

.roadmap-item {
    background: white;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.roadmap-item:hover {
    box-shadow: var(--shadow-card);
}

.roadmap-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    min-height: 48px;
}

@media (max-width: 479px) {
    .roadmap-header {
        padding: 14px;
        gap: 12px;
    }
    
    .roadmap-title {
        font-size: 0.9375rem;
    }
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.roadmap-title {
    flex-grow: 1;
    font-weight: 600;
}

.roadmap-chevron {
    transition: var(--transition);
    color: var(--text-muted);
}

.roadmap-item.open .roadmap-chevron {
    transform: rotate(180deg);
}

.roadmap-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.roadmap-item.open .roadmap-desc {
    max-height: 100px;
    padding-bottom: 20px;
}

.roadmap-cta {
    text-align: center;
    margin-top: 40px;
}

/* SECTION 8: What's Inside */
.whats-inside {
    background: var(--bg-secondary);
}

.courses-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.courses-slider::-webkit-scrollbar {
    display: none;
}

.course-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

@media (max-width: 479px) {
    .course-card {
        flex: 0 0 240px;
    }
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.course-thumb {
    height: 160px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, var(--accent-primary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.course-thumb h4 {
    color: white;
    font-size: 1.25rem;
    font-family: 'Fraunces', serif;
}

.play-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 1.125rem;
    font-family: 'Fraunces', serif;
    margin-bottom: 8px;
}

.course-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ai-tools-intro {
    text-align: center;
    margin: 48px 0 32px;
}

.ai-tools-intro h3 {
    font-size: 1.5rem;
    font-family: 'Fraunces', serif;
    margin-bottom: 8px;
}

.ai-tools-intro p {
    color: var(--text-secondary);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tool-card {
        padding: 16px;
    }
}

.tool-card {
    background: white;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.tool-card h4 {
    font-size: 1rem;
    font-family: 'Fraunces', serif;
    margin-bottom: 8px;
}

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

/* SECTION 9: From Skill to Income */
.skill-income {
    background: var(--bg-primary);
}

.skill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 599px) {
    .skill-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.skill-col h3 {
    font-size: 1.25rem;
    font-family: 'Fraunces', serif;
    margin-bottom: 20px;
}

.skill-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.skill-col ul li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.125rem;
}

.skill-cta {
    text-align: center;
    margin-top: 40px;
}



/* SECTION 11: Testimonials */
.testimonials {
    background: var(--bg-primary);
}

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

@media (max-width: 899px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
}

@media (max-width: 479px) {
    .testimonial-card {
        padding: 16px;
    }
}

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

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
}

/* SECTION 12: About Founder */
.about-founder {
    background: var(--bg-secondary);
}

.founder-photo {
    height: 400px;
    border-radius: 16px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

@media (max-width: 767px) {
    .founder-photo {
        height: 280px;
    }
}

.founder-photo span {
    color: white;
    font-size: 2rem;
    font-family: 'Fraunces', serif;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 599px) {
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}

.credential-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.credential-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.credential-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.credential-text strong {
    display: block;
    margin-bottom: 4px;
}

.credential-text span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* SECTION 13: Pricing */
.pricing {
    background: var(--bg-primary);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.toggle-option {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: none;
}

.toggle-option.active {
    background: var(--text-primary);
    color: white;
}

.toggle-badge {
    background: var(--accent-red);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    margin-left: 8px;
    vertical-align: middle;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-card);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.vip {
    border-color: var(--accent-primary);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-red);
    color: white;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-name {
    font-size: 1.25rem;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.pricing-price small {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 4px;
    transition: opacity 0.3s ease;
}

.pricing-savings {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9375rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    height: 52px;
    font-size: 1rem;
}

.pricing-card.premium .btn {
    box-shadow: var(--shadow-cta);
}

/* Single pricing card */
.pricing-cards.single-pricing {
    display: block;
}

.pricing-cards.single-pricing .pricing-card {
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 599px) {
    .pricing-cards.single-pricing .pricing-card {
        padding: 32px 24px;
    }
}

.value-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: center;
}

@media (max-width: 599px) {
    .value-pillars {
        grid-template-columns: 1fr;
    }
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.pillar-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.pillar-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-trust {
    text-align: center;
    margin-top: 32px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* SECTION 14: FAQ */
.faq {
    background: var(--bg-secondary);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    min-height: 48px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

@media (max-width: 479px) {
    .faq-question {
        padding: 14px 0;
        font-size: 0.9375rem;
    }
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-chevron {
    transition: var(--transition);
    color: var(--text-muted);
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-right: 40px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* SECTION 15: Final CTA */
.final-cta {
    background: var(--bg-dark);
    padding: 96px 0;
    text-align: center;
}

@media (max-width: 767px) {
    .final-cta {
        padding: 64px 0;
    }
}

.final-cta h2 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.final-countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 479px) {
    .final-countdown {
        gap: 8px;
    }
    
    .final-countdown-item .countdown-block {
        padding: 8px 12px;
    }
    
    .final-countdown-item .countdown-block span {
        font-size: 1.5rem !important;
    }
}

.final-cta .btn {
    height: 60px;
    font-size: 1.125rem;
    padding: 0 40px;
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.4);
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.final-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.urgency {
    color: var(--accent-primary);
    font-weight: 700;
    margin-top: 24px;
}

/* SECTION 16: Footer */
footer {
    background: var(--bg-footer);
    color: var(--text-muted);
    padding: 48px 0 32px;
}

@media (max-width: 479px) {
    footer {
        padding: 32px 0 24px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 479px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 16px;
    color: white;
}

.footer-brand p {
    font-size: 0.875rem;
    margin-bottom: 20px;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-primary);
    color: white;
}

.footer-col h4 {
    color: white;
    font-size: 0.875rem;
    font-family: 'Fraunces', serif;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
}

@media (max-width: 479px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================
   MOBILE & PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Offset body for fixed announcement bar */
body {
    padding-top: 40px;
    min-height: 100dvh;
}

/* Announcement bar stacks on very small screens — increase body offset */
@media (max-width: 479px) {
    body {
        padding-top: 85px;
    }
}

/* Hide nav CTA on mobile — hamburger menu already has a join button */
@media (max-width: 767px) {
    .nav-cta {
        display: none;
    }
}

/* Container: tighter horizontal padding on small screens */
@media (max-width: 479px) {
    .container {
        padding: 0 16px;
    }
}

/* Hero meta: smaller gap on narrow screens */
@media (max-width: 599px) {
    .hero-meta-left {
        gap: 8px !important;
        font-size: 0.75rem !important;
        flex-wrap: wrap;
    }
    
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Skill-income & final-cta: reduce horizontal padding on mobile */
@media (max-width: 599px) {
    .main-column section.skill-income,
    .main-column section.final-cta {
        padding: 32px 16px;
        margin: 24px 0;
        border-radius: 12px;
    }
}

/* Full-width CTA buttons on mobile */
@media (max-width: 599px) {
    .roadmap-cta .btn,
    .skill-cta .btn,
    .whats-inside .btn-primary,
    .final-cta .btn {
        display: block;
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
        box-sizing: border-box;
    }
}

/* Course cards slightly narrower on mobile */
@media (max-width: 599px) {
    .course-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 479px) {
    .course-card {
        flex: 0 0 220px;
    }
}

/* Pricing card: reduce padding on tiny screens */
@media (max-width: 479px) {
    .pricing-card {
        padding: 32px 20px;
    }
}

/* Section header: less bottom margin on mobile */
@media (max-width: 599px) {
    .section-header {
        margin-bottom: 32px;
    }
    .section-header p {
        font-size: 1rem;
    }
}

/* Sidebar community card: centered and full-width on mobile */
@media (max-width: 991px) {
    .sidebar-column {
        display: flex;
        justify-content: center;
    }
    .community-card {
        max-width: 420px;
        width: 100%;
        transform: none;
    }
}

/* Touch optimizations */
button,
.btn,
a.btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevent horizontal overflow */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

/* Better scroll behavior on iOS */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

/* Ensure iframes are responsive */
iframe {
    max-width: 100%;
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ============================================
   CLEAN MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet: ≤ 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9375rem;
    }
}

/* Mobile: ≤ 599px — announcement bar stacks, nav adjusts */
@media (max-width: 599px) {
    /* Announcement bar stacks vertically */
    .announcement-bar {
        flex-direction: column;
        gap: 6px;
        padding: 7px 12px;
        font-size: 0.8125rem;
    }

    /* Body offset for taller stacked bar */
    body {
        padding-top: 85px;
    }

    /* Nav sits below stacked bar */
    nav {
        top: 85px;
    }

    /* Mobile drawer sits below nav */
    .mobile-drawer {
        top: 140px;
    }

    /* Container tighter */
    .container {
        padding: 0 14px;
    }

    /* Hero */
    .hero {
        padding: 24px 0 32px;
    }

    .hero-card {
        padding: 16px !important;
        margin-top: 12px !important;
    }

    .hero-card h1 {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
    }

    /* Stats grid: 2 columns */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Single-column grids */
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .skill-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Tools grid: 2 columns */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Course cards narrower */
    .course-card {
        flex: 0 0 260px;
    }

    /* Skill/final CTA dark sections */
    .main-column section.skill-income,
    .main-column section.final-cta {
        padding: 32px 20px;
        margin: 24px 0;
    }

    /* Pricing card padding */
    .pricing-card {
        padding: 32px 24px;
    }

    /* Full-width CTA buttons */
    .roadmap-cta .btn,
    .skill-cta .btn,
    .whats-inside > div > .btn-primary,
    .final-cta .btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Founder photo shorter */
    .founder-photo {
        height: 200px;
    }

    /* FAQ answer max-height bump for longer answers */
    .faq-item.open .faq-answer {
        max-height: 300px;
    }

    /* Section header less bottom margin */
    .section-header {
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 1.375rem;
    }

    .section-header p {
        font-size: 0.9375rem;
    }

    /* Footer: 2-col on mobile */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    /* Final CTA countdown */
    .final-countdown {
        gap: 8px;
    }
}

/* Small mobile: ≤ 479px */
@media (max-width: 479px) {
    /* Course cards smaller */
    .course-card {
        flex: 0 0 220px;
    }

    /* Footer single column */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Hero h1 tighter */
    .hero-card h1 {
        font-size: 1.375rem !important;
    }

    /* Pricing tighter padding */
    .pricing-card {
        padding: 28px 20px;
    }
}
