@import url('/css/refined.css?v=20260715-1');

/* ============================================
   ROUTING HOMEPAGE - v2 (2026-06-28)
   New sections: routing hero, trust strip, path preview,
   process steps, location grid, dual forms, FAQ, contact dock.
   Reuses design tokens from styles.css and landing.css.
   ============================================ */

/* --------------------------------------------
   Brand tokens — mirrored from landing.css so this
   file is self-sufficient on pages that no longer
   load landing.css (e.g. the refactored homepage).
   Values are identical to landing.css; re-declaring
   them is harmless on pages where landing.css is
   still loaded.
   -------------------------------------------- */
:root {
    /* Individual palette - warm sage */
    --ind-50: #f0f9f6;
    --ind-100: #dcf0e8;
    --ind-200: #bce0d3;
    --ind-300: #8fcaa9;
    --ind-400: #5fae80;
    --ind-500: #3f9568;
    --ind-600: #2e7a52;
    --ind-700: #286345;
    --ind-800: #225038;
    --ind-soft: #e8f5ee;
    --ind-soft-2: #f5fbf8;

    /* Organization palette - deep indigo + warm gold */
    --org-50: #f4f5fb;
    --org-100: #e6e8f5;
    --org-200: #c9cdeb;
    --org-300: #a3a8d8;
    --org-400: #7d82c2;
    --org-500: #5d62a8;
    --org-600: #4a4f8c;
    --org-700: #3d4174;
    --org-800: #2f3357;
    --org-900: #1f2340;
    --gold-300: #e8c878;
    --gold-400: #d9b35a;
    --gold-500: #c89b3c;
    --gold-600: #a87f2a;
    --org-soft: #eef0fb;
    --org-soft-2: #f7f8fd;

    --surface-glass: rgba(255, 255, 255, 0.75);
    --shadow-soft: 0 8px 32px rgba(13, 71, 50, 0.06);
    --shadow-lift: 0 16px 48px rgba(13, 71, 50, 0.1);
}

/* ============================================
   ROUTING HERO
   ============================================ */
.routing-hero {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 4vw, 4rem);
    overflow: hidden;
    min-height: 680px;
    background:
        radial-gradient(ellipse 70% 50% at 80% 10%, rgba(46, 122, 82, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 10% 90%, rgba(74, 79, 140, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--ind-soft-2) 0%, #fff 100%);
}

/* The two edge wheels intentionally continue beyond the viewport. */
.hero-wheel {
    --wheel-size: 144px;
    position: absolute;
    top: 2.5rem;
    z-index: 2;
    width: 280px;
    color: var(--ink);
}

.hero-wheel--right { right: 8px; }
.hero-wheel--left { left: 8px; }

.hero-wheel-kicker {
    position: relative;
    z-index: 2;
    width: max-content;
    margin: 0 auto 0.55rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(46, 122, 82, 0.16);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-xs);
    color: var(--ind-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-wheel--gallery .hero-wheel-kicker {
    border-color: rgba(93, 98, 168, 0.16);
    color: var(--org-700);
}

.hero-wheel-viewport {
    position: relative;
    height: 640px;
    overflow: visible;
}

.hero-wheel-track {
    position: absolute;
    inset: 0;
    direction: ltr;
}

.hero-wheel-set {
    position: absolute;
    inset: 0;
}

.hero-wheel-item {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: var(--wheel-size);
    height: var(--wheel-size);
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 3px solid rgba(63, 149, 104, 0.78);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 26px rgba(25, 70, 52, 0.12);
    color: var(--ink);
    font: inherit;
    text-decoration: none;
    direction: rtl;
    transform: translateZ(0);
    cursor: pointer;
    will-change: transform, opacity;
    transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero-wheel--gallery .hero-wheel-item {
    border-color: rgba(93, 98, 168, 0.68);
    box-shadow: 0 10px 26px rgba(47, 51, 87, 0.13);
}

.hero-wheel-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 260ms ease;
}

.hero-wheel-item span {
    position: absolute;
    right: 50%;
    bottom: 8px;
    max-width: calc(100% - 20px);
    padding: 0.25rem 0.6rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 3px 12px rgba(31, 45, 39, 0.12);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform: translateX(50%);
}

.hero-wheel-item:hover,
.hero-wheel-item:focus-visible {
    border-color: var(--ind-600);
    box-shadow: 0 16px 38px rgba(25, 70, 52, 0.24);
    filter: saturate(1.08) brightness(1.03);
    outline: 3px solid rgba(255, 255, 255, 0.95);
    outline-offset: 2px;
}

.hero-wheel--gallery .hero-wheel-item:hover,
.hero-wheel--gallery .hero-wheel-item:focus-visible {
    border-color: var(--org-600);
}

.hero-wheel-item:hover img { transform: scale(1.045); }

.routing-hero-inner {
    width: min(calc(100% - 420px), 820px);
    z-index: 3;
}

@media (max-width: 1200px) {
    .hero-wheel {
        --wheel-size: 128px;
        width: 220px;
    }
    .hero-wheel--right { right: 8px; }
    .hero-wheel--left { left: 8px; }
    .routing-hero-inner { width: min(calc(100% - 260px), 820px); }
}

.routing-hero-inner {
    display: block;
    position: relative;
    z-index: 3;
}

.routing-hero-brand {
    position: absolute;
    inset-block-start: 5.5rem;
    inset-inline-end: -1rem;
    display: block;
    width: clamp(8.5rem, 10vw, 11rem);
    line-height: 0;
}

.routing-hero-brand img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--duration-normal) var(--ease-out);
}

.routing-hero-brand:hover img {
    transform: scale(1.03);
}

.routing-hero-brand:focus-visible {
    border-radius: 1rem;
    outline: 3px solid var(--logo-teal, #0f8f88);
    outline-offset: 0.35rem;
}

.logo--scroll-reveal {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.3rem) scale(0.96);
    transition:
        opacity var(--duration-normal) var(--ease-out),
        visibility var(--duration-normal) var(--ease-out),
        transform var(--duration-normal) var(--ease-out);
}

.logo--scroll-reveal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }

    .header-content > .logo--scroll-reveal {
        position: absolute;
        inset-block-start: 50%;
        inset-inline-start: 0;
        transform: translateY(calc(-50% - 0.3rem)) scale(0.96);
    }

    .header-content > .logo--scroll-reveal.is-visible {
        transform: translateY(-50%) scale(1);
    }

    .logo--scroll-reveal img {
        height: 40px;
    }
}

@media (max-width: 1200px) {
    .routing-hero-brand {
        position: relative;
        inset: auto;
        width: clamp(6.75rem, 12vw, 8rem);
        margin: 0 auto 1rem;
    }
}

.routing-hero-copy {
    min-width: 0;
    max-width: 820px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .routing-hero-inner {
        width: min(calc(100% - 2rem), 760px);
    }
}

