:root {
    --teal: #2A5A5A;
    --teal-dark: #1e4444;
    --teal-light: #3a7a7a;
    --sand: #D4C4A8;
    --sand-light: #E8DCC8;
    --gold: #C49A6C;
    --gold-light: #D4AA7C;
    --cream: #F7F5F2;
    --cream-dark: #EDE9E3;
    --charcoal: #333333;
    --charcoal-light: #555555;

    --font-serif: 'Libre Baskerville', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-soft: 0 4px 20px rgba(42, 90, 90, 0.08);
    --shadow-medium: 0 8px 40px rgba(42, 90, 90, 0.12);
    --shadow-lifted: 0 20px 60px rgba(42, 90, 90, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Subtle grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    body::before { display: none; }
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--teal);
    color: white;
    padding: 8px 16px;
    z-index: 10001;
    transition: top 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}
.skip-link:focus {
    top: 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.3;
    color: var(--teal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p {
    font-size: 1.1rem;
    color: var(--charcoal-light);
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--gold);
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--teal);
    color: white;
    box-shadow: 0 4px 20px rgba(42, 90, 90, 0.3);
}

.btn-primary:hover {
    background: var(--teal-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42, 90, 90, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-secondary:hover {
    background: var(--teal);
    color: white;
}

.btn-gold {
    background: var(--gold);
    color: white;
    box-shadow: 0 4px 20px rgba(196, 154, 108, 0.3);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: white;
    transform: translateY(-2px);
}

/* Section spacing */
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
}

/* ==================== HEADER ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(247, 245, 242, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--teal);
    font-weight: 700;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
}

.header-phone:hover {
    color: var(--gold);
}

.header-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .header-phone { display: none; }
    .header-cta {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* ==================== HERO ==================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Organic shape decorations */
#hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(212, 196, 168, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(42, 90, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(42, 90, 90, 0.1);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-title {
    margin-bottom: 24px;
    color: var(--charcoal);
}

.hero-title em {
    color: var(--teal);
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--charcoal-light);
}

.hero-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 36px;
    color: var(--charcoal-light);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.hero-text-link {
    font-size: 1rem;
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
}

.hero-phone {
    font-size: 1rem;
    color: var(--charcoal-light);
    margin-bottom: 36px;
}

.hero-phone a {
    font-weight: 600;
    color: var(--teal);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 12px;
    height: 12px;
    fill: white;
}

.hero-image {
    position: relative;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lifted);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--sand);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-image-wrapper img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
}

.hero-image-quote {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    max-width: 280px;
}

.hero-image-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--teal);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        max-width: 280px;
        margin: 30px auto 0;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-phone {
        text-align: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image-quote {
        display: none;
    }

    .hero-image-wrapper::before {
        display: none;
    }
}

/* ==================== VALIDATION ==================== */
#validation {
    background: white;
    position: relative;
}

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

.validation-header h2 {
    margin-bottom: 16px;
}

.validation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.validation-card {
    padding: 32px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sand);
    transition: var(--transition-smooth);
}

.validation-card:hover {
    border-left-color: var(--gold);
    transform: translateX(4px);
}

.validation-card p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.validation-transition {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    border-radius: var(--radius-lg);
    color: white;
}

.validation-transition p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

/* ==================== ABOUT ==================== */
#about {
    background: var(--cream);
    position: relative;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 120px;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.about-credentials {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.credential-tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal);
    box-shadow: var(--shadow-soft);
}

.about-content h2 {
    margin-bottom: 32px;
}

.about-content p {
    margin-bottom: 24px;
    font-size: 1.15rem;
}

.about-content p:first-of-type {
    font-size: 1.3rem;
    color: var(--charcoal);
}

.about-highlight {
    padding: 32px;
    background: white;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin: 40px 0;
}

.about-highlight p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--teal);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==================== HOW IT WORKS ==================== */
#how-it-works {
    background: white;
}

.how-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

