@font-face {
    font-family: 'Select Mono';
    src: url('assets/select-mono-italic.woff') format('woff');
    font-style: italic;
    font-display: swap;
}

:root {
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --warm-gray: #F3F0EB;
    --sand: #EDE8E0;
    --text: #1A1520;
    --text-secondary: #4A4458;
    --text-muted: #7A7490;
    --text-dim: #A8A2B8;
    --purple: #6B3FA0;
    --purple-deep: #4A2878;
    --purple-light: #F0EBF8;
    --magenta: #C23080;
    --cyan: #1A9BA0;
    --cyan-light: #E8F5F5;
    --pink-light: #FDF0F6;
    --accent-gradient: linear-gradient(135deg, #1A9BA0, #6B3FA0, #C23080);
    --border: rgba(26, 21, 32, 0.08);
    --border-strong: rgba(26, 21, 32, 0.12);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --font-label: 'Space Grotesk', sans-serif;
    --font-serif: 'Select Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    background: var(--white);
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--purple);
    color: white;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============ NAV ============ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

nav .logo {
    height: 64px;
    width: auto;
    display: block;
}

nav .logo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-family: var(--font-label);
    transition: color 0.2s;
}

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

nav .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav .btn-nav {
    background: var(--purple);
    color: white;
    padding: 0.5rem 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: all 0.2s;
}

nav .btn-nav:hover {
    background: var(--purple-deep);
    color: white;
}

/* ============ MOBILE NAV ============ */
.nav-mobile-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 0.6rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-links a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu-links a:hover {
    color: var(--purple);
}

.mobile-menu-signup {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-nav-mobile {
    padding: 0.4rem 1.1rem;
    font-size: 0.78rem;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(107, 63, 160, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 60%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(194, 48, 128, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-logo {
    width: min(660px, 88vw);
    height: auto;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    animation: logoIn 1s ease-out;
}

@keyframes logoIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

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

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 4.0rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease-out 0.2s both;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease-out 0.4s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.hero-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease-out 0.5s both;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 2.8rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
    animation: fadeU-p 1s ease-out 0.6s both;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(107, 63, 160, 0.25);
}

/* ============ SECTION BASICS ============ */
section {
    padding: 7rem 0;
    position: relative;
}

.bg-white {
    background: var(--white);
}

.bg-cream {
    background: var(--cream);
}

.bg-warm {
    background: var(--warm-gray);
}

.section-label {
    font-family: var(--font-label);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--purple);
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.section-title .gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.8;
}

.section-text--secondary {
    margin-top: 1rem;
}

/* ============ DIVIDER ============ */
.divider {
    height: 1px;
    background: var(--border);
    margin: 0 auto;
    max-width: 1100px;
}

/* ============ HOW IT WORKS ============ */
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 3rem;
}

.how-card {
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 2.2rem;
    transition: all 0.3s;
}

.how-card:hover {
    border-color: rgba(107, 63, 160, 0.2);
    box-shadow: 0 4px 24px rgba(107, 63, 160, 0.06);
}

.how-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.how-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.how-card .week-label {
    font-family: var(--font-label);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 0.4rem;
}

.how-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============ DIFFERENT SECTION ============ */
.different {
    background: var(--warm-gray);
}

.diff-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    align-items: start;
}

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

.diff-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-strong);
    gap: 1rem;
    align-items: baseline;
}

.diff-list li:last-child {
    border-bottom: none;
}

.diff-label {
    font-family: var(--font-label);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 6px;
    border-radius: 100px;
    white-space: nowrap;
}

.diff-label.them {
    background: var(--purple-light);
    color: var(--purple);
    margin-left: -6px;
}

.diff-label.us {
    background: var(--cyan-light);
    color: var(--cyan);
}

.diff-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.diff-quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--text);
    padding-left: 1.5rem;
    border-left: 3px solid var(--magenta);
}

/* ============ PROJECT PILLS ============ */
.who-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}

.who-pill {
    background: var(--white);
    border: 1px solid var(--border-strong);
    padding: 0.6rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-family: var(--font-label);
}

.bg-cream .who-pill,
.bg-warm .who-pill {
    background: var(--white);
}

/* ============ SCHEDULE ============ */
.schedule-table {
    margin-top: 2.5rem;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
}

.schedule-table td {
    padding: 1.1rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table td:first-child {
    font-weight: 600;
    color: var(--text);
    width: 200px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-label);
}

.schedule-table td:last-child {
    color: var(--text-secondary);
}

/* ============ COST ============ */
.cost-card {
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cost-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
}