@media (max-width: 760px) {
    .routing-hero {
        display: flex;
        min-height: 0;
        flex-direction: column;
        padding-bottom: 1.5rem;
    }

    .routing-hero-inner {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-inline: 1rem;
    }

    .routing-hero-copy,
    .path-cta-grid,
    .path-cta,
    .path-cta-body {
        min-width: 0;
        max-width: 100%;
    }

    .hero-wheel {
        --wheel-size: 106px;
        position: relative;
        inset: auto;
        order: 2;
        width: 100%;
        margin-top: 1.5rem;
    }

    .hero-wheel--gallery {
        order: 3;
        margin-top: 0.85rem;
    }

    .hero-wheel-kicker {
        margin-right: 1rem;
        margin-left: auto;
    }

    .hero-wheel-viewport {
        width: 100%;
        height: 224px;
    }

    .hero-wheel-track,
    .hero-wheel-set {
        position: absolute;
        inset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-wheel-item,
    .hero-wheel-item img { transition: none; }
}

.wheel-modal-content {
    max-width: 1040px;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
}

.wheel-modal-image-wrap {
    background: linear-gradient(145deg, var(--ind-soft-2), var(--org-soft-2));
}

.wheel-modal-image-wrap img { object-position: center; }

.wheel-modal-examples {
    margin: -0.25rem 0 1.35rem;
}

.wheel-modal-examples[hidden] { display: none; }

.wheel-modal-examples h4 {
    margin: 0 0 0.65rem;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.4;
}

.wheel-modal-examples ul {
    display: grid;
    gap: 0.48rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wheel-modal-examples li {
    position: relative;
    padding: 0.62rem 2rem 0.62rem 0.8rem;
    border: 1px solid rgba(46, 122, 82, 0.13);
    border-radius: 16px 10px 16px 16px;
    background: linear-gradient(110deg, var(--ind-soft-2), var(--ind-soft));
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(7px);
}

.wheel-modal-examples li:nth-child(even) {
    border-radius: 10px 16px 16px 16px;
    background: linear-gradient(250deg, var(--ind-soft-2), #edf7f2);
}

.wheel-modal-examples li::before {
    position: absolute;
    top: 0.82rem;
    right: 0.78rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 65% 35% 65% 35%;
    background: var(--ind-400);
    box-shadow: 0 0 0 4px rgba(95, 174, 128, 0.11);
    content: '';
    transform: rotate(18deg);
}

.wheel-detail-modal.active .wheel-modal-examples li {
    animation: wheel-example-in 360ms var(--ease-out) forwards;
    animation-delay: calc(90ms + var(--example-index) * 70ms);
}

@keyframes wheel-example-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wheel-detail-modal.active .wheel-modal-examples li {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.wheel-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.wheel-modal-actions .image-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    text-align: center;
}

.wheel-modal-more {
    border: 1px solid var(--ind-200);
    background: var(--ind-soft);
    box-shadow: none;
    color: var(--ind-700);
}

.wheel-modal-more:hover {
    background: var(--ind-100);
    box-shadow: 0 8px 18px rgba(46, 122, 82, 0.12);
}

@media (max-width: 968px) {
    .wheel-modal-content { grid-template-columns: 1fr; }
    .wheel-modal-image-wrap { min-height: 230px; max-height: 38vh; }
    .wheel-modal-text { padding: 1.5rem; }
}

@media (max-width: 520px) {
    .wheel-detail-modal { padding: 1rem; }
    .wheel-modal-actions { flex-direction: column; }
    .wheel-modal-actions .image-modal-cta { width: 100%; }
}

.routing-hero-eyebrow {
    max-width: 48rem;
    margin: 0 auto 0.9rem;
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    font-weight: 600;
    color: var(--ind-600);
    letter-spacing: 0.01em;
    line-height: 1.55;
    text-wrap: balance;
}

.routing-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 1rem;
    text-wrap: balance;
}

.routing-hero-title-sub {
    display: block;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 0.65rem;
    line-height: 1.35;
}

.routing-hero-title-sub > span {
    display: block;
}

.routing-hero-title-fit {
    margin-top: 0.2rem;
    font-size: 0.78em;
    font-weight: 500;
    color: inherit;
}

.routing-hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 54ch;
    margin: 0 0 1.6rem;
}

.path-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.path-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1.05rem 0.85rem;
    border-radius: 0;
    text-decoration: none;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.34);
    border: 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: none;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.path-cta-individual:hover {
    background: rgba(232, 245, 238, 0.58);
    border-bottom-color: var(--ind-400);
}

.path-cta-org:hover {
    background: rgba(238, 240, 251, 0.62);
    border-bottom-color: var(--org-400);
}

.path-cta-individual { border-inline-start: 3px solid var(--ind-500); }
.path-cta-org { border-inline-start: 3px solid var(--org-500); }

.path-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.path-cta-individual .path-cta-icon {
    background: var(--ind-soft);
    color: var(--ind-600);
}

.path-cta-org .path-cta-icon {
    background: var(--org-soft);
    color: var(--org-600);
}

.path-cta-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.path-cta-body strong { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.path-cta-body small { font-size: 0.85rem; color: var(--text-secondary); overflow-wrap: anywhere; }

.path-cta-arrow {
    display: flex;
    align-items: center;
    color: var(--muted);
    transition: transform var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out);
}
.path-cta-individual:hover .path-cta-arrow { transform: translateX(-4px); color: var(--ind-600); }
.path-cta-org:hover .path-cta-arrow { transform: translateX(-4px); color: var(--org-600); }

.routing-hero-contact-mini {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.routing-hero-contact-mini a {
    color: var(--ind-600);
    font-weight: 600;
    text-decoration: none;
}
.routing-hero-contact-mini a:hover { text-decoration: underline; }

.dot-sep { color: var(--border); }

/* Quiet proof strip: concrete reassurance without another competing hero card. */
.homepage-proof {
    position: relative;
    z-index: 4;
    padding: 1rem 0;
    border-block: 1px solid var(--ind-100);
    background: rgba(245, 251, 248, 0.94);
}

.homepage-proof-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.homepage-proof-list li {
    min-width: 0;
    padding: 0.35rem 1.25rem;
    text-align: center;
}

.homepage-proof-list li + li {
    border-inline-start: 1px solid var(--ind-100);
}

.homepage-proof-list strong,
.homepage-proof-list span {
    display: block;
}

.homepage-proof-list strong {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 800;
}

.homepage-proof-list span {
    margin-top: 0.15rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

/* Remove the unrelated lime accent from the header conversion action. */
.header-contact .phone-link {
    background: var(--ind-800);
    color: #fff;
    box-shadow: 0 5px 14px rgba(34, 80, 56, 0.2);
}

.header-contact .phone-link:hover {
    background: var(--ind-700);
    box-shadow: 0 8px 20px rgba(34, 80, 56, 0.26);
}

@media (max-width: 760px) {
    .homepage-proof-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 0.8rem;
    }

    .homepage-proof-list li:nth-child(odd) {
        border-inline-start: 0;
    }

    .homepage-proof-list li:nth-child(n + 3) {
        padding-top: 0.85rem;
        border-top: 1px solid var(--ind-100);
    }
}

/* Final shared alignment guard for every editorial subpage. */
.page-header .container {
    width: 100%;
    margin-inline: auto;
    text-align: center;
}

.page-header .container > h1,
.page-header .container > .page-header-subtitle {
    margin-inline: auto;
    text-align: center;
}

.page-header .breadcrumb {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
}

@media (max-width: 768px) {
    .page-header .container {
        padding-inline: 1.5rem;
    }

    .page-header .container > h1 {
        max-width: 18ch;
    }
}

/* ============================================
   HERO TRUST PANEL (replaces hero gallery)
   ============================================ */
.hero-trust-panel {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    box-shadow: var(--shadow-lift);
    position: relative;
}

.hero-trust-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--ind-300) 0%, var(--org-300) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.hero-trust-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
}

.hero-trust-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.98rem;
    color: var(--text);
    font-weight: 500;
}

.hero-trust-list svg { color: var(--ind-500); flex-shrink: 0; }

.hero-trust-footnote {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
    padding: 1.75rem 0;
    background: linear-gradient(135deg, var(--ind-600) 0%, var(--ind-700) 100%);
    color: #fff;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.trust-stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.trust-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* ============================================
   SECTION HEADERS (shared)
   ============================================ */
.section-header-compact {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto clamp(2rem, 3.5vw, 3rem);
}

.section-eyebrow {
    display: block;
    width: max-content;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ind-600);
    background: var(--ind-soft);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    margin: 0 auto 0.85rem;
}