.how-header h2 {
    margin-bottom: 16px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting line */
.how-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--sand) 0%, var(--gold) 50%, var(--sand) 100%);
    z-index: 0;
}

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

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--teal);
    border: 3px solid var(--sand);
    transition: var(--transition-smooth);
}

.how-step:hover .step-number {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}

.how-step h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.how-step p {
    font-size: 1rem;
    line-height: 1.7;
}

.how-cta {
    text-align: center;
    margin-top: 60px;
}

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

    .how-steps::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==================== WHO THIS IS FOR ==================== */
#who-for {
    background: white;
}

.who-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.who-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.who-column {
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--cream);
}

.who-column:nth-child(2) {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--cream) 100%);
}

.who-column h3 {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.who-icon {
    width: 40px;
    height: 40px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

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

.who-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.who-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.who-parents {
    margin-top: 50px;
    padding: 40px;
    background: var(--teal);
    border-radius: var(--radius-lg);
    text-align: center;
}

.who-parents h3 {
    color: white;
    margin-bottom: 16px;
}

.who-parents p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

    .who-column {
        padding: 32px;
    }
}

/* ==================== DIFFERENT ==================== */
#different {
    background: var(--cream);
}

.different-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.comparison-table {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

.comparison-row:not(:last-child) {
    border-bottom: 1px solid var(--cream-dark);
}

.comparison-cell {
    padding: 28px 32px;
}

.comparison-cell.old {
    background: var(--cream);
    position: relative;
}

.comparison-cell.old::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--sand);
}

.comparison-cell.new {
    background: white;
}

.comparison-header {
    background: var(--teal) !important;
}

.comparison-header .comparison-cell {
    padding: 20px 32px;
}

.comparison-header .comparison-cell.old {
    background: var(--teal-dark) !important;
}

.comparison-header .comparison-cell.old::after {
    display: none;
}

.comparison-header h4 {
    color: white;
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    margin: 0;
}

.comparison-cell p {
    margin: 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-cell.old p {
    color: var(--charcoal-light);
}

.comparison-cell.new p {
    color: var(--teal);
    font-weight: 500;
}

.icon-x {
    color: #c44;
    font-weight: bold;
}

.icon-check {
    color: var(--teal);
    font-weight: bold;
}

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

    .comparison-cell.old::after {
        display: none;
    }

    .comparison-cell {
        padding: 20px 24px;
    }
}

/* ==================== TESTIMONIALS ==================== */
#testimonials {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: white;
    text-align: center;
}

#testimonials h2 {
    color: white;
    margin-bottom: 60px;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    padding: 32px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

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

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-stats {
        grid-template-columns: 1fr;
    }
}

/* ==================== PROGRAMS ==================== */
#programs {
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
}

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

.programs-header h2 {
    margin-bottom: 16px;
}

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

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.program-card.featured {
    background: var(--teal);
    color: white;
    position: relative;
}

.program-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.program-card.featured h3,
.program-card.featured p {
    color: white;
}

.program-card.featured .program-features li {
    color: rgba(255, 255, 255, 0.9);
}

.program-card.featured .program-features li::before {
    background: var(--gold);
}

.program-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 8px;
}

.program-card.featured .program-name {
    color: var(--sand);
}

.program-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.program-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 8px;
}

.program-card.featured .program-price {
    color: white;
}

.program-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.program-for {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 24px;
}

.program-card.featured .program-for {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.program-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.program-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.program-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--teal);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.program-card .btn {
    width: 100%;
}

.program-card.featured .btn {
    background: white;
    color: var(--teal);
}

.program-card.featured .btn:hover {
    background: var(--cream);
}

.programs-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
}

.programs-note p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin: 0;
}

.availability-note {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .program-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .program-card.featured {
        order: -1;
    }
}

/* ==================== MID-PAGE CTA ==================== */
#book-now {
    padding: 60px 0;
    background: var(--sand-light);
    text-align: center;
}

#book-now h2 {
    margin-bottom: 12px;
}

#book-now .mid-cta-subtitle {
    margin-bottom: 30px;
    color: var(--charcoal-light);
    font-size: 1.1rem;
}