.cost-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.cost-per {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cost-includes {
    list-style: none;
    display: block;
    margin: 0 auto 2rem;
    text-align: left;
}

.cost-includes li {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.cost-includes li::before {
    content: '\2713';
    color: var(--cyan);
    margin-right: 0.5rem;
    font-weight: 700;
}

/* ============ FACILITATOR ============ */
.facilitator-block + .facilitator-block {
    margin-top: 3rem;
}

.facilitator-header {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    max-width: 720px;
}

.facilitator-portrait {
    height: clamp(5.28rem, 12vw, 8.98rem);
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.facilitator-header .section-title {
    margin-bottom: 0;
}

.facilitator-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    align-self: flex-end;
}

.facilitator-socials a {
    opacity: 0.45;
    transition: opacity 0.2s;
    display: flex;
}

.facilitator-socials a:hover {
    opacity: 0.8;
}

.facilitator-bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 720px;
    margin-top: 1.5rem;
}

.facilitator-bio strong {
    color: var(--text);
    font-weight: 600;
}

/* ============ FAQ ============ */
.faq-grid {
    margin-top: 2.5rem;
    max-width: 760px;
}

.faq-item {
    border-bottom: 1px solid var(--border-strong);
    padding: 1.8rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-strong);
}

.faq-q {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--purple);
    font-weight: 400;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 680px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s;
    opacity: 0;
}

.faq-item.open .faq-a {
    max-height: 300px;
    opacity: 1;
}

/* ============ CTA ============ */
.cta-section {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(107, 63, 160, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text);
}

.cta-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    position: relative;
}

.cta-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    position: relative;
}

.btn-cta {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 1.1rem 3.2rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    position: relative;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(107, 63, 160, 0.25);
}

/* ============ FOOTER ============ */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    text-align: center;
    background: var(--white);
}

footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
}

footer a:hover {
    color: var(--purple);
}

/* ============ UTILITY CLASSES ============ */
.pricing-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.who-pills--section {
    margin-top: 3rem;
}

.discount-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.discount-note__link {
    color: var(--purple);
    text-decoration: none;
}

.footer-brand {
    margin-bottom: 0.5rem;
}

.footer-brand__text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-copyright {
    margin-top: 0.5rem;
}

.btn-primary-comingsoon--no-animation {
    animation: none !important;
}

.btn-primary--no-animation {
    animation: none !important;
}

.btn-coming-soon {
    display: inline-block;
    background: transparent;
    color: var(--text-muted);
    padding: 1rem 2.8rem;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    cursor: not-allowed;
}

button.btn-coming-soon {
    cursor: pointer;
    width: 100%;
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    float: none;
}

.section-title-row .section-title {
    margin-bottom: 0;
}

.btn-notify-dates {
    width: auto !important;
    margin-top: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(107, 63, 160, 0.25);
}

.btn-margin-top {
    margin-top: 16px;
}

/* ============ FORM MODALS ============ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(26, 21, 32, 0.15);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
}

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

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    font-family: var(--font-label);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: var(--magenta);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-footer button {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.modal-footer .btn-submit {
    background: var(--accent-gradient);
    color: white;
}

.modal-footer .btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.modal-footer .btn-cancel {
    background: var(--sand);
    color: var(--text);
}

.modal-footer .btn-cancel:hover {
    background: var(--warm-gray);
}

.form-status {
    padding: 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    background: #E8F5E8;
    color: #2D8C2D;
    display: block;
}

.form-status.error {
    background: #FFE8E8;
    color: #B83838;
    display: block;
}

/* Modal states */
.modal-state-loading,
.modal-state-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}

.modal-state-success {
    padding: 1.5rem 1rem;
}

.modal-state-loading p,
.modal-state-success p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-state-loading p {
    animation: pulse 1.5s ease-in-out infinite;
}

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

    50% {
        opacity: 0.4;
    }
}

.modal--loading .modal-form-content {
    display: none;
}

.modal--loading .modal-state-loading {
    display: block;
}

.modal--success .modal-form-content {
    display: none;
}

.modal--success .modal-state-success {
    display: block;
}

.modal-spinner {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.modal-checkmark {
    width: 112px;
    height: 112px;
    margin-bottom: 1rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    nav {
        padding: 0.4rem 1.25rem;
    }

    nav .nav-links {
        display: none;
    }

    .nav-mobile-actions {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 6rem 1.25rem 3rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

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

    .how-card {
        padding: 1.8rem 1.5rem;
    }

    .diff-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diff-text {
        margin-bottom: 0.5rem;
    }

    .schedule-table td:first-child {
        width: 120px;
        font-size: 0.75rem;
    }

    .pricing-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .cost-card {
        padding: 2rem 1.5rem;
        margin-top: 0;
    }

    .cost-amount {
        font-size: 2.8rem;
    }

    .facilitator-header {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }

    .facilitator-portrait {
        height: clamp(4.2rem, 19.2vw, 6rem);
    }

    .facilitator-header .section-title {
        margin-bottom: 0;
    }

    .facilitator-socials {
        margin-left: 0;
    }

    .section-title-row .btn-notify-dates {
        width: 100% !important;
        flex-shrink: 1;
    }

    .modal {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }
}
