/*
 * Landing Page v6 - Enhanced Visual Richness Edition
 * Target: Women 35+, Bulgaria
 * Balance: 70% whitespace / 30% visual elements
 * Mobile-first, responsive approach
 */

/* ===========================
   CSS VARIABLES (Enhanced)
   =========================== */
:root {
    /* Core color palette */
    --cream: #FAF8F5;
    --cream-warm: #F5EBE0;
    --cream-dark: #E8E0D5;
    --white: #FFFFFF;
    --sage: #7A8F6F;
    --sage-hover: #5C7052;
    --sage-light: #D4DDD0;
    --sage-lighter: #E8EDE5;
    --text: #2D2D2D;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;

    /* Accent colors */
    --accent-warm: #D4A59A;
    --accent-warm-light: #F0DDD8;
    --gold: #C9A962;
    --success: #8FBC8F;

    /* Spacing scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;

    /* Container widths */
    --container-max: 1200px;
    --container-narrow: 720px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-sage: 0 4px 20px rgba(122, 143, 111, 0.25);
    --shadow-sage-glow: 0 0 40px rgba(122, 143, 111, 0.15);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

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

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 60px;
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    body {
        padding-top: 80px;
    }
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: 0.01em;
}

h1 {
    font-size: 28px;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: 24px;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    h3 { font-size: 22px; }
}

@media (min-width: 1024px) {
    h1 { font-size: 54px; }
    h2 { font-size: 40px; }
    h3 { font-size: 24px; }
}

@media (min-width: 1440px) {
    body { font-size: 1.25rem; }
    h1 { font-size: 64px; }
    h2 { font-size: 48px; }
}

/* ===========================
   LAYOUT CONTAINERS
   =========================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.container--narrow {
    max-width: var(--container-narrow);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: var(--space-2xl);
        padding-right: var(--space-2xl);
    }
    .container--narrow {
        max-width: 800px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    .container--narrow {
        max-width: 900px;
    }
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 10px;
    left: 8px;
    right: 8px;
    height: 60px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(122, 143, 111, 0.1);
    border-radius: 35px;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
    transition: transform var(--transition-base), background var(--transition-base);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.header--hidden {
    transform: translateY(-120%);
}

.header__container {
    width: 100%;
    padding: 0 var(--space-sm);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Header Logo */
.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
}

.header__logo-img {
    height: 36px;
    width: auto;
    transition: transform var(--transition-base);
}

.header__logo:hover .header__logo-img {
    transform: scale(1.05);
}

/* Navigation */
.nav {
    flex: 1;
}

.nav__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    position: absolute;
    top: 68px;
    left: -8px;
    right: -8px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.nav__menu.active {
    max-height: 500px;
    border: 1px solid rgba(122, 143, 111, 0.1);
}

.nav__item {
    border-bottom: 1px solid rgba(122, 143, 111, 0.06);
}

.nav__item:last-child {
    border-bottom: none;
}

.nav__link {
    display: block;
    padding: 16px var(--space-md);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: var(--space-md);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sage), var(--sage-hover));
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
    color: var(--sage);
    background: rgba(122, 143, 111, 0.05);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: calc(100% - var(--space-md) * 2);
}

.nav__link--cta {
    color: var(--sage);
    font-weight: 600;
}

/* Hamburger Toggle */
.nav__toggle {
    position: absolute;
    right: var(--space-sm);
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    z-index: 1001;
    transition: transform var(--transition-base);
}

.nav__toggle:hover {
    transform: scale(1.05);
}

.nav__toggle-line {
    width: 100%;
    height: 2px;
    background: var(--sage);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .header {
        height: 70px;
    }

    .header__container {
        padding: 0 var(--space-md);
    }

    .header__logo-img {
        height: 42px;
    }

    .nav__toggle {
        display: none;
    }

    .nav__menu {
        max-height: none;
        flex-direction: row;
        justify-content: space-between;
        background: transparent;
        position: relative;
        top: auto;
        box-shadow: none;
    }

    .nav__item {
        border-bottom: none;
        flex: 1;
        text-align: center;
    }

    .nav__link {
        padding: 10px 12px;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }

    .nav__link::after {
        bottom: 4px;
        left: 8px;
    }

    .nav__link:hover::after,
    .nav__link.active::after {
        width: calc(100% - 16px);
    }
}

