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

:root {
    --primary: #6b5b95;
    --accent: #4b3b6e;
    --light-bg: #f9f7fc;
    --light-lavender: #d3b4fa;
    --text-dark: #2d2d2d;
    --text-medium: #555555;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-area {
    display: block;
    line-height: 0;
}

.site-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 767px) {
    .site-logo {
        height: 55px;
    }
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

@media (max-width: 767px) {
    .hero-logo {
        max-width: 300px;
    }
}

.footer-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}

.subsection-title {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.coach-bio {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.coach-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin: 1.5rem auto 0;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-wrapper {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.nav-wrapper.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.125rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 91, 149, 0.3);
}

.btn-secondary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 59, 110, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-ghost:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-nav {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    text-align: center;
}

.cohort-announcement {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(107, 91, 149, 0.25);
}

.centered-text {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cohort-text {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cohort-text strong {
    font-weight: 700;
}

.hero-title {
    color: var(--accent);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.section {
    padding: 80px 20px;
}

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

.section-cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
}

.section-cta-final .section-title {
    color: var(--white);
}

.section-cta-final p {
    color: var(--white);
    opacity: 0.95;
}

.section-title {
    text-align: center;
    color: var(--accent);
    margin-bottom: 2.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1.25rem;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.closing-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 2rem;
    text-align: center;
    color: var(--accent);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.content-with-image .text-content {
    order: 1;
}

.content-with-image .image-content {
    order: 2;
}

.content-with-image.reverse .text-content {
    order: 2;
}

.content-with-image.reverse .image-content {
    order: 1;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    display: block;
}

.checklist {
    list-style: none;
    margin: 2rem 0;
}

.checklist li {
    padding: 0.5rem 0 0.5rem 2.5rem;
    position: relative;
    font-size: 1.125rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0 0.5rem 2.5rem;
    position: relative;
    font-size: 1.125rem;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.features-list strong {
    display: block;
    color: var(--accent);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.features-list p {
    margin: 0;
    color: var(--text-medium);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.comparison-column {
    padding: 2rem;
    background: #e8dff5;
    border-radius: 10px;
    border: 2px solid var(--primary);
}

.comparison-column.highlight {
    background: #e8dff5;
    border: 2px solid var(--primary);
}

.comparison-column h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.comparison-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent);
    margin-top: 1.5rem;
    font-style: normal;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-medium);
    margin: 0;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-medium);
    margin: 0;
    font-size: 1.05rem;
}

.footer {
    background: var(--accent);
    color: var(--white);
    padding: 2rem 20px;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.9;
}

.framework-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.pillar-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 91, 149, 0.15);
}

.pillar-letter {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-title {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pillar-month {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pillar-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.program-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 91, 149, 0.25);
}

.info-card-title {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.info-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.25rem;
}

.program-cta-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--primary);
    text-align: center;
}

.cta-card-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.cta-card-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.cta-card-text:last-of-type {
    margin-bottom: 2rem;
}

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

@media (min-width: 1024px) {
    .framework-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-wrapper {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        background: transparent;
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 2rem;
        max-height: none;
        overflow-y: visible;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        margin-bottom: 0;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0;
    }

    .hero {
        padding: 160px 20px 100px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .two-column {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .content-with-image {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .content-with-image .text-content,
    .content-with-image .image-content {
        order: initial;
    }

    .content-with-image.reverse {
        direction: rtl;
    }

    .content-with-image.reverse .text-content,
    .content-with-image.reverse .image-content {
        direction: ltr;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    .section {
        padding: 100px 20px;
    }

    .hero {
        padding: 180px 20px 120px;
    }
}
