:root {
    --color-coral: #eb8d80;
    --color-cream: #f8f5f2;
    --color-pearl: #f1f1f1;
    --color-charcoal: #3b3b3b;
    --color-sand: #d4bfa5;
    --color-white: #fffaf7;
    --color-muted: #776c68;
    --color-line: rgb(59 59 59 / 10%);
    --gradient-pearl: linear-gradient(135deg, #f7b3a7 0%, #f5d8ce 42%, #fffaf7 100%);
    --shadow-soft: 0 28px 80px rgb(59 59 59 / 10%);
    --shadow-card: 0 18px 46px rgb(59 59 59 / 8%);
    --radius-xl: 44px;
    --radius-lg: 30px;
    --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--color-charcoal);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    background: var(--color-cream);
}
body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        radial-gradient(circle at 12% 5%, rgb(235 141 128 / 24%), transparent 28rem),
        radial-gradient(circle at 88% 12%, rgb(212 191 165 / 32%), transparent 30rem),
        linear-gradient(180deg, var(--color-white), var(--color-cream) 48%, #ffffff 100%);
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
main { overflow: hidden; }

.site-header,
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem clamp(1rem, 5vw, 4.5rem);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgb(255 255 255 / 70%);
    background: rgb(255 250 247 / 82%);
    backdrop-filter: blur(22px);
}
.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--color-charcoal);
    text-decoration: none;
}
.site-header__logo {
    display: block;
    width: clamp(92px, 10vw, 126px);
    height: auto;
    object-fit: contain;
    height:55px;
}
nav, .site-footer { flex-wrap: wrap; }
nav { display: flex; gap: clamp(0.8rem, 2vw, 1.5rem); color: var(--color-muted); font-size: 0.94rem; }
nav a, .site-footer a { text-decoration: none; transition: color 180ms ease; }
nav a:hover, .site-footer a:hover { color: var(--color-coral); }

.landing-hero { padding: clamp(2rem, 4.5vw, 4rem) clamp(1rem, 5vw, 4.5rem) clamp(3.2rem, 6vw, 5rem); }
.landing-hero__inner,
.section,
.site-footer {
    width: min(1180px, 100%);
    margin-right: auto;
    margin-left: auto;
}
.landing-hero__inner {
    display: grid;
    min-height: min(680px, calc(100svh - 88px));
    align-items: center;
    gap: clamp(2rem, 4vw, 4.2rem);
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}
.hero-logo {
    width: clamp(76px, 8.8vw, 108px);
    height: auto;
    margin-bottom: 0.9rem;
    border-radius: 31%;
    box-shadow: 0 24px 58px rgb(235 141 128 / 18%);
}
.eyebrow {
    margin: 0 0 0.65rem;
    color: var(--color-coral);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -0.045em; }
h1 { max-width: 720px; margin-bottom: 1rem; font-size: clamp(1.95rem, 4.3vw, 3.95rem); line-height: 1.04; }
h2 { max-width: 760px; margin-bottom: 1rem; font-size: clamp(2rem, 4.2vw, 3.7rem); line-height: 1.05; }
h3 { margin-bottom: 0.55rem; font-size: 1.14rem; line-height: 1.25; }
.landing-hero__lead,
.section__intro p { max-width: 690px; color: var(--color-muted); font-size: clamp(1.02rem, 1.5vw, 1.18rem); }
.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.35rem; }
.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgb(235 141 128 / 28%); outline-offset: 3px; }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--color-coral), #d97568); box-shadow: 0 18px 34px rgb(235 141 128 / 28%); }
.button--secondary { color: var(--color-charcoal); border-color: rgb(59 59 59 / 12%); background: rgb(255 250 247 / 78%); }