@media (min-width: 1024px) {
    .header {
        top: 12px;
        left: 12px;
        right: 12px;
    }

    .header__logo-img {
        height: 46px;
    }

    .nav__link {
        padding: 12px 16px;
        font-size: 17px;
    }
}

@media (min-width: 1440px) {
    .header {
        left: 16px;
        right: 16px;
    }

    .header__logo-img {
        height: 50px;
    }

    .nav__link {
        padding: 14px 20px;
        font-size: 18px;
    }
}

/* ===========================
   HERO SECTION (Enhanced)
   =========================== */
.hero {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(250, 248, 245, 0.92) 0%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(250, 248, 245, 0.80) 100%
    );
    z-index: 1;
}

/* Decorative floating elements */
.hero__decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-light), rgba(122, 143, 111, 0.1));
    z-index: 2;
    animation: float 20s ease-in-out infinite;
}

.hero__decoration--1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    opacity: 0.3;
    animation-delay: 0s;
}

.hero__decoration--2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    opacity: 0.2;
    animation-delay: -5s;
}

.hero__decoration--3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 10px) scale(0.95); }
    75% { transform: translate(-20px, -10px) scale(1.02); }
}

.hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero__content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sage);
    background: var(--sage-lighter);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.hero__title {
    text-align: center;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.hero__title-accent {
    display: block;
    color: var(--sage);
}

.hero__subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .hero__content {
        padding: var(--space-2xl) var(--space-xl);
    }

    .hero__eyebrow {
        font-size: 13px;
        padding: 8px 20px;
    }

    .hero__subtitle {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }

    .hero__content {
        padding: 50px var(--space-2xl);
        max-width: 900px;
    }

    .hero__subtitle {
        font-size: 22px;
        max-width: 700px;
        margin-bottom: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero {
        background-attachment: scroll !important;
    }

    .hero__decoration {
        animation: none !important;
    }
}

/* ===========================
   VIDEO WRAPPER (Enhanced)
   =========================== */
.video-wrapper {
    margin-bottom: var(--space-xl);
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, var(--sage-light), rgba(212, 221, 208, 0.5));
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-md);
}

.video-placeholder__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
}

.video-placeholder:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.video-placeholder__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform var(--transition-base);
}

.video-placeholder:hover .video-placeholder__play {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-placeholder__text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.video-placeholder:hover .video-placeholder__text {
    opacity: 1;
}

@media (min-width: 1024px) {
    .video-wrapper {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }

    .video-placeholder {
        box-shadow: var(--shadow-lg), var(--shadow-sage-glow);
        border: 1px solid rgba(122, 143, 111, 0.1);
    }

    .video-placeholder__play svg {
        width: 100px;
        height: 100px;
    }
}

/* ===========================
   HERO TESTIMONIAL
   =========================== */
.hero-testimonial {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: 32px;
    border: 1px solid rgba(122, 143, 111, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-testimonial__quote {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.hero-testimonial__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--sage);
    opacity: 0.5;
}

.hero-testimonial__quote p {
    font-style: italic;
    font-size: 15px;
    color: var(--text);
    margin: 0;
}

.hero-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--sage-light);
}

.hero-testimonial__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sage-light);
}

.hero-testimonial__author span {
    font-size: 13px;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .hero-testimonial {
        padding: var(--space-lg);
    }

    .hero-testimonial__quote p {
        font-size: 16px;
    }
}

/* ===========================
   FORMS (Enhanced)
   =========================== */
