/* DARE Retreat Website Styles */

/* CSS Variables */
:root {
    --color-white: #FFFFFF;
    --color-cream: #F8F2FF;
    --color-lavender-light: #EFEBFF;
    --color-lavender: #C1ADE1;
    --color-purple: #8F70C0;
    --color-purple-dark: #492584;
    --color-navy: #1B004D;
    --color-dark: #1B004D;
    --color-gold: #FFD485;
    --color-red: #EB5757;
    --color-green: #27AE60;
    --gradient-hero: linear-gradient(135deg, #8F70C0 0%, #492584 100%);
    --gradient-light: linear-gradient(180deg, #EFEBFF 0%, #FFFFFF 100%);
    --gradient-soft: linear-gradient(180deg, #F8F2FF 0%, #FFFFFF 100%);
    --gradient-gold: linear-gradient(135deg, #FFD485 0%, #F2B65A 100%);
    --shadow-soft: 0 4px 20px rgba(143, 112, 192, 0.15);
    --shadow-card: 0 8px 32px rgba(27, 0, 77, 0.1);
    --shadow-lg: 0 16px 48px rgba(27, 0, 77, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-navy);
    background-color: var(--color-white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(27, 0, 77, 0.95);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-card);
}

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

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.nav-cta {
    background: var(--color-gold) !important;
    color: var(--color-navy) !important;
    padding: 12px 24px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    margin: 6px 0;
    transition: all 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-hero);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(143, 112, 192, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(143, 112, 192, 0.45);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-purple);
    border: 2px solid var(--color-lavender);
}

.btn-secondary:hover {
    background: var(--color-cream);
    border-color: var(--color-purple);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 8px 24px rgba(255, 212, 133, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 212, 133, 0.5);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-navy);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* Hero Section - Contained Image */
.hero-banner {
    padding-top: 100px;
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--color-dark);
}

.hero-banner a {
    display: block;
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
}

.hero-banner img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Hero Video Section */
.hero-video {
    padding: 60px 0;
    background: var(--gradient-light);
    text-align: center;
}

.hero-video .container {
    max-width: 1200px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.hero-banner img,
.hero-banner video {
    width: 100%;
    height: auto;
    display: block;
}

/* Secondary Hero / Intro Section */
.intro-section {
    padding: 52px 0;
    background: var(--gradient-light);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.event-times {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-soft);
    display: inline-block;
}

.event-times h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 16px;
}

.event-times ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.event-times li {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-navy);
    padding: 6px 0;
    border-bottom: 1px solid var(--color-lavender-light);
}

.event-times li:last-child {
    border-bottom: none;
}

.intro-section h1 span {
    color: var(--color-purple);
}

.intro-section p {
    font-size: 1.15rem;
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 32px;
}

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

/* Problem Section with Images */
.problem {
    padding: 64px 0;
    background: var(--color-white);
}

.problem-grid {
    max-width: 800px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 24px;
    line-height: 1.3;
}

.problem-content p {
    color: var(--color-navy);
    opacity: 0.75;
    margin-bottom: 20px;
}

.problem-highlight {
    background: var(--gradient-soft);
    padding: 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-purple);
    margin-top: 32px;
}

.problem-highlight p {
    font-weight: 600;
    color: var(--color-navy);
    opacity: 1;
    margin: 0;
}

/* Solution Section */
.solution {
    padding: 64px 0;
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-purple);
    background: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-navy);
    opacity: 0.7;
}

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

.pillar-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.pillar-card-content {
    padding: 32px;
}

.pillar-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-lavender-light);
    color: var(--color-purple);
    font-size: 1rem;
    font-weight: 800;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--color-navy);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Schedule Section */
.schedule {
    padding: 64px 0;
    background: var(--color-white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.schedule-card {
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.schedule-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--color-navy);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-bottom: 20px;
}

.schedule-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.schedule-card p {
    color: var(--color-navy);
    opacity: 0.75;
    margin-bottom: 16px;
    line-height: 1.7;
}

.schedule-card p:last-child {
    margin-bottom: 0;
}

.schedule-intro {
    font-weight: 600;
    font-style: italic;
    opacity: 0.9 !important;
}

.schedule-highlight {
    font-weight: 600;
    color: var(--color-purple) !important;
    opacity: 1 !important;
}

.schedule-space {
    background: var(--gradient-soft);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(139, 115, 179, 0.2);
}

.schedule-space h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.schedule-space p {
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 16px;
    line-height: 1.8;
}

.schedule-space p:last-child {
    margin-bottom: 0;
}

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

    .schedule-card {
        padding: 30px;
    }

    .schedule-space {
        padding: 30px;
    }
}

