/* ========================================
   STEADY MIND, PLLC — Design System
   ======================================== */

/* ---- CSS Custom Properties ---- */
:root {
    /* Colors */
    --color-bg: #f2efe9;
    --color-bg-alt: #e7e4dc;
    --color-bg-light: #f7f5f0;
    --color-bg-blue: #e8ecf4;
    --color-teal: #017081;
    --color-teal-light: #0a6b6c;
    --color-dark: #1c1c1c;
    --color-dark-soft: #2a2a2a;
    --color-text: #3a3a3a;
    --color-text-light: #6b6b6b;
    --color-white: #ffffff;
    --color-border: #d5d0c8;
    --color-border-light: #e5e1da;
    --color-accent-mint: #b8cec4;

    /* Typography */
    --font-serif: 'Instrument Serif', 'Georgia', serif;
    --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
    --shadow-card: 0 2px 16px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

/* ---- Utility ---- */
.centered {
    text-align: center;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ---- Section Styling ---- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.section-title em {
    font-style: italic;
    color: var(--color-teal);
}

.section-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 560px;
}

.section-header.centered .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-teal);
    color: var(--color-white);
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-pill);
}

.btn-primary:hover {
    background: var(--color-teal-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 80, 81, 0.25);
}

.btn-dark {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1rem 2.8rem;
    border-radius: var(--radius-pill);
}

.btn-dark:hover {
    background: var(--color-dark-soft);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(28, 28, 28, 0.2);
}

.btn-outline-pill {
    background: transparent;
    color: var(--color-text);
    padding: 0.65rem 1.8rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--color-border);
}

.btn-outline-pill:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
    box-shadow: 0 0 0 1px var(--color-teal);
}

.btn-accent {
    background: var(--color-accent-mint);
    color: var(--color-dark);
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius-pill);
    border: none;
}

.btn-accent:hover {
    background: #a3bfb5;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1.1rem 3rem;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(242, 239, 233, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 0.7rem 0;
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-teal);
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-dark);
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    background: transparent;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

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

.nav-link.active {
    background: var(--color-teal);
    color: var(--color-white);
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background: var(--color-dark);
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-teal);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-content {
    display: block;
    position: absolute;
    background-color: var(--color-white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-radius: var(--radius-lg);
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 1rem 0;
    border: 1px solid var(--color-border-light);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content a {
    color: var(--color-text);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-dropdown-content a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-teal);
    padding-left: 1.8rem;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: calc(100px + var(--space-2xl)) 0 var(--space-2xl);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 60%, var(--color-bg-alt) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,80,81,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.hero-title em {
    font-style: italic;
    color: var(--color-text-light);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 460px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid var(--color-bg);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.avatar-count {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-teal) !important;
}

/* Hero Form */
.hero-form-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-badge {
    position: absolute;
    top: -40px;
    right: -30px;
    width: 140px;
    height: 140px;
    animation: spin 20s linear infinite;
    z-index: 2;
}

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

.badge-text {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    fill: var(--color-text-light);
}

.hero-form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.form-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-dark);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--color-border);
    border-radius: 0;
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-teal);
}

.form-group input::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233a3a3a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
    cursor: pointer;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.services .section-header {
    margin-bottom: var(--space-xl);
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.service-item:last-child {
    border-bottom: 1px solid var(--color-border-light);
}

.service-item:hover {
    padding-left: 1rem;
}

.service-name {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--color-dark);
}

.service-desc {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.services-footer {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ========================================
   STORY / ABOUT
   ======================================== */
.story {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-light);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.story-images {
    position: relative;
    height: 550px;
}

.story-img-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 90%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-img-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-front {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 50%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
    z-index: 2;
}

.story-img-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content .section-title {
    margin-bottom: var(--space-md);
}

.story-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-bg-blue) 0%, var(--color-bg) 100%);
}

.how-it-works .section-header {
    margin-bottom: var(--space-2xl);
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 var(--space-md);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-number span {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-teal);
}

.step-item:hover .step-number {
    border-color: var(--color-teal);
    box-shadow: 0 0 0 4px rgba(0, 80, 81, 0.08);
}

.step-connector {
    position: relative;
    top: 32px;
    width: 100%;
    max-width: 120px;
    height: 1px;
    background: var(--color-border);
    flex-shrink: 0;
    z-index: 1;
}

.step-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.step-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

.steps-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* ========================================
   THERAPIST / QUOTE
   ======================================== */
.therapist {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-blue);
}

.therapist-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.therapist-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.therapist-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: top;
}

