:root {
  --bg: #f8f5f7;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-soft: #f2eef1;
  --text: #1f1b20;
  --muted: #6d6570;
  --brand: #3f093c;
  --brand-deep: #2a0628;
  --brand-soft: #74446f;
  --cta: #b88952;
  --cta-hover: #a87844;
  --line: rgba(63, 9, 60, 0.12);
  --shadow: 0 16px 34px rgba(35, 6, 33, 0.09);
  --radius: 28px;
  --radius-sm: 20px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.68;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(185, 135, 73, 0.12), transparent 18%),
    linear-gradient(180deg, #fcfbfb 0%, var(--bg) 100%);
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top right, rgba(63, 9, 60, 0.05), transparent 22%),
    linear-gradient(180deg, #faf7f9 0%, #f4eef2 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.narrow {
  max-width: 660px;
}

.section-head h2,
.hero h1,
.cta-copy h2 {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.section-head p,
.hero-text,
.section-closing {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 400;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(63, 9, 60, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(42, 6, 40, 0.96);
  box-shadow: 0 18px 40px rgba(25, 5, 24, 0.3);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 14px 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 34px;
}

.header-nav,
.header-actions,
.header-meta {
  display: none;
  align-items: center;
}

.burger-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  justify-self: end;
  cursor: pointer;
}

.burger-btn span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-header.menu-open .burger-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .burger-btn span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .burger-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-nav {
  justify-content: center;
  gap: 24px;
  justify-self: center;
}

.header-nav a,
.meta-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.header-actions {
  gap: 12px;
  justify-self: end;
}

.header-meta {
  display: inline-flex;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-deep);
  box-shadow: 0 10px 24px rgba(17, 2, 16, 0.2);
  padding: 0 14px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-phone {
  display: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
}

.btn {
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 12px 24px rgba(185, 135, 73, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cta-hover);
}

.btn-secondary {
  background: var(--brand);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--brand);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.btn-large {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 42px 0;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: -4%;
  z-index: -2;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.58) saturate(0.9);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(31, 7, 30, 0.38), rgba(31, 7, 30, 0.78));
}

.hero-grid,
.doctor-grid,
.cta-grid,
.consult-grid,
.footer-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

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

.hero .eyebrow,
.hero .microcopy,
.hero .scroll-hint {
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-size: clamp(2.5rem, 7.2vw, 4.7rem);
  color: #fff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.hero-title {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.24em;
  row-gap: 0.08em;
  text-wrap: initial;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-title .word {
  display: inline-flex;
  white-space: nowrap;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, -54px, 0) rotate(-6deg);
  animation: heroLetterDrop 0.72s cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
  animation-delay: var(--char-delay, 0ms);
}

.hero-title .word-space {
  display: none;
}

.hero-text {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.microcopy,
.scroll-hint,
.inline-note {
  font-size: 0.95rem;
}

.microcopy {
  margin-top: 18px;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.scroll-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 0 rgba(185, 135, 73, 0.58);
  animation: pulseDot 2.2s infinite;
}

.hero-card,
.doctor-photo,
.hero-photo,
.gallery-card,
.map-placeholder,
.review-card,
.soft-card,
.fear-card,
.info-card,
.service-card,
.pricing-card,
.lead-form,
.guarantee-card,
.timeline-step,
.rating-banner {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 28px;
  padding: 18px;
}

.hero-floating-card {
  width: min(100%, 390px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-photo,
.doctor-photo {
  min-height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(63, 9, 60, 0.14), rgba(185, 135, 73, 0.18)),
    #f4ecef;
  display: grid;
  place-items: center;
  color: var(--brand);
  text-align: center;
  padding: 24px;
}

.hero-photo-filled,
.doctor-photo-filled,
.gallery-card-photo,
.map-embed {
  padding: 0;
  overflow: hidden;
}

.hero-photo-filled img,
.doctor-photo-filled img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-points,
.service-card ul,
.qualification-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.hero-points {
  display: grid;
  gap: 12px;
}

.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.list-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  flex: none;
}

.list-icon svg,
.icon-circle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-grid,
.service-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.info-card,
.soft-card,
.fear-card,
.review-card,
.gallery-card,
.pricing-card {
  border-radius: var(--radius-sm);
  padding: 22px;
}

.service-card {
  border-radius: var(--radius);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 1.8rem;
  line-height: 1.08;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.service-card ul {
  margin-top: 24px;
  margin-bottom: 0;
}

.service-card .btn {
  margin-top: 30px;
  align-self: flex-start;
}

.section-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.info-card,
.soft-card,
.service-card,
.pricing-card,
.review-card,
.gallery-card,
.timeline-step,
.guarantee-card,
.lead-form {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.info-card:hover,
.soft-card:hover,
.service-card:hover,
.pricing-card:hover,
.review-card:hover,
.gallery-card:hover,
.timeline-step:hover,
.guarantee-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(63, 9, 60, 0.1);
  border-color: rgba(63, 9, 60, 0.16);
}

.icon-circle,
.timeline-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand);
  background: rgba(63, 9, 60, 0.08);
}