.hero-composition {
    position: relative;
    min-height: clamp(430px, 48vw, 520px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background-image: url('/assets/illu.jpg');
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow-soft);
}
.hero-composition::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(135deg, rgb(255 250 247 / 30%), rgb(255 231 223 / 22%));
}
.hero-composition::before {
    position: absolute;
    inset: 8% 8% 8% 4%;
    z-index: 2;
    content: "";
    border: 1.5px solid rgb(255 255 255 / 42%);
    border-radius: 50%;
    background: rgb(255 231 223 / 18%);
}
.hero-circle { position: absolute; z-index: 3; border: 1.5px solid rgb(255 255 255 / 44%); border-radius: 50%; opacity: 0.62; }
.hero-circle--large { inset: 17% 18% 18% 15%; }
.hero-circle--small { right: 2%; bottom: 12%; width: 10rem; height: 10rem; background: rgb(255 250 247 / 18%); }
.hero-pearl { position: absolute; z-index: 3; top: 13%; right: 15%; width: 8rem; height: 8rem; border-radius: 50%; background: linear-gradient(135deg, rgb(255 250 247 / 50%), rgb(212 191 165 / 24%)); opacity: 0.72; }
.hero-note { position: absolute; z-index: 4; border: 1px solid rgb(255 255 255 / 82%); border-radius: var(--radius-lg); background: rgb(255 250 247 / 28%); box-shadow: var(--shadow-card); backdrop-filter: blur(4px); }
.hero-note--main { right: 0; bottom: 11%; width: min(78%, 350px); padding: 1.6rem; }
.hero-note--floating { top: 17%; left: 0; display: grid; gap: 0.15rem; padding: 1.05rem 1.2rem; }
.hero-note span { display: grid; width: 42px; height: 42px; margin-bottom: 1rem; place-items: center; border-radius: 50%; color: #fff; background: var(--color-coral); }
.hero-note p, .hero-note small { color: var(--color-muted); }
.hero-note p { margin-bottom: 0; }

.section { padding: clamp(4.8rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem); }
.section--offers { width: 100%; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgb(235 141 128 / 10%), rgb(212 191 165 / 15%)); }
.section__intro--centered { display: grid; justify-items: center; text-align: center; }
.offer-grid, .steps { display: grid; gap: 1rem; margin-top: 2.5rem; }
.offer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps { position: relative; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 2.4vw, 1.35rem); }
.offer-card,
.step-card,
.faq details {
    border: 1px solid rgb(255 255 255 / 78%);
    border-radius: var(--radius-md);
    background: rgb(255 250 247 / 78%);
    box-shadow: var(--shadow-card);
}
.offer-card, .step-card { padding: 1.35rem; transition: transform 180ms ease, box-shadow 180ms ease; }
.step-card { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: clamp(1rem, 2vw, 1.25rem); min-height: 100%; padding: clamp(1.55rem, 3vw, 2.15rem); }
.offer-card:hover, .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.step-card__number {
    display: inline-grid;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--color-coral);
    box-shadow: 0 14px 28px rgb(235 141 128 / 22%);
    font-size: 0.9rem;
    font-weight: 950;
    letter-spacing: 0.04em;
}
.step-card__content { display: grid; gap: 0.55rem; }
.step-card__content h3 { margin-bottom: 0; font-size: clamp(1.12rem, 1.7vw, 1.32rem); line-height: 1.22; }
.step-card__content p { margin: 0; color: var(--color-muted); line-height: 1.62; }
.offer-card p, .faq p, .offer-meta dd { color: var(--color-muted); }
.split-layout { display: grid; align-items: center; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }

.section--fit {
    position: relative;
    padding-top: clamp(3.8rem, 7vw, 6rem);
}
.fit-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 76%);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 6vw, 4.8rem);
    background:
        radial-gradient(circle at 86% 12%, rgb(255 255 255 / 64%), transparent 13rem),
        linear-gradient(135deg, #ffe6dd 0%, #f8d1c5 42%, #fff4ee 100%);
    box-shadow: var(--shadow-soft);
}
.fit-panel h2 {
    max-width: 860px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.055em;
}
.fit-grid {
    display: grid;
    align-items: stretch;
    gap: clamp(1rem, 2.2vw, 1.35rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fit-card {
    display: grid;
    min-height: 100%;
    align-content: start;
    gap: clamp(1rem, 2vw, 1.2rem);
    border: 1px solid rgb(255 255 255 / 78%);
    border-radius: 30px;
    padding: clamp(1.45rem, 2.6vw, 2.15rem);
    background: linear-gradient(180deg, rgb(255 250 247 / 92%), rgb(255 247 243 / 82%));
    box-shadow: 0 20px 54px rgb(59 59 59 / 7%), 0 10px 30px rgb(235 141 128 / 9%);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.fit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}
.fit-card:last-child:nth-child(odd) {
    width: min(620px, 100%);
    justify-self: center;
    grid-column: 1 / -1;
}
.fit-card__icon {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgb(235 141 128 / 18%);
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(255 231 223 / 94%), rgb(255 250 247 / 78%));
    box-shadow: 0 14px 30px rgb(235 141 128 / 16%);
    font-size: 1.55rem;
    line-height: 1;
}
.section-icon {
    display: block;
    width: 64px;
    height: auto;
    margin: 0 auto 16px;
    object-fit: contain;
}
.fit-card__content { display: grid; gap: 0.78rem; }
.fit-card h3 {
    margin: 0;
    color: #704943;
    font-size: clamp(1.08rem, 1.55vw, 1.28rem);
    line-height: 1.22;
}
.fit-card__subtitle {
    margin: 0;
    color: var(--color-coral);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.fit-card__list {
    display: grid;
    gap: 0.72rem;
    margin: 0;
    padding: 0;
    color: var(--color-muted);
    list-style: none;
}
.fit-card__list li {
    position: relative;
    padding-left: 1.55rem;
    line-height: 1.55;
}
.fit-card__list li::before {
    position: absolute;
    top: 0.63em;
    left: 0.18rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--color-coral);
    box-shadow: 0 0 0 4px rgb(235 141 128 / 12%);
    content: "";
}
.fit-note {
    max-width: 850px;
    margin: clamp(1.8rem, 4vw, 2.8rem) auto 0;
    border: 1px solid rgb(235 141 128 / 24%);
    border-radius: 28px;
    padding: clamp(1.45rem, 3.2vw, 2.15rem) clamp(1.2rem, 4vw, 2.4rem);
    color: #704943;
    background: rgb(255 231 223 / 52%);
    box-shadow: 0 16px 38px rgb(235 141 128 / 10%);
    text-align: center;
}
.fit-note p {
    margin: 0;
    color: inherit;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.6;
}
.fit-note p + p { margin-top: 0.35rem; }
.fit-note__title {
    margin-bottom: 0.7rem !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3vw, 2.2rem) !important;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.16 !important;
}
.nowrap { white-space: nowrap; }
.fit-note__action { display: flex; justify-content: center; margin-top: clamp(1.1rem, 2.5vw, 1.6rem); }
.fit-note__action .button { min-height: 50px; }
.fit-star { color: var(--color-coral); }
.fit-star {
    position: absolute;
    opacity: 0.42;
    font-size: clamp(2rem, 4vw, 3.4rem);
}
.fit-star--one { top: 2rem; right: 3rem; }
.fit-star--two { right: 18%; bottom: 2.3rem; }
.section--practitioner {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgb(255 250 247 / 92%), rgb(255 231 223 / 42%), rgb(212 191 165 / 18%));
}
.practitioner-layout {
    display: grid;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.practitioner-media {
    min-height: clamp(360px, 42vw, 530px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}
.practitioner-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.practitioner-content { max-width: 620px; }
.practitioner-content h2 { margin-bottom: clamp(1.35rem, 2.5vw, 1.8rem); }
.practitioner-content > p:not(.eyebrow) { color: var(--color-muted); font-size: clamp(1rem, 1.45vw, 1.12rem); line-height: 1.7; }
.practitioner-content__highlight {
    margin: clamp(1.5rem, 3vw, 2rem) 0 0;
    border: 1px solid rgb(235 141 128 / 28%);
    border-left: 4px solid rgb(235 141 128 / 64%);
    border-radius: 24px;
    padding: 1.15rem 1.3rem;
    color: #704943 !important;
    background: rgb(255 250 247 / 68%);
    box-shadow: 0 16px 38px rgb(235 141 128 / 10%);
    font-weight: 800;
}
.section--expectations { border-radius: var(--radius-xl); background: linear-gradient(135deg, rgb(255 250 247 / 88%), rgb(212 191 165 / 16%)); }
.expectations-grid { display: grid; gap: clamp(1rem, 2.2vw, 1.35rem); margin-top: clamp(2rem, 4vw, 3rem); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.expectation-card {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.35rem);
    min-height: 100%;
    border: 1px solid rgb(212 191 165 / 32%);
    border-radius: 30px;
    padding: clamp(1.45rem, 3vw, 2.1rem);
    background: rgb(255 250 247 / 88%);
    box-shadow: var(--shadow-card);
}
.expectation-card__number {
    display: inline-grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--color-coral);
    background: rgb(255 231 223 / 66%);
    box-shadow: 0 12px 28px rgb(235 141 128 / 14%);
    font-size: 0.9rem;
    font-weight: 950;
    letter-spacing: 0.04em;
}
.expectation-card__content h3 { margin-bottom: 0.85rem; color: #704943; font-size: clamp(1.12rem, 1.7vw, 1.32rem); }
.expectation-card__content p { margin-bottom: 0.75rem; color: var(--color-muted); line-height: 1.65; }
.expectation-card__content p:last-child { margin-bottom: 0; }
.expectation-card--reassurance { border-color: rgb(235 141 128 / 34%); background: linear-gradient(135deg, rgb(255 250 247 / 94%), rgb(255 231 223 / 54%)); }
.expectation-card--reassurance .expectation-card__number { color: #fff; background: var(--color-coral); }
.section--trust, .section--contraindications {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgb(255 250 247 / 82%), rgb(255 231 223 / 52%));
}
.trust-grid, .contraindication-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}
.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contraindication-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-card, .contraindication-card {
    border: 1px solid rgb(255 255 255 / 78%);
    border-radius: var(--radius-md);
    padding: clamp(1.55rem, 3vw, 2.15rem);
    background: rgb(255 250 247 / 86%);
    box-shadow: var(--shadow-card);
}
.trust-card { display: grid; gap: 1rem; align-content: start; }
.trust-icon {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgb(235 141 128 / 18%);
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(255 231 223 / 94%), rgb(255 250 247 / 78%));
    box-shadow: 0 14px 30px rgb(235 141 128 / 16%);
    font-size: 1.55rem;
    line-height: 1;
}
.trust-card h3, .contraindication-card h3 {
    color: var(--color-coral);
    font-size: 0.9rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.trust-card h3 { margin: 0.2rem 0 0; color: #704943; font-size: clamp(1rem, 1.35vw, 1.12rem); letter-spacing: 0.02em; text-transform: none; }
.trust-card p, .contraindication-card p, .trust-note, .trust-disclaimer { color: var(--color-muted); }
.trust-card p { margin: 0; line-height: 1.62; }
.reassurance-ribbon {
    margin: 2rem auto 0;
    border: 1px solid rgb(235 141 128 / 18%);
    border-radius: 999px;
    padding: 1rem 1.35rem;
    color: #704943;
    background: rgb(255 231 223 / 72%);
    text-align: center;
    font-weight: 800;
}
.trust-note {
    max-width: 760px;
    margin: 1rem auto 0;
    text-align: center;
    font-size: 0.96rem;
}
.section--trust .trust-note {
    max-width: 820px;
    margin: clamp(1.5rem, 3vw, 2.2rem) auto 0;
    border: 1px solid rgb(235 141 128 / 24%);
    border-radius: 28px;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.15rem, 3vw, 1.7rem);
    color: #704943;
    background: rgb(255 231 223 / 52%);
    box-shadow: 0 16px 38px rgb(235 141 128 / 10%);
    text-align: center;
    font-size: clamp(1.02rem, 1.5vw, 1.16rem);
    font-weight: 850;
    line-height: 1.55;
}
.trust-disclaimer {
    max-width: 760px;
    margin: 0.85rem auto 0;
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.55;
}
.section--contraindications { background: linear-gradient(135deg, rgb(255 250 247 / 88%), rgb(255 231 223 / 34%), rgb(212 191 165 / 14%)); }
.section--contraindications .section__intro { max-width: 780px; }
.section--contraindications .section__intro p:not(.eyebrow) { font-size: clamp(1.02rem, 1.7vw, 1.16rem); line-height: 1.68; }
.contraindication-grid { gap: clamp(1rem, 2vw, 1.35rem); align-items: stretch; }
.contraindication-card {
    display: grid;
    align-content: start;
    gap: 1rem;
    border: 1px solid rgb(212 191 165 / 30%);
    border-radius: 30px;
    padding: clamp(1.45rem, 2.5vw, 2rem);
    background: linear-gradient(180deg, rgb(255 250 247 / 96%), rgb(255 247 243 / 88%));
    box-shadow: 0 20px 54px rgb(59 59 59 / 7%), 0 10px 30px rgb(235 141 128 / 9%);
}
.contraindication-icon {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgb(235 141 128 / 18%);
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(255 231 223 / 94%), rgb(255 250 247 / 78%));
    box-shadow: 0 14px 30px rgb(235 141 128 / 16%);
    font-size: 1.55rem;
    line-height: 1;
}
.contraindication-card h3 { margin: 0.2rem 0 0; color: #704943; font-size: clamp(1rem, 1.35vw, 1.12rem); letter-spacing: 0.02em; text-transform: none; }
.contraindication-card p { margin: 0; line-height: 1.62; }
.contraindications-note {
    max-width: 820px;
    margin: 20px auto 0;
    border: 1px solid rgb(235 141 128 / 24%);
    border-left: 4px solid rgb(235 141 128 / 56%);
    border-radius: 28px;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.15rem, 3vw, 1.7rem);
    color: #704943;
    background: rgb(255 231 223 / 52%);
    box-shadow: 0 16px 38px rgb(235 141 128 / 10%);
    text-align: center;
    font-weight: 700;
    line-height: 1.55;
}