.form-intro {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.form-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

.form-intro__text {
    text-align: center;
    font-size: 18px;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.form-intro__safety {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    background: rgba(122, 143, 111, 0.06);
    border-radius: var(--radius-full);
    display: inline-block;
    width: 100%;
}

.form-intro--cta .form-intro__safety {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.form-trust {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--sage-light);
}

.form-trust__number {
    font-weight: 600;
    color: var(--sage);
}

.opt-in-form {
    max-width: 480px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-field {
    margin-bottom: var(--space-md);
    position: relative;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--text);
    background: linear-gradient(to bottom, var(--cream), rgba(250, 248, 245, 0.5));
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.form-input:focus {
    outline: none;
    border-color: var(--sage);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(122, 143, 111, 0.1);
}

.form-input:hover:not(:focus) {
    background: var(--white);
    border-color: rgba(122, 143, 111, 0.2);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Form validation feedback */
.form-input__success {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(25%);
    color: var(--success);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.form-field--valid .form-input__success {
    opacity: 1;
}

.form-field--valid .form-input {
    border-color: var(--success);
    padding-right: 48px;
}

/* Form error states */
.form-field--error .form-input {
    border-color: #D9534F;
    background-color: #FDF2F2;
}

.form-error {
    display: none;
    font-size: 13px;
    color: #D9534F;
    margin-top: 6px;
    padding-left: 4px;
}

.form-field--error .form-error {
    display: block;
}

/* Honeypot field - hidden from real users, traps bots */
.form-field--hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

.form-privacy svg {
    color: var(--sage);
}

.form-privacy--light {
    color: rgba(255, 255, 255, 0.8);
}

.form-privacy--light svg {
    color: rgba(255, 255, 255, 0.9);
}

.form-email-info {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-xs);
    margin-bottom: 0;
}

.form-email-info--light {
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .form-intro {
        padding: var(--space-xl);
    }

    .form-intro__text {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .form-intro {
        padding: var(--space-2xl);
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .form-intro__text {
        font-size: 22px;
        margin-bottom: var(--space-lg);
    }
}

/* CTA Section Form */
.form-intro--cta {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
}

.form-intro--cta .form-input {
    background: rgba(255, 255, 255, 0.95);
}

/* ===========================
   BUTTONS (Enhanced with Breathing)
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(135deg, var(--sage), var(--sage-hover));
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sage);
    letter-spacing: 0.02em;
    min-height: 56px;
}

.btn:hover,
.btn:focus {
    background: linear-gradient(135deg, var(--sage-hover), #4F5F47);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 24px rgba(122, 143, 111, 0.4);
}

.btn:active {
    transform: translateY(0) scale(0.99);
}

.btn:focus {
    outline: none;
    box-shadow: 0 6px 24px rgba(122, 143, 111, 0.4), 0 0 0 3px rgba(122, 143, 111, 0.3);
}

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

.btn--full {
    width: 100%;
}

.btn--large {
    padding: 20px 40px;
    font-size: 17px;
    min-height: 64px;
}

/* Breathing Animation */
.btn--breathing {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        box-shadow: var(--shadow-sage);
    }
    50% {
        box-shadow: 0 6px 30px rgba(122, 143, 111, 0.45);
    }
}

.btn--breathing:hover {
    animation: none;
}

@media (min-width: 1024px) {
    .btn {
        padding: 20px 40px;
        font-size: 17px;
    }

    .btn--large {
        padding: 22px 48px;
        font-size: 18px;
    }
}

/* ===========================
   TRUST STRIP
   =========================== */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--sage-light);
    padding: var(--space-lg) 0;
}

.trust-strip__items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-light);
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-slow);
}

.trust-strip__item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.trust-strip__icon {
    width: 24px;
    height: 24px;
    color: var(--sage);
    flex-shrink: 0;
}

.trust-strip__divider {
    display: none;
}

@media (min-width: 768px) {
    .trust-strip__items {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-lg);
    }

    .trust-strip__divider {
        display: block;
        width: 1px;
        height: 24px;
        background: var(--sage-light);
    }
}

@media (min-width: 1024px) {
    .trust-strip__items {
        gap: var(--space-xl);
    }

    .trust-strip__item {
        font-size: 15px;
    }

    .trust-strip__icon {
        width: 28px;
        height: 28px;
    }
}