.pain-grid .soft-card,
.consult-points .soft-card {
  background: linear-gradient(180deg, #fff, #fff7f3);
}

.fears-section {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(63, 9, 60, 0.98), rgba(51, 7, 48, 0.94));
  color: #fff;
}

.fears-section .eyebrow,
.fears-section p {
  color: rgba(255, 255, 255, 0.84);
}

.fear-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.fear-card p,
.fear-card h3 {
  margin: 0;
}

.fear-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.roadmap-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(185, 135, 73, 0.18), transparent 22%),
    radial-gradient(circle at bottom right, rgba(63, 9, 60, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf7fa 0%, #f1e8ee 100%);
}

.roadmap-shell {
  display: grid;
  gap: 26px;
}

.roadmap-panel,
.roadmap-step-card {
  border: 1px solid rgba(63, 9, 60, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(44, 12, 40, 0.08);
}

.roadmap-panel {
  border-radius: 30px;
  padding: 28px;
}

.roadmap-kicker,
.roadmap-step-label {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.roadmap-panel h3,
.roadmap-step-card h3 {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.08;
}

.roadmap-panel p:last-child,
.roadmap-step-card p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.roadmap-progressbar {
  position: relative;
  height: 8px;
  margin-top: 26px;
  border-radius: 999px;
  background: rgba(63, 9, 60, 0.08);
  overflow: hidden;
}

.roadmap-progressbar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cta), var(--brand));
  box-shadow: 0 0 18px rgba(185, 135, 73, 0.24);
}

.roadmap-steps {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 28px;
}

.roadmap-steps::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(185, 135, 73, 0.85), rgba(63, 9, 60, 0.18));
}

.roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  opacity: 0.54;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.roadmap-step.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.roadmap-step-number {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,236,241,0.98));
  border: 1px solid rgba(63, 9, 60, 0.12);
  box-shadow: 0 16px 30px rgba(44, 12, 40, 0.1);
  color: var(--brand);
  font-weight: 800;
}

.roadmap-step-card {
  border-radius: 28px;
  padding: 24px 24px 22px;
}

.roadmap-step.is-active .roadmap-step-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,246,241,0.98));
  border-color: rgba(185, 135, 73, 0.26);
  box-shadow: 0 18px 38px rgba(44, 12, 40, 0.1);
}

.doctor-photo,
.map-placeholder {
  min-height: 240px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  color: var(--brand);
}

.gallery-slider {
  display: block;
}

.gallery-track-wrap {
  overflow: visible;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.55 / 1;
  display: block;
  gap: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  text-align: left;
}

.gallery-card-photo {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.gallery-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 52px rgba(31, 7, 30, 0.16);
}

.gallery-meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  padding: 18px;
  margin: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(42, 6, 40, 0.08), rgba(42, 6, 40, 0.84));
  backdrop-filter: blur(10px);
  color: #fff;
}

.gallery-meta strong {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.gallery-meta span:last-child {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

.gallery-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.reviews-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.reviews-carousel {
  display: grid;
  gap: 16px;
}

.reviews-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.42s cubic-bezier(0.22, 0.74, 0.2, 1);
  will-change: transform;
}

.reviews-track.is-dragging {
  transition: none;
}

.reviews-controls {
  display: inline-flex;
  gap: 10px;
}

.reviews-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(63, 9, 60, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reviews-control svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-control:hover {
  transform: translateY(-1px);
  border-color: rgba(63, 9, 60, 0.2);
  box-shadow: 0 12px 24px rgba(40, 10, 37, 0.08);
}

.reviews-control:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(63, 9, 60, 0.16);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.reviews-dot.is-active {
  width: 28px;
  background: var(--cta);
}

.reviews-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(63, 9, 60, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(40, 10, 37, 0.05);
}

.review-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 0.98rem;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 9, 60, 0.08);
  color: var(--brand);
  flex: none;
  position: relative;
}