.offer-card { position: relative; display: flex; flex-direction: column; gap: 1.05rem; padding: clamp(1.25rem, 2vw, 1.65rem); }
.offer-card--featured { border-color: rgb(235 141 128 / 38%); background: linear-gradient(180deg, #fffaf7, #ffe7df); }
.offer-card__header { display: grid; gap: 0.45rem; padding-bottom: 0.95rem; border-bottom: 1px solid rgb(212 191 165 / 32%); }
.offer-card__header h3 { margin: 0; letter-spacing: 0.07em; }
.offer-card__meta-line { margin: 0; color: var(--color-coral); font-size: 0.95rem; font-weight: 900; }
.offer-card__intro { margin: 0; color: var(--color-charcoal); font-weight: 760; line-height: 1.45; }
.offer-meta { display: grid; gap: 0.72rem; margin: auto 0 0; }
.offer-meta div { border-top: 1px solid var(--color-line); padding-top: 0.72rem; }
.offer-meta dt { color: var(--color-charcoal); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.offer-meta dd { margin: 0.12rem 0 0; }
.offer-actions { display: grid; gap: 0.65rem; margin-top: auto; }
.offer-card form, .offer-card .button { width: 100%; }
.faq { display: grid; gap: 0.6rem; width: min(820px, 100%); margin: 1.8rem auto 0; }
.faq details { padding: 0.82rem 1.05rem; }
summary { color: var(--color-charcoal); font-weight: 850; cursor: pointer; }
summary::marker { color: var(--color-coral); }
.faq p { margin: 0.45rem 0 0; font-size: 0.96rem; line-height: 1.55; }
.legal { min-height: 60vh; }
.site-footer { border-top: 1px solid var(--color-line); color: var(--color-muted); font-size: 0.92rem; }
.site-footer__brand { display: grid; gap: 0.15rem; }
.site-footer__brand span { color: var(--color-charcoal); font-weight: 900; }
.site-footer__brand small { color: var(--color-muted); }
.site-footer__social { display: inline-flex; align-items: center; gap: 0.55rem; border: 1px solid rgb(235 141 128 / 24%); border-radius: 999px; padding: 0.62rem 0.9rem; color: #704943; background: rgb(255 231 223 / 46%); font-weight: 850; box-shadow: 0 10px 24px rgb(235 141 128 / 10%); }
.site-footer__social:hover { border-color: rgb(235 141 128 / 42%); background: rgb(255 231 223 / 70%); }
.site-footer__social-icon { display: inline-grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--color-coral); background: rgb(255 250 247 / 82%); }
.site-footer__social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.site-footer__social-label { line-height: 1.2; }
.legal-page h1 { margin-bottom: 1rem; font-size: clamp(2.35rem, 5vw, 4.8rem); line-height: 1; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.legal-grid--single { grid-template-columns: minmax(0, 1fr); width: min(880px, 100%); margin-right: auto; margin-left: auto; }
.legal-card { border: 1px solid rgb(255 255 255 / 78%); border-radius: var(--radius-md); padding: clamp(1.35rem, 3vw, 2rem); background: rgb(255 250 247 / 82%); box-shadow: var(--shadow-card); }
.legal-card h2 { margin-bottom: 1rem; color: var(--color-coral); font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: -0.025em; }
.legal-card p, .legal-card dd { color: var(--color-muted); }
.success-card { display: grid; gap: 1rem; width: min(720px, 100%); margin-top: 2rem; border: 1px solid rgb(255 255 255 / 78%); border-radius: var(--radius-md); padding: clamp(1.35rem, 3vw, 2.1rem); background: rgb(255 250 247 / 82%); box-shadow: var(--shadow-card); text-align: left; }
.success-card p { margin: 0; color: var(--color-muted); }
.success-card ul { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; color: var(--color-charcoal); font-weight: 750; }
.success-card li { position: relative; padding-left: 1.75rem; }
.success-card li::before { position: absolute; left: 0; color: var(--color-coral); content: "✓"; font-weight: 950; }
.legal-list { display: grid; gap: 0.8rem; margin: 0; }
.legal-list div { border-top: 1px solid var(--color-line); padding-top: 0.8rem; }
.legal-list div:first-child { border-top: 0; padding-top: 0; }
.legal-list dt { color: var(--color-charcoal); font-size: 0.74rem; font-weight: 950; letter-spacing: 0.11em; text-transform: uppercase; }
.legal-list dd { margin: 0.15rem 0 0; }
.legal-missing { color: rgb(119 108 104 / 72%); font-style: italic; }

@media (min-width: 881px) {
    .steps::before {
        position: absolute;
        inset: 2.2rem 7% 2.2rem;
        content: "";
        border-radius: var(--radius-xl);
        background:
            linear-gradient(90deg, transparent, rgb(235 141 128 / 20%), rgb(212 191 165 / 18%), transparent),
            linear-gradient(180deg, transparent, rgb(235 141 128 / 12%), transparent);
        filter: blur(18px);
        opacity: 0.72;
    }
}
@media (max-width: 1120px) {
    .offer-grid, .steps, .trust-grid, .contraindication-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
    .landing-hero { padding-top: clamp(1.55rem, 4vw, 2.4rem); }
    .site-header { align-items: flex-start; flex-direction: column; }
    .site-header__logo { width: 104px; }
    .landing-hero__inner, .split-layout { min-height: auto; grid-template-columns: 1fr; }
    .practitioner-layout { grid-template-columns: 1fr; }
    .hero-composition { min-height: 390px; }
}
@media (max-width: 620px) {
    .site-header__logo { width: 96px; }
    nav { gap: 0.7rem; font-size: 0.88rem; }
    h1 { font-size: clamp(1.72rem, 9.6vw, 2.4rem); }
    h2 { font-size: clamp(1.82rem, 10vw, 2.85rem); }
    .landing-hero { padding-top: 1.25rem; }
    .hero-logo { width: 72px; margin-bottom: 0.6rem; }
    .landing-hero__lead { margin-bottom: 0; font-size: 1rem; line-height: 1.55; }
    .actions { margin-top: 1rem; }
    .actions, .button { width: 100%; }
    .offer-grid, .steps, .trust-grid, .contraindication-grid, .fit-grid, .legal-grid, .expectations-grid { grid-template-columns: 1fr; }
    .fit-card:last-child:nth-child(odd) { width: 100%; grid-column: auto; }
    .step-card { flex-direction: column; padding: 1.45rem; }
    .step-card__number { width: 48px; height: 48px; }
    .practitioner-media { min-height: 320px; }
    .expectation-card { flex-direction: column; padding: 1.45rem; }
    .expectation-card__number { width: 48px; height: 48px; }
    .fit-panel { padding: 1.5rem; }
    .section-icon { width: 56px; }
    .reassurance-ribbon { border-radius: var(--radius-md); }
    .hero-composition { min-height: 350px; }
    .hero-note--main { right: 0.85rem; bottom: 0.85rem; width: calc(100% - 1.7rem); padding: 1rem; }
    .hero-note--floating { top: 0.85rem; left: 0.85rem; padding: 0.8rem 0.95rem; }
    .site-footer { align-items: flex-start; flex-direction: column; }
}
.offer-grid { grid-template-columns: repeat(3, minmax(280px, 1fr)); align-items: stretch; gap: clamp(1.05rem, 2vw, 1.35rem); }
.offer-card { position: relative; display: flex; flex-direction: column; gap: clamp(1.15rem, 1.6vw, 1.45rem); padding: clamp(1.65rem, 2.4vw, 2.15rem); }
.offer-card--featured { border-color: rgb(235 141 128 / 46%); background: linear-gradient(180deg, rgb(255 250 247 / 96%), rgb(255 231 223 / 58%)); box-shadow: 0 24px 64px rgb(235 141 128 / 15%); }
.offer-card__header { display: grid; gap: 0.55rem; padding-bottom: 1.05rem; border-bottom: 1px solid rgb(212 191 165 / 34%); }
.offer-card__header h3 { margin: 0; letter-spacing: 0.07em; }
.offer-card__meta-line { margin: 0; color: var(--color-coral); font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 950; line-height: 1.08; }
.offer-card__intro { margin: 0; color: var(--color-muted); font-size: 0.96rem; font-weight: 650; line-height: 1.48; }
.offer-card__intro--premier-pas { display: grid; gap: 0.95rem; border: 1px solid rgb(235 141 128 / 18%); border-radius: 22px; padding: clamp(1rem, 2vw, 1.25rem); background: rgb(255 250 247 / 58%); }
.offer-card__intro-title { margin: 0; color: var(--color-charcoal); font-size: clamp(1.04rem, 1.5vw, 1.18rem); font-weight: 850; line-height: 1.36; }
.offer-card__intro-benefits { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; color: var(--color-charcoal); font-weight: 740; line-height: 1.4; }
.offer-card__intro-benefits li { position: relative; padding-left: 1.75rem; }
.offer-card__intro-benefits li::before { position: absolute; top: 0.05rem; left: 0; display: inline-grid; width: 1.1rem; height: 1.1rem; place-items: center; border-radius: 50%; color: #fff; background: var(--color-coral); content: "✓"; font-size: 0.74rem; font-weight: 950; line-height: 1; }

.offer-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 0.65rem; margin-top: auto; padding-top: 0.15rem; }
.offer-card form { width: auto; margin: 0; }
.offer-card .button { width: auto; min-height: 46px; padding: 0.68rem 1.12rem; font-size: 0.92rem; white-space: nowrap; }
.offer-highlights { display: grid; gap: 0.8rem; margin: 0; padding: 0; list-style: none; color: var(--color-charcoal); font-weight: 780; }
.offer-highlights li { position: relative; min-height: 1.3rem; padding-left: 1.65rem; line-height: 1.34; }
.offer-highlights li::before { position: absolute; top: 0.12rem; left: 0; display: inline-grid; width: 1rem; height: 1rem; place-items: center; border-radius: 50%; color: #fff; background: var(--color-coral); content: "✓"; font-size: 0.68rem; font-weight: 950; line-height: 1; }
.offer-conclusion { margin: 0.15rem 55px 0; border-top: 1px solid rgb(212 191 165 / 28%); padding-top: 1rem; color: var(--color-charcoal); font-weight: 760; line-height: 1.48;margon-left:55px; }
.offer-intro-separator { display: grid; gap: 0.75rem; max-width: 720px; margin: clamp(3.5rem, 7vw, 5.2rem) auto 1.5rem; text-align: center; }
.offer-intro-separator p { margin: 0; color: var(--color-charcoal); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -0.045em; line-height: 1.08; }
.offer-intro-separator span { color: var(--color-muted); font-size: clamp(0.98rem, 1.35vw, 1.1rem); line-height: 1.6; }
.offer-intro-wrap { display: grid; width: min(860px, 100%); margin: 0 auto; }
.offer-card--intro { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(1rem, 2vw, 1.6rem); border-color: rgb(212 191 165 / 45%); background: linear-gradient(135deg, rgb(255 250 247 / 92%), rgb(255 231 223 / 34%)); box-shadow: 0 18px 46px rgb(59 59 59 / 7%); }
.offer-card--intro .offer-card__header { padding-bottom: 0; border-bottom: 0; }
.offer-card--intro .offer-card__intro { margin-top: -0.35rem; }
.offer-card--intro .offer-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.6rem 0.9rem; }
.offer-card--intro .offer-conclusion { margin-top: 0; }
.offer-card--intro .offer-actions { grid-column: 1 / -1; justify-content: center; margin-top: 0; padding-top: 0.35rem; }
@media (max-width: 1120px) { .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .offer-grid, .offer-card--intro, .offer-card--intro .offer-highlights { grid-template-columns: 1fr; } .offer-card { padding: 1.45rem; } .offer-card__intro--premier-pas { padding: 1rem; } .offer-actions { justify-content: center; } .offer-card .button { white-space: normal; } }
.offer-location {
    display: grid;
    gap: 0.95rem;
    width: min(720px, 100%);
    margin: 0 auto clamp(1.4rem, 3vw, 2.2rem);
    border: 1px solid rgb(235 141 128 / 22%);
    border-radius: 28px;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    background: linear-gradient(135deg, rgb(255 250 247 / 94%), rgb(255 231 223 / 42%));
    box-shadow: 0 18px 46px rgb(235 141 128 / 10%);
    text-align: center;
}
.offer-location__title { margin: 0; color: var(--color-charcoal); font-weight: 900; }
.offer-location__choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.offer-location__choice {
    display: grid;
    gap: 0.12rem;
    justify-items: center;
    border: 1px solid rgb(212 191 165 / 56%);
    border-radius: 999px;
    padding: 0.82rem 1rem;
    color: var(--color-charcoal);
    background: rgb(255 250 247 / 84%);
    cursor: pointer;
    font-weight: 900;
    line-height: 1.2;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.offer-location__choice:hover { transform: translateY(-1px); border-color: rgb(235 141 128 / 46%); }
.offer-location__choice:focus-visible { outline: 3px solid rgb(235 141 128 / 28%); outline-offset: 3px; }
.offer-location__department { font-size: 1rem; }
.offer-location__city { color: var(--color-muted); font-size: 0.78rem; font-weight: 800; }
.offer-location__choice.is-selected,
.offer-location__choice[aria-pressed="true"] { border-color: rgb(235 141 128 / 74%); color: #fff; background: linear-gradient(135deg, var(--color-coral), #d97568); box-shadow: 0 14px 28px rgb(235 141 128 / 24%); }
.offer-location__choice.is-selected .offer-location__city,
.offer-location__choice[aria-pressed="true"] .offer-location__city { color: rgb(255 255 255 / 82%); }
.offer-location__error { margin: 0; border-radius: 18px; padding: 0.75rem 0.95rem; color: #7a342b; background: rgb(255 231 223 / 76%); font-weight: 800; }
.payment-options {
    display: grid;
    gap: 0.55rem;
    width: 100%;
    border: 1px solid rgb(212 191 165 / 34%);
    border-radius: 22px;
    padding: 0.8rem;
    background: rgb(255 250 247 / 70%);
    animation: paymentOptionsIn 180ms ease-out;
}
.payment-options__title { margin: 0 0 0.15rem; color: var(--color-muted); font-size: 0.88rem; font-weight: 800; }
.payment-options .payment-options__button { min-height: 40px; padding: 0.58rem 0.9rem; font-size: 0.88rem; }
.offer-actions__notice { margin: 0; color: #8a554d; font-size: 0.9rem; font-weight: 800; }
@keyframes paymentOptionsIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 620px) { .offer-location__choices { grid-template-columns: 1fr; } }