/* ===========================
   SECTIONS (Enhanced)
   =========================== */
.section {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section--cream {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.section--white {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.section--cta {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-hover) 100%);
    padding: var(--space-3xl) 0;
}

.section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sage);
    margin-bottom: var(--space-sm);
}

.section__eyebrow--center {
    display: block;
    text-align: center;
}

.section__eyebrow--light {
    color: rgba(255, 255, 255, 0.8);
}

.section__title {
    margin-bottom: var(--space-lg);
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), rgba(122, 143, 111, 0.3));
    margin-top: var(--space-sm);
    border-radius: 2px;
}

.section__title--center {
    text-align: center;
}

.section__title--center::after {
    margin-left: auto;
    margin-right: auto;
}

.section__title--light {
    color: var(--white);
}

.section__title--light::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
}

.section__body {
    font-size: 16px;
    line-height: 1.7;
}

.section__intro {
    font-size: 1.15em;
    color: var(--text);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

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

.section__intro--light {
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }

    .section__body {
        font-size: 18px;
    }

    .section__eyebrow {
        font-size: 13px;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }

    .section--cta {
        padding: 120px 0;
    }

    .section__body {
        font-size: 19px;
        line-height: 1.8;
    }
}

/* ===========================
   SECTION GRID LAYOUT
   =========================== */
.section-grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.section-grid--image-right {
    grid-template-areas:
        "content"
        "visual";
}

.section-grid--image-left {
    grid-template-areas:
        "visual"
        "content";
}

.section-grid__content {
    grid-area: content;
}

.section-grid__visual {
    grid-area: visual;
}

@media (min-width: 900px) {
    .section-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .section-grid--image-right {
        grid-template-areas: "content visual";
    }

    .section-grid--image-left {
        grid-template-areas: "visual content";
    }
}

@media (min-width: 1200px) {
    .section-grid {
        gap: 80px;
    }
}

/* ===========================
   IMAGE FRAMES
   =========================== */
.image-frame {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.image-frame__img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

/* Floating decoration style */
.image-frame--floating {
    padding: var(--space-md);
}

.image-frame--floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 30%;
    bottom: 30%;
    background: var(--sage-light);
    border-radius: var(--radius-xl);
    z-index: 1;
}

.image-frame__decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border: 2px solid var(--sage);
    border-radius: var(--radius-xl);
    z-index: 0;
    opacity: 0.3;
}

/* Organic blob style */
.image-frame--organic {
    padding: var(--space-lg);
}

.image-frame__blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--accent-warm-light) 100%);
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    z-index: 1;
    animation: morphBlob 15s ease-in-out infinite;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; }
    25% { border-radius: 50% 60% 40% 50% / 40% 60% 50% 50%; }
    50% { border-radius: 40% 50% 60% 50% / 50% 40% 50% 60%; }
    75% { border-radius: 50% 50% 50% 60% / 60% 50% 40% 40%; }
}

@media (prefers-reduced-motion: reduce) {
    .image-frame__blob {
        animation: none !important;
    }
}

/* ===========================
   SYMPTOM LIST (Problem Section)
   =========================== */
.symptom-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.symptom-list__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-warm);
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-slow);
}

.symptom-list__item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.symptom-list__item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.symptom-list__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}

.symptom-list__icon--tension {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4A59A' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13 10V3L4 14h7v7l9-11h-7z'/%3E%3C/svg%3E");
}

.symptom-list__icon--mind {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4A59A' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z'/%3E%3C/svg%3E");
}

.symptom-list__icon--rest {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4A59A' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z'/%3E%3C/svg%3E");
}

.symptom-list__icon--overwhelm {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4A59A' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

.symptom-list__text {
    font-size: 1em;
    color: var(--text);
}

/* ===========================
   CONTENT ELEMENTS
   =========================== */
.content-list {
    list-style: none;
    margin: var(--space-md) 0;
    padding-left: 0;
}

.content-list li {
    position: relative;
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
}

.content-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-size: 12px;
    top: 4px;
}