.section-header-compact h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   PATH PREVIEW
   ============================================ */
.path-preview-section {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: #fff;
}

.path-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.path-preview-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 2.5vw, 2.25rem);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.path-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.path-preview-individual { border-top: 5px solid var(--ind-500); }
.path-preview-org { border-top: 5px solid var(--org-500); }

.path-preview-header { display: flex; flex-direction: column; gap: 0.5rem; }

.path-preview-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.path-preview-individual .path-preview-eyebrow { color: var(--ind-600); }
.path-preview-org .path-preview-eyebrow { color: var(--org-600); }

.path-preview-header h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

.path-preview-header p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.path-preview-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.path-preview-list li {
    position: relative;
    padding-right: 1.75rem;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.55;
}

.path-preview-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--ind-500);
    font-weight: 700;
}

.path-preview-org .path-preview-list li::before { color: var(--org-500); }

.path-preview-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-out);
    align-self: flex-start;
}

.path-preview-individual .path-preview-cta {
    background: var(--ind-soft);
    color: var(--ind-700);
}
.path-preview-individual .path-preview-cta:hover {
    background: var(--ind-600);
    color: #fff;
}

.path-preview-org .path-preview-cta {
    background: var(--org-soft);
    color: var(--org-700);
}
.path-preview-org .path-preview-cta:hover {
    background: var(--org-600);
    color: #fff;
}

.path-preview-cta svg { transition: transform var(--duration-normal) var(--ease-out); }
.path-preview-cta:hover svg { transform: translateX(-4px); }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: var(--ind-soft-2);
}

.process-steps {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    counter-reset: step;
}

.process-steps::before {
    content: none;
}

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

.process-step {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem 1.75rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ind-600), var(--ind-500));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 0.85rem;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.process-step p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.process-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ind-600), var(--ind-500));
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.02rem;
    box-shadow: 0 6px 20px rgba(46, 122, 82, 0.25);
    transition: all var(--duration-normal) var(--ease-out);
}

.process-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(46, 122, 82, 0.32);
}

.process-cta-btn svg { transition: transform var(--duration-normal) var(--ease-out); }
.process-cta-btn:hover svg { transform: translateX(-4px); }

/* ============================================
   ORGANIZATIONAL EVIDENCE PREVIEW
   ============================================ */
.org-evidence-section {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: var(--org-soft-2);
}

.org-evidence-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

@media (max-width: 700px) {
    .org-evidence-preview { grid-template-columns: 1fr; }
}

.org-evidence-preview button {
    border: 0;
    background: #fff;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
    aspect-ratio: 4 / 3;
    position: relative;
}

.org-evidence-preview button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.org-evidence-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.org-evidence-preview .evidence-tag {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(31, 35, 64, 0.85);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.org-evidence-cta { text-align: center; }

.org-evidence-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--org-600), var(--org-500));
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(93, 98, 168, 0.25);
    transition: all var(--duration-normal) var(--ease-out);
}

.org-evidence-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(93, 98, 168, 0.32);
}

.org-evidence-link svg { transition: transform var(--duration-normal) var(--ease-out); }
.org-evidence-link:hover svg { transform: translateX(-4px); }

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

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

.location-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--duration-normal) var(--ease-out);
}

.location-card:hover {
    border-color: var(--ind-300);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.location-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ind-soft);
    color: var(--ind-600);
    margin: 0 auto 1rem;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.location-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: var(--bg-alt);
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .faq-columns { grid-template-columns: 1fr; gap: 1.75rem; }
}

.faq-column-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ind-200);
}
.faq-column:last-child .faq-column-title { border-bottom-color: var(--org-200); }

.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }

.faq-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 1rem 1.25rem;
    text-align: right;
    font-family: var(--font-display);
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question:hover { background: var(--ind-soft-2); }

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    background: var(--ind-600);
    transition: transform var(--duration-normal) var(--ease-out);
}
.faq-icon::before {
    top: 9px; left: 4px; right: 4px; height: 2px;
}
.faq-icon::after {
    top: 4px; bottom: 4px; left: 9px; width: 2px;
}
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
    margin: 0;
    padding: 0 1.25rem 1rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ============================================
   DUAL CONTACT FORMS
   ============================================ */
.contact-section {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: #fff;
}

.contact-section::before {
    content: none;
}

.contact-section > .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card-private { border-top: 5px solid var(--ind-500); }
.contact-card-org { border-top: 5px solid var(--org-500); }

.contact-card-header { display: flex; flex-direction: column; gap: 0.4rem; }

.contact-card-eyebrow {
    display: block;
    width: max-content;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contact-card-private .contact-card-eyebrow { color: var(--ind-600); }
.contact-card-org .contact-card-eyebrow { color: var(--org-600); }

.contact-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

.contact-card-header p {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.contact-form { display: flex; flex-direction: column; gap: 0.85rem; }

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

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

.form-field { display: flex; flex-direction: column; gap: 0.3rem; }

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.req { color: #c43; }

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    color: var(--text);
    transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--ind-500);
    box-shadow: 0 0 0 3px rgba(63, 149, 104, 0.15);
}

.contact-card-org .form-field input:focus,
.contact-card-org .form-field select:focus,
.contact-card-org .form-field textarea:focus {
    border-color: var(--org-500);
    box-shadow: 0 0 0 3px rgba(93, 98, 168, 0.15);
}

.form-field textarea { resize: vertical; min-height: 60px; }

.btn-submit {
    margin-top: 0.5rem;
    padding: 0.95rem 1.5rem;
    border: 0;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-submit-private { background: linear-gradient(135deg, var(--ind-600), var(--ind-500)); box-shadow: 0 6px 18px rgba(46, 122, 82, 0.22); }
.btn-submit-private:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(46, 122, 82, 0.3); }

.btn-submit-org { background: linear-gradient(135deg, var(--org-600), var(--org-500)); box-shadow: 0 6px 18px rgba(93, 98, 168, 0.22); }
.btn-submit-org:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(93, 98, 168, 0.3); }

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

.form-disclaimer {
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0.25rem 0 0;
    text-align: center;
}

.form-message {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
}

.form-message.error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.form-success {
    text-align: center;
    padding: 1.5rem 1rem;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ind-600), var(--ind-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-card-org .form-success-icon {
    background: linear-gradient(135deg, var(--org-600), var(--org-500));
}

/* ============================================
   FOOTER LINKS (privacy/trust)
   ============================================ */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover { color: var(--ind-600); }

/* ============================================
   CONTACT DOCK (single floating control)
   ============================================ */
.contact-dock {
    position: fixed;
    z-index: 1000;
    left: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem 0.85rem 1rem;
    border: 0;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--ind-600), var(--ind-700));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(46, 122, 82, 0.35);
    transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-dock:hover, .contact-dock:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(46, 122, 82, 0.45);
    outline: none;
}

.contact-dock[aria-expanded="true"] {
    background: var(--ink);
}

.contact-dock-label { line-height: 1; }

@media (max-width: 480px) {
    .contact-dock { left: 1rem; bottom: 1rem; padding: 0.75rem 1rem 0.75rem 0.85rem; }
    .contact-dock-label { display: none; }
}

.contact-dock-menu {
    position: fixed;
    z-index: 1001;
    left: 1.5rem;
    bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    box-shadow: var(--shadow-lift);
    min-width: 220px;
    transform-origin: bottom left;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    pointer-events: none;
    transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

@media (max-width: 480px) {
    .contact-dock-menu { left: 1rem; bottom: 4.5rem; min-width: 200px; }
}

.contact-dock-menu.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-dock-menu[hidden] { display: none; }
.contact-dock-menu.is-open[hidden] { display: flex; }

.dock-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    font-size: 0.93rem;
    font-weight: 600;
    transition: background var(--duration-fast) var(--ease-out);
}

