:root {
    --bg: #f6f5f1;
    --surface: #ffffff;
    --surface-soft: #f0eee8;
    --surface-sage: #edf1ea;

    --text: #293129;
    --text-soft: #788078;

    --primary: #8ea07e;
    --primary-dark: #718264;
    --primary-soft: #e7ece2;

    --beige: #d7c9b5;
    --beige-soft: #f1ece4;

    --line: rgba(41, 49, 41, 0.1);

    --shadow-sm:
        0 12px 34px rgba(55, 68, 55, 0.06);

    --shadow-md:
        0 20px 50px rgba(55, 68, 55, 0.08);

    --shadow-lg:
        0 30px 80px rgba(55, 68, 55, 0.11);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;

    --container: min(1180px, 92vw);
    --header-height: 82px;
}


/* =========================
   RESET
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Vazirmatn", sans-serif;
    font-size: 16px;
    line-height: 1.95;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    display: block;
    width: 100%;
    height: auto;
}

::selection {
    background: var(--primary);
    color: #fff;
}


/* =========================
   GENERAL
========================= */

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: 108px 0;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.section-kicker.light {
    color: #e1eadb;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 48px;
}

.section-header h2 {
    max-width: 700px;
    font-size: clamp(2.2rem, 4.5vw, 4.8rem);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.section-header h2 span {
    color: var(--primary-dark);
}

.section-header > p {
    max-width: 520px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.section-action {
    margin-top: 42px;
    text-align: center;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-dark);
    color: #fff;
    box-shadow:
        0 12px 26px rgba(113, 130, 100, 0.18);
}

.btn-primary:hover {
    background: #647458;
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
}

.btn-secondary:hover {
    background: #fff;
    border-color: rgba(113, 130, 100, 0.28);
}

.btn-dark {
    background: var(--text);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--text);
}

.btn-cta-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.btn-small {
    min-height: 44px;
    padding-inline: 18px;
}

.btn-large {
    min-height: 56px;
    padding-inline: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 800;
    transition: gap 0.25s ease;
}

.text-link:hover {
    gap: 13px;
}


/* =========================
   DEMO BADGE
========================= */

.demo-badge {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 1100;
    padding: 8px 13px;
    border: 1px solid rgba(113, 130, 100, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
    font-size: 0.72rem;
    font-weight: 800;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 950;
    border-bottom: 1px solid transparent;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(248, 247, 243, 0.93);
    border-color: var(--line);
    box-shadow:
        0 8px 32px rgba(55, 68, 55, 0.05);
    backdrop-filter: blur(18px);
}

.header-container {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-symbol {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--beige)
        );
    color: #fff;
    font-weight: 800;
    box-shadow:
        0 10px 24px rgba(113, 130, 100, 0.14);
}

.brand-text {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    position: relative;
    padding: 10px 0;
    color: #697269;
    font-size: 0.84rem;
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-dark);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu-button {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
}