/* Enhanced list with backgrounds */
.content-list--enhanced {
    margin: var(--space-lg) 0;
}

.content-list--enhanced li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    background: rgba(122, 143, 111, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-10px);
}

.content-list--enhanced li.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.content-list--enhanced li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--sage), var(--sage-hover));
    border-radius: 50%;
    margin-top: 8px;
    position: static;
}

.content-list--enhanced li:hover {
    background: rgba(122, 143, 111, 0.1);
    transform: translateX(4px);
}

/* Content Card */
.content-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(122, 143, 111, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.content-card:hover {
    border-color: rgba(122, 143, 111, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.content-card--highlight {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: linear-gradient(135deg, rgba(122, 143, 111, 0.08), rgba(122, 143, 111, 0.02));
    border-left: 3px solid var(--sage);
}

.content-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-light);
    border-radius: var(--radius-md);
    color: var(--sage);
}

.content-card__icon svg {
    width: 24px;
    height: 24px;
}

/* Insight Block */
.insight-block {
    position: relative;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: linear-gradient(135deg, rgba(122, 143, 111, 0.08), rgba(122, 143, 111, 0.02));
    border-left: 3px solid var(--sage);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.insight-block p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
    font-style: italic;
}

.insight-block--centered {
    border-left: none;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .insight-block {
        padding: var(--space-lg) var(--space-xl);
    }

    .insight-block p {
        font-size: 1.1em;
    }
}

/* ===========================
   TRANSFORMATION SECTION
   =========================== */
.transformation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg);
    align-items: stretch;
    margin: var(--space-2xl) 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.transformation.animate-in {
    opacity: 1;
}

.transformation__state {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.transformation__state--before {
    border: 2px solid var(--accent-warm-light);
}

.transformation__state--after {
    border: 2px solid var(--sage-light);
    background: linear-gradient(135deg, var(--white), var(--sage-lighter));
}

.transformation__visual {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-md);
}

.transformation__circle {
    width: 100%;
    height: 100%;
}

.transformation__circle--chaotic {
    color: var(--accent-warm);
}

.transformation__wave {
    animation: waveMotion 2s ease-in-out infinite;
}

.transformation__wave--1 { animation-delay: 0s; }
.transformation__wave--2 { animation-delay: 0.3s; }
.transformation__wave--3 { animation-delay: 0.6s; }

@keyframes waveMotion {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.transformation__circle--calm {
    color: var(--sage);
}

.transformation__pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { r: 35; opacity: 1; }
    50% { r: 38; opacity: 0.8; }
}

.transformation__label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.transformation__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.transformation__list li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.transformation__state--before .transformation__list li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--accent-warm);
    font-weight: 600;
}

.transformation__state--after .transformation__list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
}

.transformation__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--sage);
}

.transformation__arrow svg {
    width: 32px;
    height: 32px;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

.transformation__arrow span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

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

    .transformation__arrow {
        flex-direction: row;
        transform: rotate(90deg);
        padding: var(--space-md) 0;
    }

    .transformation__arrow span {
        writing-mode: horizontal-tb;
    }
}

@media (prefers-reduced-motion: reduce) {
    .transformation__wave,
    .transformation__pulse,
    .transformation__arrow svg {
        animation: none !important;
    }
}

/* ===========================
   PRACTICES SECTION
   =========================== */
.practices-grid {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

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

.practice-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(122, 143, 111, 0.08);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.practice-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-light);
}

.practice-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-lighter);
    border-radius: 50%;
    color: var(--sage);
    transition: all var(--transition-base);
}

.practice-card:hover .practice-card__icon {
    background: var(--sage);
    color: var(--white);
    transform: scale(1.1);
}

.practice-card__icon svg {
    width: 40px;
    height: 40px;
}

.practice-card__title {
    font-size: 20px;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.practice-card__desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.practice-card__time {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage);
    background: var(--sage-lighter);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

/* ===========================
   SHOWCASE GALLERY
   =========================== */
.showcase {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--cream-warm);
    overflow: hidden;
}

.showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: var(--space-sm);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.showcase__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase__item:hover img {
    transform: scale(1.05);
}

.showcase__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(122, 143, 111, 0.7), rgba(92, 112, 82, 0.8));
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.showcase:hover .showcase__overlay {
    opacity: 1;
}

.showcase__text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 28px;
    text-align: center;
}

@media (max-width: 767px) {
    .showcase__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 200px 150px 150px;
    }

    .showcase__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ===========================
   ABOUT SECTION (Enhanced)
   =========================== */
.about {
    display: grid;
    gap: var(--space-xl);
    align-items: start;
}

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

.about__image-frame {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.about__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about__image-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.about__image-decoration--1 {
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border: 2px solid var(--sage-light);
    animation: rotateDecoration 30s linear infinite;
}

.about__image-decoration--2 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border: 1px dashed var(--sage-light);
    opacity: 0.5;
    animation: rotateDecoration 45s linear infinite reverse;
}

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

.about__credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-light);
    background: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.credential svg {
    width: 20px;
    height: 20px;
    color: var(--sage);
}

.about__content {
    /* Content */
}

.about__quote {
    background: linear-gradient(135deg, var(--sage-lighter), rgba(212, 221, 208, 0.3));
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
    position: relative;
}

.about__quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    font-family: var(--font-heading);
    color: var(--sage);
    opacity: 0.2;
    line-height: 1;
}

.about__quote p {
    font-style: italic;
    font-size: 1.1em;
    color: var(--text);
    margin: 0;
    padding-left: var(--space-md);
}

@media (min-width: 768px) {
    .about {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-2xl);
    }

    .about__image-frame {
        max-width: 320px;
    }
}

@media (min-width: 1024px) {
    .about {
        grid-template-columns: 380px 1fr;
        gap: 80px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .about__image-frame {
        max-width: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about__image-decoration {
        animation: none !important;
    }
}

/* ===========================
   TESTIMONIALS (Enhanced)
   =========================== */
.testimonials {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

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

@media (min-width: 1024px) {
    .testimonials {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

.testimonial {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(122, 143, 111, 0.08);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-light);
}

.testimonial--featured {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--white), var(--sage-lighter));
    border: 2px solid var(--sage-light);
}

@media (max-width: 767px) {
    .testimonial--featured {
        grid-row: span 1;
    }
}

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

.testimonial__rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    color: var(--gold);
}

.testimonial__rating svg {
    width: 18px;
    height: 18px;
}

.testimonial__quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin: 0;
}

.testimonial--featured .testimonial__quote {
    font-size: 18px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--sage-light);
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sage-light);
}

.testimonial__info {
    display: flex;
    flex-direction: column;
}

.testimonial__name {
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}

.testimonial__location {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===========================
   CTA SECTION TRUST
   =========================== */
.cta-section {
    text-align: center;
}

.cta-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.cta-trust__avatars {
    display: flex;
    align-items: center;
}

.cta-trust__avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: -10px;
    object-fit: cover;
}

.cta-trust__avatars img:first-child {
    margin-left: 0;
}

.cta-trust__more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: -10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.cta-trust__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===========================
   FOOTER (Three Column Layout)
   =========================== */
.footer {
    background: var(--white);
    padding: 32px 0;
    border-top: 1px solid var(--sage-light);
}

.footer__grid {
    display: grid;
    grid-template-columns: 28% 36% 36%;
    gap: 0;
    align-items: start;
}

/* Column 1: Branding */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 24px;
}

.footer__logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer__tagline {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Column 2: Contact */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 24px;
    border-left: 1px solid var(--sage-light);
    border-right: 1px solid var(--sage-light);
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    margin: 0;
}

.footer__contact-item svg {
    flex-shrink: 0;
    color: var(--sage);
}

.footer__contact-item a {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.footer__contact-item a:hover {
    color: var(--sage-hover);
}

.footer__unsubscribe {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 4px 0 0 0;
}

/* Column 3: Legal */
.footer__legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 24px;
}