.dock-item:hover { background: var(--ind-soft-2); color: var(--ind-700); }

.dock-item svg { color: var(--ind-600); flex-shrink: 0; }

/* ============================================
   TEAM COMPACT (preserved from landing.css, refined)
   ============================================ */
.team-compact-section {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: #fff;
}

/* ============================================
   ACCESSIBILITY — focus rings
   ============================================ */
.path-cta:focus-visible,
.path-preview-cta:focus-visible,
.process-cta-btn:focus-visible,
.org-evidence-link:focus-visible,
.btn-submit:focus-visible,
.faq-question:focus-visible,
.dock-item:focus-visible,
.contact-dock:focus-visible,
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
    outline: 3px solid var(--ind-300);
    outline-offset: 2px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal { opacity: 1; transform: none; transition: none; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal[style*="none"] { opacity: 1; transform: none; }

/* Hidden overlays must stay out of both the visual and accessibility trees. */
.therapist-modal[hidden],
.image-modal[hidden],
.wheel-detail-modal[hidden],
.service-chat[hidden] {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    * { scroll-behavior: auto !important; }
}

/* ============================================
   RTL ADJUSTMENTS
   ============================================ */
[dir="rtl"] .path-cta-arrow svg,
[dir="rtl"] .path-preview-cta svg,
[dir="rtl"] .process-cta-btn svg,
[dir="rtl"] .org-evidence-link svg {
    transform: none;
}

[dir="rtl"] .path-cta-individual:hover .path-cta-arrow svg,
[dir="rtl"] .path-cta-org:hover .path-cta-arrow svg,
[dir="rtl"] .path-preview-cta:hover svg,
[dir="rtl"] .process-cta-btn:hover svg,
[dir="rtl"] .org-evidence-link:hover svg {
    transform: translateX(-4px);
}

/* ============================================
   HOMEPAGE — TEAM PREVIEW (compact clinical cards)
   Replaces the old circular team cluster. Simple HTML,
   max four clinical profiles, calm and spacious.
   ============================================ */
.team-preview {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    background: var(--ind-soft-2, #f5fbf8);
}

.team-mobile-preview { display: none !important; }

@media (max-width: 680px) {
    .team-compact-section {
        overflow: hidden;
    }

    .team-compact-section > .container > .section-header-compact,
    .team-compact-section .team-cta-compact {
        display: block !important;
    }

    .team-compact-section .therapist-cluster {
        position: relative;
        display: block !important;
        width: var(--container);
        height: var(--container);
        max-width: 100%;
        margin: 1.25rem auto 1.5rem;
        padding: 0;
    }

    .team-compact-section .therapist-cluster::before,
    .team-compact-section .therapist-cluster::after {
        display: block;
    }

    .team-compact-section .cluster-cell {
        position: absolute;
        top: 50%;
        left: 50%;
        width: var(--d);
        margin: 0;
        transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) !important;
    }

    .team-compact-section .cluster-cell:hover,
    .team-compact-section .cluster-cell:focus-visible {
        transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) scale(1.06) !important;
    }

    .team-compact-section .cluster-circle-name {
        font-size: clamp(0.56rem, 2.3vw, 0.7rem);
    }

    .team-compact-section .cluster-circle-role {
        font-size: clamp(0.48rem, 1.9vw, 0.58rem);
    }
}

@media (max-width: 420px) {
    .team-compact-section .cluster-circle-role { display: none; }
    .team-compact-section .cluster-circle-text { padding: 0.45rem 0.28rem 0.38rem; }
    .team-compact-section .cluster-circle-name {
        font-size: 0.62rem;
        line-height: 1.08;
        -webkit-line-clamp: 2;
    }
    .team-compact-section .cluster-cell--lead::after { font-size: 0.48rem; }
}

.team-preview-header {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
}

.team-preview-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.55rem;
    line-height: 1.25;
}

.team-preview-header p {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.team-preview-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 1.5vw, 1.5rem);
    max-width: 960px;
    margin-inline: auto;
}

.team-preview-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    box-shadow: 0 1px 2px rgba(13, 71, 50, 0.04);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.team-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.team-preview-card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ind-soft);
    background: #ffffff;
}

.team-preview-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.team-preview-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
}

.team-preview-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.team-preview-foot {
    text-align: center;
    margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
}

.team-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1px solid var(--ind-200);
    color: var(--ind-700);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background var(--duration-fast) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out),
                color var(--duration-fast) var(--ease-out);
}

.team-preview-link:hover {
    background: var(--ind-soft);
    border-color: var(--ind-300);
    color: var(--ind-800);
}

.team-preview-link:focus-visible {
    outline: 3px solid var(--ind-300);
    outline-offset: 2px;
}

.team-preview-link svg {
    transition: transform var(--duration-normal) var(--ease-out);
}

.team-preview-link:hover svg {
    transform: translateX(-3px);
}

[dir="rtl"] .team-preview-link svg {
    transform: none;
}
[dir="rtl"] .team-preview-link:hover svg {
    transform: translateX(-3px);
}

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

@media (max-width: 420px) {
    .team-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .team-preview-card {
        padding: 1rem 0.75rem 0.9rem;
    }
    .team-preview-card img {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   HOMEPAGE — CONTACT / HELP CTA (compact, no form)
   ============================================ */
.contact-cta {
    padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
    background: #ffffff;
}

.contact-cta-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 2vw, 1.75rem);
}

.contact-cta-copy {
    max-width: 56ch;
}

.contact-cta-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.contact-cta-copy p {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    background: #ffffff;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out),
                background var(--duration-fast) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out),
                color var(--duration-fast) var(--ease-out);
}

.contact-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 71, 50, 0.10);
}

.contact-cta-btn:focus-visible {
    outline: 3px solid var(--ind-300);
    outline-offset: 2px;
}

.contact-cta-btn svg {
    flex-shrink: 0;
}

.contact-cta-btn-phone {
    background: linear-gradient(135deg, var(--ind-600), var(--ind-500));
    color: #ffffff;
    border-color: var(--ind-600);
}

.contact-cta-btn-phone:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--ind-700), var(--ind-600));
}

.contact-cta-btn-whatsapp {
    background: #ffffff;
    color: var(--ind-700);
    border-color: var(--ind-200);
}

.contact-cta-btn-whatsapp:hover {
    background: var(--ind-soft);
    color: var(--ind-800);
}

.contact-cta-btn-whatsapp svg {
    color: #25D366;
}