.mid-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.mid-cta-actions .phone-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
}

.mid-cta-trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

.form-availability {
    text-align: center;
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .mid-cta-trust {
        flex-direction: column;
        gap: 8px;
    }
}

/* ==================== FAQ ==================== */
#faq {
    background: white;
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

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

.faq-item summary {
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--charcoal);
    transition: var(--transition-smooth);
    list-style: none;
}

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

.faq-item summary::marker {
    display: none;
    content: '';
}

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

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--teal);
    transition: var(--transition-smooth);
}

.faq-item[open] .faq-icon {
    background: var(--teal);
}

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

.faq-answer {
    overflow: hidden;
}

.faq-answer-inner {
    padding: 0 0 28px 0;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-answer .faq-cta-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==================== CRISIS ==================== */
#crisis {
    background: var(--cream-dark);
    padding: 60px 0;
}

.crisis-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.crisis-inner h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.crisis-inner > p {
    margin-bottom: 32px;
}

.crisis-resources {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: left;
}

.crisis-resources ul {
    list-style: none;
    margin-bottom: 24px;
}

.crisis-resources li {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.crisis-resources li:last-child {
    border-bottom: none;
}

.crisis-resources a {
    font-weight: 600;
    color: var(--teal);
}

.crisis-note {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--cream);
}

/* ==================== FINAL CTA ==================== */
#cta {
    background: linear-gradient(180deg, white 0%, var(--sand-light) 100%);
    text-align: center;
    padding: 120px 0;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

#cta h2 {
    margin-bottom: 20px;
    color: var(--charcoal);
}

#cta h2 em {
    color: var(--teal);
    font-style: normal;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

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

.form-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    flex-wrap: wrap;
}

.what-to-expect {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    text-align: center;
}

.what-to-expect h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.what-to-expect p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.expect-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expect-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--teal);
}

@media (max-width: 600px) {
    .what-to-expect {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

.cta-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

.cta-detail svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.cta-contact {
    font-size: 1rem;
    color: var(--charcoal-light);
}

.cta-contact a {
    font-weight: 600;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-credentials span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.footer-column h4 {
    color: white;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-column span {
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==================== MOBILE STICKY CTA ==================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-cta-inner {
    display: flex;
    gap: 12px;
}

.mobile-cta-inner .btn {
    flex: 1;
}

.mobile-cta-inner .btn-phone {
    flex: 0 0 auto;
    width: 56px;
    padding: 0;
    background: var(--cream);
    color: var(--teal);
    box-shadow: none;
    border: 2px solid var(--teal);
}

.mobile-cta-inner .btn-phone svg {
    width: 22px;
    height: 22px;
    fill: var(--teal);
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }

    footer {
        padding-bottom: 100px;
    }
}

/* ==================== CONTACT FORM ==================== */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

#contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 24px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

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

.form-group label .optional {
    font-weight: 400;
    color: var(--charcoal-light);
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--charcoal);
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(196, 154, 108, 0.1);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group input:invalid:focus:not(:placeholder-shown) {
    border-color: #c44;
}

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

.btn-submit {
    width: 100%;
    padding: 18px 36px;
    font-size: 1.1rem;
    margin-top: 8px;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin-top: 12px;
}

/* Form Messages */
.form-message {
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.form-message.success {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
}

.form-message.error {
    background: #fff5f5;
    border: 2px solid #c44;
}

.form-message .message-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.form-message.success .message-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.form-message.error .message-icon {
    background: #c44;
    color: white;
}

.form-message h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-message.success h3 {
    color: white;
}

.form-message.error h3 {
    color: #c44;
}

.form-message p {
    font-size: 1.1rem;
    margin: 0;
}

.form-message.success p {
    color: rgba(255, 255, 255, 0.9);
}

.form-message.error p {
    color: var(--charcoal);
}

.form-message.error a {
    color: var(--teal);
    font-weight: 600;
}

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

    #contact-form {
        padding: 28px 20px;
    }

    .form-message {
        padding: 28px 20px;
    }

    .form-trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}