/* Call Times & Time Zones */
.times {
    padding: 64px 0;
    background: var(--color-cream);
}

.times-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 44px 48px;
    text-align: center;
}

.times-day {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.times-day svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-purple);
}

.times-day-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
}

.times-range {
    display: block;
    font-weight: 600;
    color: var(--color-purple);
}

.times-zones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0 28px;
    padding-top: 32px;
    border-top: 1px solid var(--color-lavender-light);
}

.times-zone {
    background: var(--gradient-light);
    border-radius: var(--radius-md);
    padding: 24px;
}

.times-zone-time {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-purple-dark);
}

.times-zone-label {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    color: var(--color-navy);
    opacity: 0.7;
}

.times-note {
    color: var(--color-navy);
    opacity: 0.65;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .times-card {
        padding: 32px 24px;
    }

    .times-zones {
        grid-template-columns: 1fr;
    }
}

/* Mid CTA */
.mid-cta {
    padding: 56px 0;
    background: var(--color-navy);
    text-align: center;
}

.mid-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.mid-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.mid-cta p {
    color: var(--color-lavender);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* Outcomes Section */
.outcomes {
    padding: 64px 0;
    background: var(--color-white);
}

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

.outcome-card {
    background: var(--gradient-soft);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-4px);
}

.outcome-icon {
    width: 64px;
    height: 64px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-soft);
}

.outcome-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-purple);
}

.outcome-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.outcome-card p {
    font-size: 0.9rem;
    color: var(--color-navy);
    opacity: 0.7;
}

/* Facilitators Section */
.facilitators {
    padding: 64px 0;
    background: var(--color-white);
}

.facilitator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.facilitator-grid.single {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
}

.facilitator-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.facilitator-content {
    padding: 32px;
    text-align: center;
}

.facilitator-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.facilitator-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 20px;
}

.facilitator-card p {
    color: var(--color-navy);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
    padding: 56px 0;
    background: var(--gradient-hero);
    text-align: center;
}

.quote-content {
    max-width: 700px;
    margin: 0 auto;
}

.quote-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.quote-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.5;
    margin-bottom: 24px;
}

.quote-text span {
    color: var(--color-gold);
}

/* Final CTA Section */
.final-cta {
    padding: 72px 0;
    background: var(--gradient-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-lavender) 0%, transparent 60%);
    opacity: 0.3;
}

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

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta h2 span {
    color: var(--color-purple);
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--color-navy);
    opacity: 0.75;
    margin-bottom: 40px;
}

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

.final-cta-note {
    font-size: 0.9rem;
    color: var(--color-navy);
    opacity: 0.6;
}