.quote-icon {
    color: var(--color-border);
    margin-bottom: var(--space-md);
    opacity: 0.4;
}

.therapist-quote {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
}

.therapist-bio {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.therapist-info {
    margin-bottom: var(--space-lg);
}

.therapist-name-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.therapist-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.therapist-role {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
}

/* ========================================
   RESULTS
   ======================================== */
.results {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-blue);
}

.results-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.results-stat {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.results-details {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.results-checklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.results-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-text);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-teal);
    flex-shrink: 0;
}

/* ========================================
   WORKSHOPS / EVENTS
   ======================================== */
.workshops {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.workshops .section-header {
    margin-bottom: var(--space-xl);
}

.workshops-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.workshop-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.workshop-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.newsletter-card {
    background: var(--color-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    color: var(--color-white);
}

.newsletter-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: var(--space-xs);
}

.newsletter-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--color-dark);
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-pill);
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--color-text-light);
}

.workshop-date-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-sm);
    transition: var(--transition);
}

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

.workshop-day {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.workshop-time {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-dark);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.faq .section-header {
    margin-bottom: var(--space-xl);
}

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

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

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-dark);
    text-align: left;
    transition: var(--transition);
    gap: var(--space-sm);
}

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

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--color-text-light);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

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

.faq-answer p {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
    padding-bottom: var(--space-md);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-name {
    color: var(--color-white);
}

.footer-logo .logo-sub {
    color: rgba(255,255,255,0.5);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-md);
}

.footer-contact-item {
    margin-bottom: var(--space-sm);
}

.footer-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.15rem;
}

.footer-contact-item a {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
}

.footer-copy {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit a {
    text-decoration: underline;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: rgba(255,255,255,0.7);
}

/* ========================================
   ANIMATIONS — Scroll Reveal
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ========================================
   RESPONSIVE
   ======================================== */
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-form-wrapper {
        justify-content: center;
    }

    .hero-form-card {
        max-width: 520px;
    }

    .hero-badge {
        right: 10px;
        top: -30px;
        width: 110px;
        height: 110px;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .story-images {
        height: 400px;
    }

    .therapist-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .therapist-image img {
        height: 500px;
    }

    .workshops-layout {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-sm);
        z-index: 999;
    }

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

    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-dropdown:hover .nav-dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 1rem 1rem;
        background: transparent;
        transform: none;
        min-width: auto;
    }
    
    .nav-dropdown-content a {
        padding: 0.6rem 1rem;
    }

    .nav-dropdown-content a:hover {
        padding-left: 1.2rem;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding-top: calc(80px + var(--space-xl));
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-badge {
        display: none;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .service-item .btn {
        justify-self: start;
    }

    .story-images {
        height: 320px;
    }

    .steps-timeline {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }

    .step-connector {
        width: 1px;
        height: 40px;
        top: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-form-card {
        padding: var(--space-lg) var(--space-md);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .workshop-date-card {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
}

/* ========================================
   GLOBAL COMPONENT STYLES
   (Moved from index.html)
   ======================================== */

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--color-white);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--color-teal);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-teal);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-alt);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-teal);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--color-teal);
    color: var(--color-white);
}

.benefit-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.benefit-card-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Framework Grid */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.framework-block {
    text-align: center;
}

.framework-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-teal);
    box-shadow: var(--shadow-sm);
}

.framework-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.framework-body {
    font-family: var(--font-sans);
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Premium Results & Stat Cards */
.premium-results {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-teal) 0%, #017081 100%);
    color: var(--color-white);
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.premium-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.premium-results .section-title {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.premium-results .section-desc {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-mint);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.stat-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* FAQ Accordion Styling */
.faq-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 40px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2.5rem;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-dark);
    list-style: none; /* Hide default marker */
    line-height: 1.2;
}

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

.faq-item summary .faq-icon {
    transition: transform 0.3s ease;
    opacity: 0.6;
    flex-shrink: 0;
    margin-left: 1.5rem;
    color: var(--color-text-light);
}

.faq-item[open] summary .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2.5rem 2.5rem 2.5rem;
    color: var(--color-text-light);
    font-family: var(--font-sans);
    line-height: 1.7;
    font-size: 1rem;
    max-height: none;
    overflow: visible;
}

/* Utility Lists */
.benefit-card-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
    width: 100%;
}

.benefit-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.benefit-card-list li::before {
    content: '•';
    color: var(--color-teal);
    font-weight: bold;
    margin-right: 0.5rem;
}