.contact-cta-btn-chat {
    background: #ffffff;
    color: var(--org-700, #3d4174);
    border-color: var(--org-200, #c9cdeb);
}

.contact-cta-btn-chat:hover {
    background: var(--org-soft, #eef0fb);
    color: var(--org-800, #2f3357);
    border-color: var(--org-300, #a3a8d8);
}

.contact-cta-btn-chat svg {
    color: var(--org-600, #4a4f8c);
}

@media (max-width: 600px) {
    .contact-cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .contact-cta-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================
   ORGANIZATIONS PAGE — page header, programs,
   case studies, gallery, audience cards
   ============================================ */
.page-header-org {
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(74, 79, 140, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, var(--org-soft-2) 0%, #fff 100%);
    padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(2rem, 3vw, 3rem);
    text-align: center;
}

.page-header-eyebrow {
    display: block;
    width: max-content;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--org-600);
    background: var(--org-soft);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    margin: 0 auto 0.85rem;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.page-header-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 60ch;
    margin: 0 auto 1.75rem;
}

.page-header-cta { display: flex; justify-content: center; }

.btn-org-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--org-600), var(--org-500));
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.02rem;
    box-shadow: 0 6px 20px rgba(93, 98, 168, 0.28);
    transition: all var(--duration-normal) var(--ease-out);
}
.btn-org-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(93, 98, 168, 0.36); }
.btn-org-primary svg { transition: transform var(--duration-normal) var(--ease-out); }
.btn-org-primary:hover svg { transform: translateX(-4px); }
[dir="rtl"] .btn-org-primary svg { transform: none; }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}
.breadcrumb a { color: var(--org-600); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-current { color: var(--text); font-weight: 600; }

/* Section eyebrow variant for org */
.section-eyebrow-org { color: var(--org-600) !important; background: var(--org-soft) !important; }

/* Org intro / audience cards */
.org-intro-section { padding: clamp(2.5rem, 4vw, 4rem) 0; background: #fff; }

.org-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) { .org-audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .org-audience-grid { grid-template-columns: 1fr; } }

.org-audience-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--org-400);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    text-align: center;
}
.org-audience-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--org-700);
    margin: 0 0 0.5rem;
}
.org-audience-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
}

/* Programs section */
.programs-section { padding: clamp(3rem, 5vw, 4.5rem) 0; background: var(--org-soft-2); }

.program-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    margin-bottom: 1.75rem;
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.program-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.program-card-header {
    background: linear-gradient(135deg, var(--org-600) 0%, var(--org-700) 100%);
    color: #fff;
    padding: 1.25rem 1.5rem;
}
.program-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.18);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}
.program-card-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    margin: 0;
}

.program-card-body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .program-card-body { grid-template-columns: 1fr; gap: 1rem; }
}

.program-spec {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: var(--org-soft-2);
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
}

.program-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.program-spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--org-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.program-spec-value {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
}

.program-goals, .program-structure, .program-deliverable { display: flex; flex-direction: column; gap: 0.4rem; }

.program-goals h4, .program-structure h4, .program-deliverable h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--org-700);
    margin: 0 0 0.25rem;
}

.program-goals ul {
    margin: 0;
    padding-right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.program-goals li {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.55;
}

.program-structure p, .program-deliverable p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.program-card-footer {
    padding: 0.75rem 1.5rem 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.program-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: var(--org-soft);
    color: var(--org-700);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.92rem;
    transition: all var(--duration-normal) var(--ease-out);
}
.program-cta:hover { background: var(--org-600); color: #fff; }
.program-cta svg { transition: transform var(--duration-normal) var(--ease-out); }
.program-cta:hover svg { transform: translateX(-4px); }

/* Case studies */
.case-studies-section { padding: clamp(3rem, 5vw, 4.5rem) 0; background: #fff; }

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}
@media (max-width: 900px) { .case-studies-grid { grid-template-columns: 1fr; } }

.case-study-card {
    background: var(--org-soft-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--org-100);
    display: flex;
    flex-direction: column;
}

.case-study-header {
    background: #fff;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
}
.case-study-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--org-600);
    background: var(--org-soft);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.4rem;
}
.case-study-header h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.35;
}

.case-study-body { padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.85rem; flex-grow: 1; }

.case-study-block h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--org-700);
    margin: 0 0 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.case-study-block p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.case-studies-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

/* Org gallery */
.org-gallery-section { padding: clamp(3rem, 5vw, 4.5rem) 0; background: var(--org-soft-2); }

.org-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}
@media (max-width: 900px) { .org-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .org-gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.org-gallery-item {
    position: relative;
    border: 0;
    background: #fff;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-xs);
    transition: all var(--duration-normal) var(--ease-out);
}
.org-gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.org-gallery-item.is-featured { grid-column: span 2; grid-row: span 2; }
@media (max-width: 600px) { .org-gallery-item.is-featured { grid-column: span 2; grid-row: span 1; } }

.org-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-normal) var(--ease-out);
}
.org-gallery-item:hover img { transform: scale(1.05); }

.org-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(31, 35, 64, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0.65rem;
    color: #fff;
    opacity: 0.9;
}

.org-gallery-tag {
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.25rem;
    backdrop-filter: blur(4px);
}

.org-gallery-title {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
}

.org-gallery-item.is-featured .org-gallery-title { font-size: 1rem; }

/* Org FAQ */
.org-faq-section { background: #fff; }

.faq-list-single .faq-column-title { display: none; }

/* Org contact card standalone */
.contact-card-standalone {
    box-shadow: var(--shadow-md);
}

/* Contact dock variant for org page */
.contact-dock-org {
    background: linear-gradient(135deg, var(--org-600), var(--org-700));
    box-shadow: 0 8px 24px rgba(93, 98, 168, 0.35);
}
.contact-dock-org:hover, .contact-dock-org:focus-visible {
    box-shadow: 0 12px 32px rgba(93, 98, 168, 0.45);
}

.header-cta-org {
    background: linear-gradient(135deg, var(--org-600), var(--org-500)) !important;
    box-shadow: 0 4px 12px rgba(93, 98, 168, 0.2) !important;
}
.header-cta-org:hover {
    box-shadow: 0 6px 16px rgba(93, 98, 168, 0.3) !important;
}

/* ============================================
   THERAPY PAGE — page header, cultural fit,
   problem-oriented service cards, practical info
   ============================================ */
.page-header-individual {
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(46, 122, 82, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, var(--ind-soft-2) 0%, #fff 100%);
    padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(2rem, 3vw, 3rem);
    text-align: center;
}

.page-header-eyebrow-ind {
    color: var(--ind-600) !important;
    background: var(--ind-soft) !important;
}

.btn-ind-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ind-600), var(--ind-500));
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.02rem;
    box-shadow: 0 6px 20px rgba(46, 122, 82, 0.28);
    transition: all var(--duration-normal) var(--ease-out);
}
.btn-ind-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46, 122, 82, 0.36); }
.btn-ind-primary svg { transition: transform var(--duration-normal) var(--ease-out); }
.btn-ind-primary:hover svg { transform: translateX(-4px); }

.form-field-situation textarea {
    min-height: 150px;
}

/* The private intake belongs in the opening view of every private-service page. */
.page-header-with-intake {
    min-height: 0;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3.5rem);
    text-align: right;
}

.page-header-with-intake .container {
    max-width: 1180px;
}

.page-header-with-intake .breadcrumb {
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.subpage-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.subpage-hero-copy {
    text-align: right;
}

.page-header-with-intake .page-header-eyebrow {
    margin-inline: 0;
}

.page-header-with-intake h1,
.page-header-with-intake .page-header-subtitle {
    max-width: none;
    margin-inline: 0;
    text-align: right;
}

.page-header-with-intake h1 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.page-header-with-intake .page-header-subtitle {
    margin-bottom: 0;
}

.hero-scroll-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 3rem;
    margin: clamp(2rem, 5vh, 3.5rem) auto 0;
    padding: 0.65rem 1rem;
    gap: 0.5rem;
    color: var(--ind-600);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(46, 122, 82, 0.2);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(25, 83, 61, 0.12), inset 0 0 0 5px rgba(95, 174, 128, 0.05);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    transition: color var(--duration-normal) var(--ease-out),
        background-color var(--duration-normal) var(--ease-out),
        border-color var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out),
        transform var(--duration-normal) var(--ease-out);
}

.hero-scroll-cue i, .hero-scroll-cue .hero-cue-arrow {
    font-size: 1.15rem;
    line-height: 1;
    animation: hero-scroll-cue 2.2s var(--ease-out) infinite;
}

.hero-scroll-cue:hover {
    color: #fff;
    background: var(--ind-600);
    border-color: var(--ind-600);
    box-shadow: 0 14px 34px rgba(46, 122, 82, 0.26);
    transform: translateY(-2px);
}