.final-cta-note svg {
    display: inline;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

/* Footer */
footer {
    background: var(--color-navy);
    padding: 48px 0;
    text-align: center;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
}

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

.footer-links a {
    color: var(--color-lavender);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-copyright {
    color: var(--color-lavender);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq {
    padding: 64px 0;
    background: var(--color-cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--color-purple);
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-lavender-light);
    color: var(--color-purple);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item .faq-answer {
    padding: 0 28px 24px;
    color: var(--color-navy);
    opacity: 0.75;
    line-height: 1.7;
}

/* Two-column FAQ */
.faq-list--cols {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

/* ===== New course layout components ===== */

/* Split Hero */
.hero {
    padding: 130px 0 64px;
    background: var(--gradient-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 28px;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-navy);
    margin-bottom: 24px;
}

.hero-text h1 span {
    color: var(--color-purple);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 16px;
    max-width: 40ch;
}

.hero-byline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 28px;
}

/* Media placeholder (video / photo / banner) */
.media-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-soft);
    border: 2px dashed var(--color-lavender);
    border-radius: var(--radius-lg);
    color: var(--color-purple);
    text-align: center;
    overflow: hidden;
}

.media-placeholder .media-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.media-placeholder .media-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.media-placeholder .media-play svg {
    width: 26px;
    height: 26px;
    color: var(--color-purple);
}

.media-video,
.media-img {
    display: block;
    width: 100%;
    object-fit: cover;
    background: var(--color-purple);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.media-16x9 {
    aspect-ratio: 16 / 9;
}

.media-portrait {
    aspect-ratio: 4 / 5;
}

.media-banner {
    min-height: 360px;
    border: none;
    border-radius: 0;
    background: linear-gradient(135deg, #2b2150 0%, #1B004D 100%);
    color: var(--color-white);
}

/* "Maybe you've tried mindfulness before" cards */
.tried {
    padding: 64px 0;
    background: var(--color-white);
}

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

.tried-card {
    background: var(--color-white);
    border: 1px solid var(--color-lavender-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 28px 20px;
    text-align: center;
}

.tried-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--color-lavender-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tried-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-purple);
}

.tried-card p {
    font-weight: 600;
    color: var(--color-navy);
}

.tried-statement {
    max-width: 760px;
    margin: 36px auto 0;
    text-align: center;
}

.tried-statement p {
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 8px;
}

.tried-statement strong {
    color: var(--color-purple);
    opacity: 1;
}

/* Traditional vs DARE comparison */
.compare {
    padding: 64px 0;
    background: var(--color-lavender-light);
}

.compare-lead {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
    color: var(--color-navy);
    opacity: 0.8;
}

.compare-grid {
    display: grid;
    grid-template-columns: 0.9fr auto 1fr 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.compare-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-purple);
}

.compare-col {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.compare-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-purple);
    margin-bottom: 16px;
    text-align: center;
}

.compare-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-lavender-light);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-navy);
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-purple);
}

.compare-vs {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-purple-dark);
    color: var(--color-white);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.compare-statement {
    max-width: 760px;
    margin: 36px auto 0;
    text-align: center;
}

.compare-statement p {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.compare-statement .compare-bring {
    font-weight: 700;
    color: var(--color-purple);
    margin-top: 8px;
}

/* What this course can help you develop */
.develop {
    padding: 64px 0;
    background: var(--color-white);
}

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

.develop-card {
    background: var(--color-white);
    border: 1px solid var(--color-lavender-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 24px 16px;
    text-align: center;
}

.develop-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--color-lavender-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.develop-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-purple);
}

.develop-card .label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-navy);
    opacity: 0.6;
}

.develop-card .state {
    display: block;
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.develop-card .arrow {
    color: var(--color-purple);
    font-size: 1.1rem;
    margin: 4px 0;
}

.develop-note {
    max-width: 720px;
    margin: 36px auto 0;
    text-align: center;
    color: var(--color-navy);
    opacity: 0.85;
}

.develop-note strong {
    color: var(--color-purple);
}

/* Why this course is different — chip list */
.reason-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}

.reason-list span {
    background: var(--color-lavender-light);
    color: var(--color-purple-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 50px;
}

/* Meet Your Teacher */
.teacher {
    padding: 64px 0;
    background: var(--color-cream);
}

.teacher-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.teacher-bio .section-label {
    margin-bottom: 12px;
}

.teacher-bio h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.teacher-bio .teacher-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 16px;
}

.teacher-bio p {
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.teacher-quote {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 32px;
    border-top: 4px solid var(--color-gold);
}

.teacher-quote p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.5;
    margin-bottom: 12px;
}

.teacher-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-purple);
}

/* 8-Week Journey timeline */
.timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 0 auto 48px;
    gap: 8px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--color-lavender) 0 6px, transparent 6px 12px);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
}

.timeline-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--color-lavender-light);
    border: 4px solid var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-purple);
}

.timeline-week {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-purple);
}

.timeline-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
}

/* What's Included checklist */
.included {
    padding: 64px 0;
    background: var(--color-white);
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    max-width: 820px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--color-navy);
}

.included-item svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--color-green);
}

/* Pricing */
.pricing {
    padding: 64px 0;
    background: var(--gradient-light);
}

.pricing-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 48px 48px 44px;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-navy);
    background: var(--gradient-gold);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
}

.price-was {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-purple);
    opacity: 0.55;
    text-decoration: line-through;
}

.price-now {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-purple-dark);
}