.mobile-menu-button span {
    width: 18px;
    height: 1px;
    background: var(--text);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    z-index: 940;
    padding: 28px 0 60px;
    background: rgba(248, 247, 243, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    overflow-y: auto;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
    backdrop-filter: blur(18px);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.mobile-nav nav {
    width: min(92vw, 520px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.mobile-booking-link {
    margin-top: 18px;
    padding: 14px 18px !important;
    border: 0 !important;
    border-radius: 999px;
    background: var(--primary-dark);
    color: #fff;
    text-align: center;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 145px 0 90px;
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(156, 175, 136, 0.13),
            transparent 27%
        ),
        radial-gradient(
            circle at 85% 10%,
            rgba(216, 203, 183, 0.18),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #fbfaf7,
            #f2f1ec
        );
}

.hero-background-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.hero-shape-one {
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: 70px;
    background: rgba(156, 175, 136, 0.08);
}

.hero-shape-two {
    width: 180px;
    height: 180px;
    left: 8%;
    top: 120px;
    background: rgba(215, 201, 181, 0.1);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 76px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(113, 130, 100, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--primary-dark);
    font-size: 0.74rem;
    font-weight: 800;
}

.hero-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.hero h1 {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 750px;
    font-size: clamp(3.3rem, 6.5vw, 6.9rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.hero h1 span {
    color: var(--primary-dark);
}

.hero-content > p {
    max-width: 670px;
    margin-top: 25px;
    color: var(--text-soft);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 42px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 0.82rem;
}

.trust-item span {
    margin-top: 2px;
    color: #8b938b;
    font-size: 0.68rem;
}

.trust-divider {
    width: 1px;
    height: 34px;
    background: var(--line);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;
}

.mind-card {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(41, 49, 41, 0.08);
    border-radius: 36px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(245, 243, 237, 0.92)
        );
    box-shadow: var(--shadow-lg);
}

.mind-card > svg {
    width: 100%;
    height: 100%;
    min-height: 560px;
}

.mind-note {
    position: absolute;
    min-width: 170px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border: 1px solid rgba(41, 49, 41, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.mind-note-one {
    right: 28px;
    top: 55px;
}

.mind-note-two {
    left: 28px;
    bottom: 55px;
}

.mind-note-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--primary);
}

.mind-note strong {
    display: block;
    font-size: 0.74rem;
}

.mind-note small {
    display: block;
    margin-top: 2px;
    color: var(--text-soft);
    font-size: 0.64rem;
}


/* =========================
   INTRO
========================= */

.intro-section {
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.intro-heading h2 {
    max-width: 600px;
    font-size: clamp(2.3rem, 4.4vw, 4.7rem);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.intro-copy p {
    color: var(--text-soft);
}

.intro-copy p + p {
    margin-top: 17px;
}

.intro-copy .text-link {
    margin-top: 26px;
}


/* =========================
   SERVICES
========================= */

.services-section {
    background: #f2f1ec;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.service-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(41, 49, 41, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(
            150deg,
            #ffffff,
            #faf9f5
        );
    box-shadow:
        0 12px 34px rgba(55, 68, 55, 0.04);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(113, 130, 100, 0.22);
    box-shadow: var(--shadow-md);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-number {
    color: #9aa29a;
    font-size: 0.68rem;
    font-weight: 800;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    padding: 13px;
    border-radius: 17px;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.service-card-content {
    margin-top: 54px;
}

.service-label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.service-card p {
    color: var(--text-soft);
    font-size: 0.8rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--primary-dark);
    font-size: 0.74rem;
    font-weight: 800;
    transition: gap 0.25s ease;
}

.service-link:hover {
    gap: 12px;
}


/* =========================
   HELP / APPROACH
========================= */

.help-section {
    background: #fff;
}

.help-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.help-content h2 {
    max-width: 650px;
    font-size: clamp(2.3rem, 4.5vw, 4.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.help-content > p {
    max-width: 650px;
    color: var(--text-soft);
}

.help-points {
    display: grid;
    gap: 0;
    margin-top: 32px;
    border-top: 1px solid var(--line);
}

.help-point {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.help-point > span {
    color: var(--primary-dark);
    font-size: 0.68rem;
    font-weight: 800;
}

.help-point strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.help-point p {
    color: var(--text-soft);
    font-size: 0.78rem;
}

.help-visual {
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(156, 175, 136, 0.12),
            transparent 28%
        ),
        linear-gradient(
            150deg,
            #f8f7f2,
            #eeede7
        );
}

.growth-visual {
    width: 88%;
}


/* =========================
   THERAPIST
========================= */

.therapist-section {
    background: #f2f1ec;
}

.therapist-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.therapist-visual {
    min-height: 570px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            #e8e3d8,
            #dfe6da
        );
    box-shadow: var(--shadow-md);
}

.therapist-abstract {
    width: 78%;
    max-width: 500px;
}

.therapist-content h2 {
    max-width: 660px;
    font-size: clamp(2.3rem, 4.5vw, 4.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.therapist-content > p {
    color: var(--text-soft);
}

.therapist-content blockquote {
    position: relative;
    margin-top: 28px;
    padding: 23px 24px;
    border-right: 3px solid var(--primary);
    border-radius: 0 15px 15px 0;
    background: rgba(255, 255, 255, 0.68);
    color: #5f675f;
    font-size: 0.86rem;
}

.therapist-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.therapist-meta strong {
    display: block;
    font-size: 0.9rem;
}

.therapist-meta span {
    display: block;
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 0.7rem;
}


/* =========================
   PROCESS
========================= */

.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
}

.process-card {
    min-height: 280px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #faf9f6
        );
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-number {
    color: #9ba39b;
    font-size: 0.66rem;
    font-weight: 800;
}

.process-icon {
    width: 62px;
    height: 62px;
    margin: 38px 0 28px;
    padding: 15px;
    border-radius: 18px;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.process-card h3 {
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.process-card p {
    color: var(--text-soft);
    font-size: 0.78rem;
}

.process-line {
    width: 60px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );
}

.process-action {
    margin-top: 36px;
    text-align: center;
}


/* =========================
   TESTIMONIAL
========================= */

.testimonial-section {
    background: #f2f1ec;
}

.testimonial-card {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    padding: 54px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.testimonial-symbol {
    position: absolute;
    top: 10px;
    left: 32px;
    color: var(--primary-soft);
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card blockquote {
    position: relative;
    z-index: 2;
    max-width: 760px;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    line-height: 1.9;
    color: #4f584f;
}

.testimonial-person {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--beige)
        );
    color: #fff;
    font-weight: 800;
}

.testimonial-person strong {
    display: block;
    font-size: 0.8rem;
}

.testimonial-person span {
    display: block;
    margin-top: 2px;
    color: var(--text-soft);
    font-size: 0.67rem;
}


/* =========================
   CTA
========================= */

.final-cta {
    padding: 0 0 108px;
    background: #f2f1ec;
}

.final-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 45px;
    align-items: center;
    overflow: hidden;
    padding: 56px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            #718264,
            #8ea07e
        );
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cta-decoration {
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 250px;
    opacity: 0.7;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    max-width: 720px;
    font-size: clamp(2.3rem, 4.5vw, 4.8rem);
    line-height: 1.2;
}

.final-cta-content p {
    max-width: 640px;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.76);
}

.final-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 74px 0 24px;
    background: #293129;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 46px;
    padding-bottom: 48px;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 18px;
    color: #aeb7ae;
    font-size: 0.78rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h3 {
    margin-bottom: 8px;
    font-size: 0.82rem;
}

.footer-column a {
    color: #aeb7ae;
    font-size: 0.75rem;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #899389;
    font-size: 0.7rem;
}

.demo-note {
    max-width: 470px;
}


/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}


/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--text);
    color: #fff;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero-grid,
    .intro-grid,
    .help-grid,
    .therapist-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-line {
        width: 1px;
        height: 34px;
        margin-inline: auto;
        background:
            linear-gradient(
                180deg,
                transparent,
                var(--primary),
                transparent
            );
    }

    .final-cta-card {
        grid-template-columns: 1fr;
    }

    .final-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 760px) {

    :root {
        --header-height: 72px;
    }

    body {
        font-size: 15px;
    }

    .section {
        padding: 82px 0;
    }

    .header-container {
        gap: 10px;
    }

    .header-actions .btn-small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 75px;
    }

    .hero-grid {
        gap: 46px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4.8rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
    }

    .mind-card {
        min-height: 430px;
    }

    .mind-card > svg {
        min-height: 430px;
    }

    .mind-note {
        min-width: 145px;
        padding: 10px 12px;
    }

    .mind-note-one {
        right: 18px;
        top: 28px;
    }

    .mind-note-two {
        left: 18px;
        bottom: 28px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 280px;
    }

    .service-card-content {
        margin-top: 38px;
    }

    .help-visual {
        min-height: 390px;
    }

    .therapist-visual {
        min-height: 430px;
    }

    .therapist-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-card {
        padding: 38px 24px;
    }

    .final-cta-card {
        padding: 38px 24px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-actions .btn {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .demo-badge {
        bottom: 72px;
    }
}


@media (max-width: 480px) {

    .container {
        width: 92vw;
    }

    .brand-text {
        font-size: 0.86rem;
    }

    .brand-symbol {
        width: 34px;
        height: 34px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .mind-card {
        min-height: 380px;
        border-radius: 24px;
    }

    .mind-card > svg {
        min-height: 380px;
    }

    .mind-note {
        min-width: 130px;
    }

    .mind-note small {
        font-size: 0.58rem;
    }

    .help-point {
        grid-template-columns: 36px 1fr;
    }

    .therapist-visual {
        min-height: 380px;
    }

    .process-card {
        min-height: 240px;
    }

    .testimonial-symbol {
        font-size: 6rem;
    }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}