.hero-scroll-cue:focus-visible {
    outline: 3px solid rgba(46, 122, 82, 0.28);
    outline-offset: 4px;
}

@keyframes hero-scroll-cue {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(4px); }
}

@media (min-width: 861px) {
    .hero-scroll-cue {
        translate: 1.9rem clamp(2.75rem, 8vh, 4rem);
    }
}

.hero-intake-card {
    padding: clamp(1.25rem, 2vw, 1.75rem);
    gap: 0.9rem;
    border-top-width: 4px;
    box-shadow: 0 18px 45px rgba(25, 83, 61, 0.12);
}

.hero-intake-card .contact-card-header {
    gap: 0.25rem;
}

.hero-intake-card .contact-card-header h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.25;
}

.hero-intake-card .contact-form {
    gap: 0.7rem;
}

.hero-intake-card .form-field-situation textarea {
    min-height: 76px;
}

.hero-intake-card .btn-submit {
    margin-top: 0.15rem;
    padding-block: 0.82rem;
}

.hero-intake-card .form-disclaimer {
    font-size: 0.75rem;
}

@media (max-width: 860px) {
    .subpage-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .subpage-hero-copy,
    .page-header-with-intake h1,
    .page-header-with-intake .page-header-subtitle {
        text-align: center;
    }

    .page-header-with-intake .page-header-eyebrow {
        margin-inline: auto;
    }

    .hero-scroll-cue {
        margin-top: 1.5rem;
    }

    .hero-intake-card {
        width: min(100%, 680px);
        margin-inline: auto;
    }
}

@media (max-width: 520px) {
    .page-header-with-intake {
        padding-top: 1rem;
    }

    .page-header-with-intake .breadcrumb {
        margin-bottom: 1rem;
    }

    .page-header-with-intake h1 {
        font-size: clamp(1.8rem, 9vw, 2.35rem);
    }

    .page-header-with-intake .page-header-subtitle {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .hero-intake-card {
        padding: 1.1rem;
        border-radius: var(--radius-lg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-cue i, .hero-scroll-cue .hero-cue-arrow {
        animation: none;
    }
}

/* Cultural fit */
.cultural-fit-section { padding: clamp(2.5rem, 4vw, 3.5rem) 0; background: #fff; }

.cultural-fit-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--ind-soft-2);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 2.5vw, 2.5rem);
    border-right: 4px solid var(--ind-500);
    box-shadow: var(--shadow-soft);
}

.cultural-fit-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 800;
    color: var(--ind-700);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.cultural-fit-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 0.85rem;
}
.cultural-fit-card p:last-child { margin-bottom: 0; }

/* Therapy services */
.therapy-services-section { padding: clamp(3rem, 5vw, 4.5rem) 0; background: var(--bg-alt); }

.therapy-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 800px) { .therapy-services-grid { grid-template-columns: 1fr; } }

.therapy-service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--ind-500);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.therapy-service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.therapy-service-tag {
    display: inline-block;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ind-600);
    background: var(--ind-soft);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
}

.therapy-service-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

.therapy-service-card h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ind-700);
    margin: 0.5rem 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.therapy-service-card p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.therapy-service-card p a {
    color: var(--ind-600);
    font-weight: 600;
}

.therapy-service-card ul {
    margin: 0;
    padding-right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.therapy-service-card li {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.55;
}

/* Practical info */
.practical-info-section { padding: clamp(3rem, 5vw, 4.5rem) 0; background: #fff; }

.practical-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1160px;
    margin: 0 auto;
    overflow: hidden;
    background: rgba(25, 83, 61, 0.12);
    border: 1px solid rgba(25, 83, 61, 0.12);
    border-radius: 18px;
}
@media (max-width: 800px) { .practical-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .practical-info-grid { grid-template-columns: 1fr; } }

.practical-info-card {
    position: relative;
    min-height: 150px;
    padding: clamp(1.45rem, 2.4vw, 2rem);
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: background-color var(--duration-normal) var(--ease-out);
}

.practical-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    color: #174d39;
    margin: 0 0 0.65rem;
}

.practical-info-card p {
    max-width: 36ch;
    font-size: 0.92rem;
    line-height: 1.72;
    color: #52645c;
    margin: 0;
}

@media (hover: hover) {
    .practical-info-card:hover {
        background: #fff;
    }
}

@media (max-width: 540px) {
    .practical-info-grid { border-radius: 14px; }

    .practical-info-card {
        min-height: 0;
        padding: 1.35rem 1.25rem;
    }
}

/* Training topics — one composed editorial panel instead of six floating cards. */
.training-topics-section {
    background: #f7faf8;
    border-block: 1px solid rgba(25, 83, 61, 0.08);
}

.training-topics-section .section-header-compact {
    margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.training-topics-section .training-topics-eyebrow {
    display: inline-flex;
    gap: 0;
    padding: 0 0 0.6rem;
    color: var(--ind-600) !important;
    background: transparent !important;
    border: 0;
    border-bottom: 1px solid rgba(46, 122, 82, 0.38);
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 0.035em;
}

.training-topics-section .training-topics-eyebrow::before {
    content: none;
}

.training-topics-section .section-header-compact h2::after {
    content: none;
}

/* ============================================
   LEGAL PAGES — privacy, accessibility, terms, data-security
   ============================================ */
.legal-content-section {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background: #fff;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    box-shadow: none;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 800;
    color: var(--ind-700);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ind-200);
    line-height: 1.3;
}

.legal-content h2:first-child { margin-top: 0; }
.legal-content h2 + .legal-prose + h2 { margin-top: 2rem; }

.legal-prose p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 0.85rem;
}
.legal-prose p:last-child { margin-bottom: 0; }

.legal-prose ul {
    margin: 0 0 0.85rem;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.legal-prose li {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text);
}

.legal-prose a {
    color: var(--ind-600);
    font-weight: 600;
    text-decoration: none;
}
.legal-prose a:hover { text-decoration: underline; }

.legal-prose strong { color: var(--ink); font-weight: 700; }
.legal-prose small { color: var(--muted); font-size: 0.82rem; }

/* Final editorial overrides live after every page-specific component rule. */
.therapy-service-card,
.program-card,
.org-audience-card,
.case-study-card {
    border-radius: 12px;
    box-shadow: none;
}

.therapy-service-card {
    border: 1px solid var(--border-light);
    border-top: 0;
    border-inline-start: 3px solid var(--ind-500);
}

.therapy-service-card:hover,
.program-card:hover,
.org-audience-card:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(13, 50, 35, 0.07);
}

.program-card { border: 1px solid var(--org-100); }

/* Homepage closing bands: flat, calm, and integrated with the page. */
.homepage-proof {
    padding-block: clamp(1.15rem, 2.4vw, 1.65rem);
    background: #f5f9f7;
    border-block-color: rgba(25, 83, 61, 0.1);
}

.homepage-proof-list {
    box-shadow: none;
}

.homepage-proof-list li {
    padding-block: 0.2rem;
    padding-inline: clamp(1rem, 2.4vw, 1.75rem);
}

.homepage-proof-list li + li {
    border-inline-start-color: rgba(25, 83, 61, 0.1);
}

.homepage-proof-list strong {
    color: var(--ref-ink, var(--ink));
    letter-spacing: -0.01em;
}

.homepage-proof-list span {
    margin-top: 0.28rem;
    color: var(--ref-muted, var(--text-secondary));
}

.contact-cta {
    padding-block: clamp(3.75rem, 7vw, 6rem);
    background: #f5f9f7;
    border-top: 1px solid rgba(25, 83, 61, 0.09);
}