.review-avatar::before,
.review-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.review-avatar::before {
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.review-avatar::after {
  bottom: 10px;
  width: 20px;
  height: 10px;
  border-radius: 10px 10px 6px 6px;
  opacity: 0.92;
}

.review-meta {
  display: grid;
  gap: 2px;
}

.review-meta strong {
  color: var(--text);
  font-size: 0.98rem;
  display: block;
}

.review-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #f4b63d;
  font-size: 0.92rem;
  line-height: 1;
}

.review-date {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.2;
}

.review-card-accent {
  background: linear-gradient(180deg, #fff, #fff8f2);
}

.review-slide {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
}

.price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
}

.pricing-card p {
  margin-top: 10px;
}

.pricing-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-note {
  color: var(--muted);
}

.pricing-cta {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(63, 9, 60, 0.1);
  background: linear-gradient(180deg, #fff, #fbf6f2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}

.pricing-cta p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.pricing-section {
  padding-bottom: 26px;
}

.guarantee-section {
  padding-top: 18px;
}

.guarantee-card {
  border-radius: 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 22px 22px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.faq-panel-inner {
  padding: 0 22px 22px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}

.expandable p {
  margin: 18px 0 0;
  color: var(--muted);
}

.lead-form {
  border-radius: 28px;
  padding: 24px;
}

.consult-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.consult-copy p {
  margin: 0;
  color: var(--muted);
}

.consult-card {
  border: 1px solid rgba(63, 9, 60, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(35, 6, 33, 0.07);
  padding: 24px;
}

.consult-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.lead-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(63, 9, 60, 0.16);
  border-radius: 16px;
  background: #fff;
}

.lead-form input:focus {
  outline: 2px solid rgba(185, 135, 73, 0.3);
  border-color: var(--cta);
}

.messenger-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(63, 9, 60, 0.08);
}

.messenger-row p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.messenger-links,
.footer-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.messenger-links a,
.footer-messengers a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(63, 9, 60, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-messengers {
  margin-top: 18px;
}

.footer-messengers a {
  width: 42px;
  padding: 0;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.messenger-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 9, 60, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-messengers .messenger-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--brand);
  font-weight: 600;
}

.site-footer {
  padding: 56px 0 32px;
  background:
    radial-gradient(circle at top left, rgba(185, 135, 73, 0.08), transparent 20%),
    linear-gradient(180deg, #2a0628 0%, var(--brand) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.footer-map {
  width: 100%;
  margin: 32px 0 0;
}

.map-card-full {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.map-embed iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.18) saturate(0.82) contrast(1.04);
  transform: scale(1.08);
  transform-origin: center;
}

.map-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(63, 9, 60, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,242,245,0.98));
  box-shadow: 0 24px 52px rgba(33, 7, 31, 0.14);
}

.map-overlay {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  right: auto;
  width: min(calc(100% - 32px), var(--container));
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(39, 8, 36, 0.12);
}

.map-overlay p {
  margin: 0;
  color: var(--muted);
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand);
}

.map-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 6px rgba(185, 135, 73, 0.16);
}

.btn-map {
  padding-inline: 18px;
}

.map-placeholder {
  min-height: 380px;
  padding: 0;
}

.floating-cta-single {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  isolation: isolate;
  overflow: visible;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(145deg, #b48a5a, #9b7346);
  box-shadow: 0 16px 32px rgba(28, 5, 27, 0.24);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.floating-icon,
.floating-cta-single svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-cta-single::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 1px solid rgba(180, 138, 90, 0.22);
  animation: pulseCta 4.4s ease-out infinite;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 96px;
  z-index: 45;
  width: min(560px, calc(100% - 36px));
  padding: 18px 18px 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(63, 9, 60, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px rgba(31, 7, 30, 0.16);
}

.cookie-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.cookie-copy strong {
  display: block;
  font-family: "Avenir Next", "Avenir", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.cookie-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(185, 135, 73, 0.18), rgba(63, 9, 60, 0.1));
  color: var(--brand);
  flex: none;
}

.cookie-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 4, 17, 0.74);
  backdrop-filter: blur(10px);
}