.price-note {
    margin-top: 8px;
    font-weight: 600;
    color: var(--color-navy);
    opacity: 0.65;
}

.pricing-meta {
    margin-top: 24px;
}

.pricing-start {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--color-navy);
}

.pricing-start svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-purple);
}

.pricing-times {
    margin-top: 4px;
    font-style: italic;
    color: var(--color-navy);
    opacity: 0.6;
}

.pricing-includes {
    margin: 32px 0;
    padding-top: 32px;
    border-top: 1px solid var(--color-lavender-light);
    text-align: left;
}

.pricing-includes .included-grid {
    gap: 14px 32px;
}

.hero-pricing {
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-purple);
}

.hero-pricing strong {
    color: var(--color-navy);
}

/* Forest banner CTA */
.banner-cta {
    position: relative;
}

.banner-cta .media-banner {
    padding: 64px 24px;
}

.banner-cta-content {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.banner-cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.banner-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.banner-cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-white);
    opacity: 0.92;
    padding: 7px 0;
    font-size: 1.02rem;
}

.banner-cta-list svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-gold);
}

.banner-cta-foot {
    font-weight: 600;
    color: var(--color-gold);
}

/* Trust Yourself Again final CTA */
.trust-cta {
    padding: 64px 0;
    background: var(--gradient-hero);
    text-align: center;
}

.trust-cta-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.trust-cta p {
    color: var(--color-lavender-light);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.trust-cta-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
    margin-bottom: 32px;
}

.trust-cta-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-cta-meta svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

/* Course-full / waitlist page */
[hidden] {
    display: none !important;
}

.waitlist {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-badge {
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--color-white);
    border: 6px solid var(--color-lavender-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.waitlist-badge svg {
    width: 40px;
    height: 40px;
    color: var(--color-purple);
}

.waitlist-badge--success {
    border-color: rgba(39, 174, 96, 0.15);
}

.waitlist-badge--success svg {
    color: var(--color-green);
}

.waitlist .section-label {
    background: var(--color-white);
}

.waitlist h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-navy);
    margin: 20px 0 16px;
}

.waitlist-lead {
    font-size: 1.1rem;
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 16px;
}

.waitlist-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 40px;
    margin-top: 32px;
    text-align: left;
}

.waitlist-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(255, 212, 133, 0.4);
}

.waitlist-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-navy);
}

.waitlist-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 24px;
}

.waitlist-form .infusion-field {
    margin-bottom: 18px;
    text-align: left;
}

.waitlist-form .infusion-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.waitlist-form .infusion-field input {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--color-navy);
    padding: 14px 16px;
    background: var(--color-cream);
    border: 1.5px solid var(--color-lavender);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form .infusion-field input::placeholder {
    color: var(--color-navy);
    opacity: 0.45;
}

.waitlist-form .infusion-field input:focus {
    outline: none;
    background: var(--color-white);
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(143, 112, 192, 0.15);
}

.waitlist-form .infusion-submit {
    margin-top: 8px;
}

.waitlist-form .infusion-submit button {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    background: var(--color-gold);
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 212, 133, 0.4);
    transition: all 0.3s ease;
}

.waitlist-form .infusion-submit button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 212, 133, 0.5);
}

.waitlist-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--color-navy);
    opacity: 0.6;
}

/* New components — responsive */
@media (max-width: 900px) {
    .hero {
        padding: 110px 0 48px;
    }

    .hero-grid,
    .teacher-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .develop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .compare-vs {
        margin: 4px auto;
    }

    .timeline-track {
        flex-wrap: wrap;
        gap: 20px 0;
    }

    .timeline-track::before {
        display: none;
    }

    .timeline-step {
        flex: 0 0 25%;
    }
}

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

    .develop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-grid,
    .faq-list--cols {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        flex: 0 0 33.33%;
    }

    .banner-cta-content {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .tried-grid,
    .develop-grid {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        flex: 0 0 50%;
    }

    .pricing-card {
        padding: 32px 24px 28px;
    }

    .waitlist-card {
        padding: 28px 20px;
    }

    .pricing-amount {
        flex-direction: column;
        gap: 4px;
    }

    .price-now {
        font-size: 2.75rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-navy);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-card);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .intro-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

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

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    section {
        padding: 44px 0;
    }
}