.contact-cta-inner {
    max-width: 960px;
    gap: clamp(1.6rem, 3vw, 2.35rem);
    box-shadow: none;
}

.contact-cta-copy {
    max-width: 620px;
}

.contact-cta-copy h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.65rem);
    letter-spacing: -0.035em;
}

.contact-cta-copy p {
    max-width: 56ch;
    margin-inline: auto;
    line-height: 1.75;
}

.contact-cta-actions {
    gap: 0.8rem;
}

.contact-cta-audience-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    width: min(100%, 720px);
    margin-top: -1.15rem;
}

.contact-cta-actions .contact-cta-btn,
.contact-cta-btn-audience {
    justify-content: center;
    flex: 0 1 220px;
    width: 220px;
}

.contact-cta-btn-personal {
    color: var(--ind-700);
    border-color: var(--ind-200);
    background: rgba(255, 255, 255, 0.58);
}

.contact-cta-btn-personal:hover {
    color: var(--ind-800);
    border-color: var(--ind-300);
    background: var(--ind-soft);
}

.contact-cta-btn-organization {
    color: var(--org-700);
    border-color: var(--org-200);
    background: rgba(255, 255, 255, 0.58);
}

.contact-cta-btn-organization:hover {
    color: var(--org-800);
    border-color: var(--org-300);
    background: var(--org-soft);
}

.contact-cta-btn {
    min-height: 50px;
    padding-inline: 1.45rem;
    background: transparent;
    box-shadow: none;
}

.contact-cta-btn:hover {
    transform: none;
    box-shadow: none;
}

.contact-cta-btn-phone,
.contact-cta-btn-phone:hover {
    background: var(--ind-600);
}

.contact-cta-btn-whatsapp,
.contact-cta-btn-chat {
    background: rgba(255, 255, 255, 0.58);
}

@media (max-width: 760px) {
    .homepage-proof {
        padding-block: 1rem;
    }

    .homepage-proof-list li:nth-child(n + 3) {
        border-top-color: rgba(25, 83, 61, 0.1);
    }
}

@media (max-width: 600px) {
    .contact-cta {
        padding-block: 3.5rem 4rem;
    }

    .contact-cta-inner {
        gap: 1.5rem;
    }

    .contact-cta-btn {
        min-height: 52px;
    }

    .contact-cta-audience-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin-top: -0.7rem;
    }

    .contact-cta-actions .contact-cta-btn,
    .contact-cta-btn-audience {
        flex-basis: auto;
        width: 100%;
    }
}

/* ============================================
   LOGO-LED HOMEPAGE REFINEMENT (2026-07-17)
   Carries the sky-blue / teal / lime identity into the hero while
   softening the rigid central CTA composition.
   ============================================ */
:root {
    --logo-blue: #25a6ca;
    --logo-blue-dark: #176d89;
    --logo-lime: #c8d92b;
    --logo-teal: #0f8f88;
    --org-50: #f2fbfe;
    --org-100: #def4fa;
    --org-200: #b9e8f3;
    --org-300: #84d5e8;
    --org-400: #4dbedb;
    --org-500: #25a6ca;
    --org-600: #1887aa;
    --org-700: #176d89;
    --org-800: #19596f;
    --org-900: #194a5d;
    --org-soft: #e9f8fc;
    --org-soft-2: #f6fcfe;
    --gold-300: #e9ef96;
    --gold-400: #dce75e;
    --gold-500: #c8d92b;
    --gold-600: #9fb51f;
}

.routing-hero {
    min-height: 640px;
    padding: clamp(2.6rem, 5vw, 4.25rem) 0 clamp(2.25rem, 3.5vw, 3.25rem);
    background:
        radial-gradient(ellipse 70% 50% at 82% 8%, rgba(37, 166, 202, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 58% 42% at 12% 88%, rgba(200, 217, 43, 0.13) 0%, transparent 62%),
        linear-gradient(180deg, #f7fcfb 0%, #fff 100%);
}

.orb-individual {
    background: radial-gradient(circle, rgba(37, 166, 202, 0.36) 0%, transparent 70%);
}

.orb-corporate {
    background: radial-gradient(circle, rgba(200, 217, 43, 0.34) 0%, transparent 70%);
}

.hero-wheel--gallery .hero-wheel-kicker {
    border-color: rgba(37, 166, 202, 0.22);
    color: var(--logo-blue-dark);
}

.hero-wheel--gallery .hero-wheel-item {
    border-color: rgba(37, 166, 202, 0.8);
    box-shadow: 0 10px 28px rgba(24, 135, 170, 0.18);
}

.routing-hero-eyebrow,
.routing-hero-contact-mini a {
    color: var(--logo-teal);
}

.path-cta-grid {
    gap: 0.85rem;
}

.path-cta {
    min-height: 104px;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(15, 143, 136, 0.13);
    border-radius: 32px 14px 32px 14px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 10px 28px rgba(22, 63, 47, 0.055);
}

.path-cta-individual {
    border-color: rgba(15, 143, 136, 0.23);
    border-radius: 34px 16px 34px 16px;
    background: rgba(240, 249, 246, 0.82);
}

.path-cta-org {
    border: 1px solid rgba(37, 166, 202, 0.26);
    border-radius: 16px 34px 16px 34px;
    background: rgba(242, 251, 254, 0.84);
}

.path-cta-individual:hover {
    border-color: rgba(63, 149, 104, 0.34);
    background: rgba(232, 245, 238, 0.8);
    box-shadow: 0 16px 34px rgba(22, 63, 47, 0.09);
    transform: translateY(-2px);
}

.path-cta-org:hover {
    border-color: rgba(37, 166, 202, 0.36);
    background: rgba(233, 248, 252, 0.84);
    box-shadow: 0 16px 34px rgba(24, 135, 170, 0.09);
    transform: translateY(-2px);
}

.path-cta-individual .path-cta-icon {
    color: var(--logo-teal);
}

.path-cta-org .path-cta-icon {
    color: var(--logo-blue-dark);
}

.homepage-proof {
    background: #f5faf9;
    border-block-color: rgba(37, 166, 202, 0.1);
}

.homepage-proof-list li + li {
    border-inline-start-color: rgba(37, 166, 202, 0.12);
}

@media (max-width: 600px) {
    .path-cta,
    .path-cta-individual,
    .path-cta-org {
        min-height: 92px;
        border-radius: 26px 12px 26px 12px;
    }
}

/* Screenshot-driven subpage fixes; kept last to win the shared cascade. */
.process-step::before { display: none; }
.program-card::after { display: none; }

.program-card.has-progressive-details {
    display: block;
    min-height: 0;
    padding: clamp(1.35rem, 3vw, 2rem);
    overflow: visible;
}

.program-card.has-progressive-details::before { display: none; }

.program-card.has-progressive-details > .program-card-header,
.program-card.has-progressive-details > .progressive-details-toggle,
.program-card.has-progressive-details > .program-card-body,
.program-card.has-progressive-details > .program-card-footer { width: 100%; }

.program-card.has-progressive-details > .program-card-header {
    padding: 0;
    background: transparent;
    color: var(--ink);
}

.program-card.has-progressive-details .program-card-tag {
    margin-bottom: 0.55rem;
    padding: 0;
    background: transparent;
    color: var(--org-600);
    font-size: 0.78rem;
    letter-spacing: 0;
    text-transform: none;
}

.program-card.has-progressive-details .program-card-header h3 {
    max-width: 28ch;
    color: var(--ink);
    font-size: clamp(1.3rem, 2.3vw, 1.75rem);
    line-height: 1.3;
}

.program-card.has-progressive-details > .program-card-footer {
    padding: 0.35rem 0 0;
    justify-content: flex-start;
}

.progressive-details-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    margin-top: 1.15rem;
    padding: 0.9rem 0;
    border: 0;
    border-top: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
    border-radius: 0;
    background: transparent;
    color: var(--primary-dark, var(--primary));
    font: 700 0.95rem/1.3 var(--font-body);
    cursor: pointer;
}

.progressive-details-toggle:hover {
    border-color: var(--primary);
    background: transparent;
    color: var(--primary);
    transform: none;
}

.progressive-details-icon {
    margin-inline-start: 0.55rem;
    font-size: 1.35rem;
    line-height: 1;
}

.page-header .breadcrumb {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: var(--text-secondary);
}

.page-header .breadcrumb span {
    color: var(--text-secondary);
    opacity: 1;
}

.program-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid currentColor;
    color: var(--primary-dark, var(--primary));
    font-weight: 700;
    text-decoration: none;
}