.gallery-dialog {
  position: relative;
  width: min(calc(100% - 32px), 980px);
  margin: 6vh auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 36px 90px rgba(18, 4, 17, 0.34);
}

.gallery-stage {
  min-height: 420px;
  background: linear-gradient(180deg, #fbf9fa, #f2edf0);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-caption {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-caption h3 {
  margin: 0 0 12px;
  font-family: "Avenir Next", "Avenir", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.1;
}

.gallery-caption p:last-child {
  margin: 0;
  color: var(--muted);
}

.gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(42, 6, 40, 0.08);
  color: var(--brand);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] {
  transform: translate3d(-22px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(22px, 0, 0);
}

[data-reveal="zoom"] {
  transform: scale(0.97);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(185, 135, 73, 0.58);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(185, 135, 73, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(185, 135, 73, 0);
  }
}

@keyframes heroLetterDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -54px, 0) rotate(-6deg);
  }
  65% {
    opacity: 1;
    transform: translate3d(0, 6px, 0) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes pulseCta {
  0% {
    transform: scale(0.96);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

[hidden] {
  display: none !important;
}

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 40px;
  }

  .doctor-grid,
  .cta-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 40px;
  }

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

  .card-grid.benefits-grid,
  .pain-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .roadmap-shell {
    grid-template-columns: 360px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
  }

}

@media (min-width: 1024px) {
  .header-nav,
  .header-actions,
  .header-meta {
    display: inline-flex;
  }

  .burger-btn {
    display: none;
  }

  .card-grid.benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-slide {
    flex-basis: calc((100% - 18px) / 2);
  }

}

@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand burger"
      "phone phone";
    gap: 12px;
    padding: 10px 16px;
  }

  .brand {
    grid-area: brand;
  }

  .burger-btn {
    grid-area: burger;
  }

  .header-cta {
    display: none;
  }

  .header-phone {
    display: inline-flex;
    grid-area: phone;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.92rem;
  }

  .brand-logo {
    height: 28px;
    max-width: 100%;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(42, 6, 40, 0.98);
    box-shadow: 0 24px 44px rgba(15, 2, 14, 0.28);
  }

  .site-header.menu-open .header-nav {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 26px 0 18px;
  }

  .hero h1 {
    font-size: clamp(1.92rem, 9.2vw, 3.05rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .hero-floating-card {
    width: 100%;
  }

  .hero-card {
    padding: 14px;
  }

  .hero-photo,
  .doctor-photo {
    min-height: 280px;
  }

  .hero-points {
    margin-top: 14px;
    gap: 10px;
  }

  .icon-list li {
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .messenger-links a {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2,
  .cta-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .info-card,
  .soft-card,
  .fear-card,
  .review-card,
  .pricing-card {
    padding: 18px;
  }

  .service-card,
  .consult-card,
  .lead-form,
  .guarantee-card {
    padding: 20px;
  }

  .roadmap-steps {
    padding-left: 20px;
  }

  .roadmap-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .roadmap-steps::before {
    left: 26px;
  }

  .roadmap-step-number {
    width: 48px;
    height: 48px;
  }

  .roadmap-step-card {
    padding: 22px 20px;
  }

  .gallery-card {
    aspect-ratio: 1.08 / 1;
  }

  .gallery-meta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .gallery-track,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .review-slide {
    flex-basis: 100%;
  }

  .pricing-cta {
    padding: 18px;
  }

  .gallery-dialog {
    grid-template-columns: 1fr;
    margin-top: 8vh;
  }

  .gallery-stage {
    min-height: 280px;
  }

  .map-overlay {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 0 0 24px 24px;
  }

  .map-badge,
  .map-overlay p,
  .map-overlay .btn {
    width: 100%;
  }

  .floating-cta-single {
    right: 14px;
    bottom: 14px;
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-title .char {
    opacity: 1;
    transform: none;
  }
}