.footer__link {
    color: var(--sage);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-base);
}

.footer__link:hover {
    color: var(--sage-hover);
    text-decoration: underline;
}

.footer__copyright {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.footer__disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    opacity: 0.8;
}

/* Footer Tablet: 2-column layout */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 40% 60%;
    }

    .footer__brand {
        padding-right: 20px;
    }

    .footer__contact {
        grid-column: 2;
        grid-row: 1;
        border-left: 1px solid var(--sage-light);
        border-right: none;
        padding: 0 0 0 20px;
    }

    .footer__legal {
        grid-column: 1 / -1;
        padding: 20px 0 0 0;
        margin-top: 20px;
        border-top: 1px solid var(--sage-light);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
    }

    .footer__disclaimer {
        flex-basis: 100%;
    }
}

/* Footer Mobile: single column */
@media (max-width: 768px) {
    .footer {
        padding: 28px 0;
    }

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

    .footer__brand {
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .footer__contact {
        grid-column: 1;
        grid-row: auto;
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--sage-light);
        border-bottom: 1px solid var(--sage-light);
        padding: 20px 0;
        align-items: center;
    }

    .footer__contact-item {
        justify-content: center;
    }

    .footer__unsubscribe {
        text-align: center;
    }

    .footer__legal {
        grid-column: 1;
        padding-left: 0;
        margin-top: 0;
        border-top: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__disclaimer {
        flex-basis: auto;
    }
}

/* ===========================
   STICKY MOBILE CTA
   =========================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--sage-light);
    padding: var(--space-sm);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta--visible {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* ===========================
   ANIMATIONS - Scroll Triggered
   =========================== */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered delays for children */
.practices-grid .practice-card:nth-child(1) { animation-delay: 0.1s; }
.practices-grid .practice-card:nth-child(2) { animation-delay: 0.2s; }
.practices-grid .practice-card:nth-child(3) { animation-delay: 0.3s; }

.testimonials .testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonials .testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonials .testimonial:nth-child(3) { animation-delay: 0.3s; }

.trust-strip__item:nth-child(1) { transition-delay: 0.1s; }
.trust-strip__item:nth-child(3) { transition-delay: 0.2s; }
.trust-strip__item:nth-child(5) { transition-delay: 0.3s; }

/* ===========================
   ACCESSIBILITY
   =========================== */

/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--sage);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
    outline: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .section,
    .testimonial,
    .practice-card,
    .image-frame {
        opacity: 1 !important;
        transform: none !important;
    }

    .btn--breathing {
        animation: none !important;
    }
}

/* High contrast */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }

    .form-input {
        border: 2px solid var(--text);
    }
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    .header,
    .nav,
    .sticky-cta,
    .opt-in-form,
    .video-wrapper,
    .showcase,
    .hero__decoration {
        display: none;
    }

    body {
        background-color: white;
        padding-top: 0;
    }

    .section {
        background: white !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===========================
   CHECK LIST
   =========================== */
.check-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.check-list--centered {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.check-list__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 1em;
    color: var(--text);
    line-height: 1.6;
}

.check-list__item::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237A8F6F' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ===========================
   CLARITY GRID (What This Is / What This Is Not)
   =========================== */
.clarity-grid {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
    .clarity-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

.clarity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.clarity-card--positive {
    border-left: 4px solid var(--sage);
    background: linear-gradient(135deg, var(--white), var(--sage-lighter));
}

.clarity-card--neutral {
    border-left: 4px solid var(--cream-dark);
    background: linear-gradient(135deg, var(--white), var(--cream));
}

.clarity-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.clarity-card--positive .clarity-card__title {
    color: var(--sage-hover);
}

.clarity-card__text {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0;
}

.clarity-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clarity-card__list li {
    position: relative;
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    font-size: 0.95em;
    color: var(--text-light);
    line-height: 1.6;
}

.clarity-card__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .clarity-card {
        padding: var(--space-xl);
    }

    .clarity-card__title {
        font-size: 22px;
    }
}

/* Content Card Centered Variant */
.content-card--centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   CONSULTATION MULTI-STEP FORM
   =========================== */
.consultation-section {
    background: linear-gradient(135deg, var(--sage-lighter) 0%, var(--cream) 50%, var(--sage-lighter) 100%);
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-light), transparent);
}