.program-card:not(.has-progressive-details) > .program-card-link {
    grid-column: 2;
    justify-self: start;
    width: max-content;
    max-width: 100%;
}

/* Compact, touch-friendly disclosures and photo dialogs. */
.therapy-services-grid {
    counter-reset: none;
    align-items: start;
}

.therapy-services-grid--masonry {
    position: relative;
    display: block;
}

.therapy-service-card {
    counter-increment: none;
    min-height: 0;
    border: 1px solid color-mix(in srgb, var(--ind-500) 16%, var(--border-light));
    border-inline-start-width: 1px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(120px, 13vw, 160px);
    align-items: start;
    column-gap: clamp(1rem, 2vw, 1.5rem);
}

.therapy-service-card > .therapy-service-image {
    grid-column: 2;
    grid-row: 1 / span 4;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(24, 72, 55, 0.1);
}

.therapy-service-card > .therapy-service-tag,
.therapy-service-card > h3,
.therapy-service-card > h4,
.therapy-service-card > p {
    grid-column: 1;
}

.therapy-service-card > .progressive-details-toggle,
.therapy-service-card > .progressive-details {
    grid-column: 1 / -1;
    width: 100%;
}

.therapy-service-card::before {
    display: none;
    content: none;
}

.progressive-details-toggle {
    justify-content: flex-start;
    gap: 0.4rem;
    min-height: 44px;
    margin-top: 1.25rem;
    padding: 0.8rem 0 0.1rem;
    border: 0;
    border-top: 1px solid color-mix(in srgb, var(--ind-500) 15%, transparent);
    border-radius: 0;
    background: transparent;
    color: var(--ind-700);
    font: 700 0.92rem/1.3 var(--font-body);
    transition: color 180ms ease, border-color 180ms ease;
}

.progressive-details-toggle:hover {
    border-color: color-mix(in srgb, var(--ind-500) 32%, transparent);
    background: transparent;
    color: var(--ind-700);
}

.progressive-details-toggle[aria-expanded="true"] {
    border-color: color-mix(in srgb, var(--ind-500) 24%, transparent);
    background: transparent;
}

.progressive-details-icon {
    display: grid;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin: 0;
    place-items: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform 180ms ease;
}

.progressive-details-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.progressive-details-toggle[aria-expanded="true"] .progressive-details-icon {
    transform: rotate(180deg);
}

@media (max-width: 520px) {
    .therapy-service-card {
        grid-template-columns: minmax(0, 1fr) 104px;
        column-gap: 0.9rem;
    }

    .therapy-service-card > .therapy-service-image {
        border-radius: 13px;
    }

    .image-modal.wheel-detail-modal {
        align-items: flex-start;
        padding: max(0.625rem, env(safe-area-inset-top)) max(0.625rem, env(safe-area-inset-right)) max(0.625rem, env(safe-area-inset-bottom)) max(0.625rem, env(safe-area-inset-left));
        overflow-y: auto;
    }

    .wheel-detail-modal .image-modal-close {
        position: fixed;
        top: max(1rem, env(safe-area-inset-top));
        left: max(1rem, env(safe-area-inset-left));
        width: 40px;
        height: 40px;
        background: rgba(14, 38, 29, 0.66);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .wheel-detail-modal .wheel-modal-content {
        grid-template-rows: clamp(150px, 34dvh, 230px) minmax(0, 1fr);
        width: 100%;
        height: calc(100dvh - max(1.25rem, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
        max-height: none;
        border-radius: 22px;
        overflow: hidden;
    }

    .wheel-detail-modal .wheel-modal-image-wrap {
        min-height: 0;
        max-height: none;
    }

    .wheel-detail-modal .wheel-modal-text {
        min-height: 0;
        padding: 1rem;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .wheel-detail-modal .image-modal-tag {
        margin-bottom: 0.55rem;
    }

    .wheel-detail-modal .image-modal-text h3 {
        margin-bottom: 0.45rem;
        font-size: 1.25rem;
    }

    .wheel-detail-modal .image-modal-text p {
        margin-bottom: 0.85rem;
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .wheel-detail-modal .wheel-modal-examples {
        margin: 0 0 0.9rem;
    }

    .wheel-detail-modal .wheel-modal-examples h4 {
        margin-bottom: 0.5rem;
        font-size: 0.88rem;
    }

    .wheel-detail-modal .wheel-modal-examples ul {
        gap: 0.4rem;
    }

    .wheel-detail-modal .wheel-modal-examples li {
        padding: 0.5rem 1.75rem 0.5rem 0.7rem;
        font-size: 0.82rem;
    }

    .wheel-detail-modal .wheel-modal-examples li::before {
        top: 0.69rem;
        right: 0.65rem;
    }

    .wheel-detail-modal .wheel-modal-actions {
        gap: 0.5rem;
    }

    .wheel-detail-modal .wheel-modal-actions .image-modal-cta {
        min-height: 42px;
        padding: 0.65rem 1rem;
    }
}

/* Homepage scale refinement: make the two primary choices and the proof strip
   easier to scan without changing their established visual language. */
@media (min-width: 761px) {
    .path-cta-grid {
        gap: clamp(1rem, 1.35vw, 1.35rem);
        margin-bottom: 1.75rem;
    }

    .path-cta {
        min-height: 126px;
        gap: 1rem;
        padding: 1.3rem 1.25rem;
    }

    .path-cta-icon {
        width: 58px;
        height: 58px;
    }

    .path-cta-icon svg {
        width: 29px;
        height: 29px;
    }

    .path-cta-body {
        gap: 0.28rem;
    }

    .path-cta-body strong {
        font-size: clamp(1.12rem, 1.25vw, 1.25rem);
        line-height: 1.35;
    }

    .path-cta-body small {
        font-size: clamp(0.9rem, 0.95vw, 0.98rem);
        line-height: 1.45;
    }

    .path-cta-arrow svg {
        width: 23px;
        height: 23px;
    }

    .homepage-proof {
        padding-block: clamp(1.8rem, 3vw, 2.3rem);
    }

    .homepage-proof-list li {
        padding-block: 0.45rem;
        padding-inline: clamp(1.15rem, 2.6vw, 2rem);
    }

    .homepage-proof-list strong {
        font-size: clamp(1.02rem, 1.18vw, 1.14rem);
        line-height: 1.35;
    }

    .homepage-proof-list span {
        margin-top: 0.38rem;
        font-size: clamp(0.88rem, 1vw, 0.98rem);
        line-height: 1.45;
    }
}

@media (max-width: 760px) {
    .path-cta {
        min-height: 108px;
        padding: 1.05rem;
    }

    .path-cta-body strong {
        font-size: 1.08rem;
    }

    .path-cta-body small {
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .homepage-proof-list strong {
        font-size: 0.98rem;
    }

    .homepage-proof-list span {
        font-size: 0.84rem;
        line-height: 1.4;
    }
}