.consultation-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-light), transparent);
}

.consultation-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .consultation-form-wrapper {
        padding: var(--space-xl);
    }
}

/* Progress Bar */
.consultation-progress {
    margin-bottom: var(--space-lg);
}

.consultation-progress__bar {
    height: 6px;
    background: var(--sage-lighter);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.consultation-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sage), var(--sage-hover));
    border-radius: var(--radius-full);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20%;
}

.consultation-progress__text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.consultation-progress__step {
    font-weight: 500;
    color: var(--sage);
}

/* Form Steps */
.consultation-step {
    display: none;
    animation: fadeInStep 0.4s ease;
}

.consultation-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.consultation-step__question {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text);
    margin-bottom: var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .consultation-step__question {
        font-size: 26px;
    }
}

/* Radio Options */
.consultation-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.consultation-option {
    position: relative;
}

.consultation-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.consultation-option label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1em;
    color: var(--text);
}

.consultation-option label::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--sage-light);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.consultation-option input[type="radio"]:checked + label {
    background: var(--sage-lighter);
    border-color: var(--sage);
}

.consultation-option input[type="radio"]:checked + label::before {
    border-color: var(--sage);
    background: var(--sage);
    box-shadow: inset 0 0 0 4px var(--white);
}

.consultation-option input[type="radio"]:focus + label {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}

.consultation-option label:hover {
    background: var(--sage-lighter);
    border-color: var(--sage-light);
}

/* Contact Fields (Step 5) */
.consultation-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.consultation-contact .form-field {
    margin-bottom: 0;
}

/* Navigation Buttons */
.consultation-nav {
    display: flex;
    gap: var(--space-sm);
    justify-content: space-between;
    flex-wrap: wrap;
}

.consultation-nav .btn {
    flex: 1;
    min-width: 120px;
}

.btn--back {
    background: transparent;
    color: var(--sage);
    border: 2px solid var(--sage-light);
}

.btn--back:hover {
    background: var(--sage-lighter);
    border-color: var(--sage);
}

.btn--next,
.btn--submit {
    background: linear-gradient(135deg, var(--sage), var(--sage-hover));
    color: var(--white);
    border: none;
}

.btn--next:hover,
.btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sage);
}

.btn--next:disabled,
.btn--submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Consultation Intro Text */
.consultation-intro {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.consultation-intro__title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .consultation-intro__title {
        font-size: 36px;
    }
}

.consultation-intro__subtitle {
    font-size: 1em;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Consultation Benefits */
.consultation-benefits {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.consultation-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 14px;
    color: var(--text-light);
}

.consultation-benefit svg {
    width: 18px;
    height: 18px;
    color: var(--sage);
}

/* Success State */
.consultation-success {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
}

.consultation-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--sage-lighter), var(--sage-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-success__icon svg {
    width: 36px;
    height: 36px;
    color: var(--sage);
}

.consultation-success__title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.consultation-success__text {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Consultation Success with Booking Iframe */
.consultation-success__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.consultation-success__header .consultation-success__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
}

.consultation-success__header .consultation-success__icon svg {
    width: 28px;
    height: 28px;
}

.consultation-success__header .consultation-success__title {
    font-size: 22px;
    margin-bottom: var(--space-xs);
}

.consultation-success__header .consultation-success__text {
    font-size: 15px;
    margin-bottom: 0;
}

.consultation-booking-iframe {
    min-height: 650px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.consultation-booking-iframe iframe {
    width: 100%;
    min-height: 650px;
    display: block;
}

@media (max-width: 600px) {
    .consultation-success {
        padding: var(--space-md) var(--space-sm);
    }

    .consultation-booking-iframe {
        min-height: 700px;
    }

    .consultation-booking-iframe iframe {
        min-height: 700px;
    }
}
