:root {
  --bg: #f4f1ea;
  --paper: rgba(255, 255, 255, 0.86);
  --paper-solid: #ffffff;
  --ink: #12202a;
  --muted: #5e6a73;
  --accent: #ff5e2c;
  --accent-dark: #d24317;
  --navy: #153247;
  --teal: #1d6f73;
  --sand: #efe2cc;
  --line: rgba(18, 32, 42, 0.1);
  --shadow: 0 24px 80px rgba(12, 26, 36, 0.14);
  --radius: 30px;
  --radius-sm: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 94, 44, 0.14), transparent 22%),
    radial-gradient(circle at 100% 10%, rgba(29, 111, 115, 0.14), transparent 26%),
    linear-gradient(180deg, #f8f5ef 0%, #f1ece4 52%, #f7f4ee 100%);
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

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

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

.page {
  width: min(1220px, calc(100% - 28px));
  margin: 0px auto 48px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(18, 32, 42, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), #244e6b);
  color: #fff;
  font-family: "Russo One", sans-serif;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.brand-copy {
  min-width: 0;
}

.brand-copy small,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  flex-wrap: wrap;
  justify-content: center;
}

.topbar-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
}

.phone {
  font-weight: 800;
  white-space: nowrap;
}

.messenger-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.messenger-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 12px 24px rgba(18, 32, 42, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.messenger-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(18, 32, 42, 0.18);
}

.messenger-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.messenger-link img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.messenger-link span {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
}

.messenger-link-max {
  overflow: hidden;
  background: #ffffff;
}

.messenger-link-whatsapp {
  background: #25d366;
}

.messenger-link-telegram {
  background: #229ed9;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ff8d5f);
  color: #fff;
  box-shadow: 0 18px 32px rgba(255, 94, 44, 0.28);
}

.button-secondary {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  display: grid;
  gap: 22px;
  margin-top: 0px;
}

#prices {
margin-top: 24px;
}

.hero-copy,
.hero-stage,
.panel,
.cta-panel,
.contacts-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(18, 32, 42, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82)),
    var(--paper);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 94, 44, 0.14), rgba(255, 94, 44, 0));
  pointer-events: none;
}

.eyebrow {
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff2eb;
  color: var(--accent-dark);
  font-size: 0.8rem;
}

h1, h2, h3, h4, p {
  margin: 0;
}

h1 {
  font-family: "Russo One", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 10ch;
}


.hero-local {
  margin-top: 24px;
  padding: 18px 18px 18px 20px;
  border-left: 5px solid var(--accent);
  border-radius: 20px;
  background: linear-gradient(135deg, #fffaf5, #fff2e6);
  font-weight: 700;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.hero-facts article {
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(18, 32, 42, 0.07);
}

.hero-facts strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-facts span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.95rem;
}

.hero-stage {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  border-left: none;
  border-right: none;
  box-shadow: none;
  background: #183447;
}

.hero-image {
  min-height: clamp(420px, 62vw, 760px);
  aspect-ratio: 16 / 9;
  width: 100%;
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #183447;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 29, 0.34), rgba(8, 20, 29, 0.56)),
    linear-gradient(90deg, rgba(12, 26, 36, 0.48), rgba(12, 26, 36, 0.12) 60%, rgba(255, 94, 44, 0.1)),
    radial-gradient(circle at 78% 22%, rgba(255, 94, 44, 0.12), transparent 28%);
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-image > * {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: clamp(22px, 4vw, 42px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1220px, calc(100% - 32px));
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-overlay h1 {
  -webkit-text-stroke: 2px #000000;
  margin-top: 18px;
  max-width: 13ch;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.hero-overlay p {
  display: none;
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vw, 42px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1220px, calc(100% - 32px));
  z-index: 3;
}

.hero-strip div {
  padding: 18px 18px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border-radius: 22px;
}

.hero-strip strong {
  display: block;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.hero-strip span {
  display: block;
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  margin-top: 24px;
}

.panel {
  padding: 34px;
  background: rgba(255,255,255,0.9);
}

.panel h2 {
  margin-top: 14px;
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.panel .intro {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.problem-list,
.price-list,
.steps,
.local-points,
.review-links {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.problem-list article,
.price-list article,
.steps article,
.local-points article,
.gallery-card,
.contact-box {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: #fcfaf7;
  border: 1px solid rgba(18, 32, 42, 0.08);
}

.problem-list article h3,
.price-list article h3,
.steps article h3,
.local-points article h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.problem-list article p,
.price-list article p,
.steps article p,
.local-points article p,
.review-links a,
.contact-box p {
  color: var(--muted);
  line-height: 1.65;
}

.steps article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  overflow: visible;
}

.step-index {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e7f4f2, #cfe6df);
  color: var(--teal);
  font-family: "Russo One", sans-serif;
  font-size: 1.05rem;
}

.step-content {
  position: relative;
}

.step-preview {
  position: absolute;
  right: 0;
  top: 50%;
  width: 260px;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 24px 60px rgba(18, 32, 42, 0.24);
  transform: translate(18px, -50%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 5;
  background: #dfe6ea;
}

.step-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps article:hover .step-preview,
.steps article:focus-within .step-preview {
  opacity: 1;
  transform: translate(34px, -50%) scale(1);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.gallery-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.gallery-card div {
  padding: 18px 18px 20px;
}

.gallery-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.before-after-panel {
  margin-top: 24px;
}

.before-after-panel .intro {
  max-width: 62ch;
}

.before-after {
  --position: 50%;
  position: relative;
  margin-top: 26px;
  border-radius: 28px;
  overflow: hidden;
  min-height: 700px;
  background: #e8ecef;
  border: 1px solid rgba(18, 32, 42, 0.08);
  box-shadow: 0 24px 60px rgba(18, 32, 42, 0.14);
}

.before-after__labels {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.before-after__labels span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12, 26, 36, 0.62);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.before-after__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.before-after__layer {
  position: absolute;
  inset: 0;
}

.before-after__layer--before {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.before-after__layer--after {
  clip-path: inset(0 0 0 var(--position));
}

.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 0;
  transform: translateX(-1px);
  z-index: 3;
  pointer-events: none;
}

.before-after__divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(18, 32, 42, 0.08);
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(18, 32, 42, 0.08);
  box-shadow: 0 12px 24px rgba(18, 32, 42, 0.16);
}

.before-after__handle span {
  position: relative;
  width: 16px;
  height: 16px;
}

.before-after__handle span::before,
.before-after__handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
}

.before-after__handle span::before {
  left: -2px;
  border-right: 7px solid var(--navy);
}

.before-after__handle span::after {
  right: -2px;
  border-left: 7px solid var(--navy);
}

.before-after__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.video-preview {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #0e1b24;
  box-shadow: 0 24px 60px rgba(18, 32, 42, 0.16);
  cursor: pointer;
  text-align: left;
}

.video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 23, 0.08), rgba(8, 16, 23, 0.62)),
    linear-gradient(90deg, rgba(18, 50, 71, 0.42), rgba(255, 94, 44, 0.14));
}

.video-preview__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-preview__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(72px, 9vw, 106px);
  height: clamp(72px, 9vw, 106px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.video-preview__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--navy);
}

.video-preview__caption {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #fff;
}

.video-preview__caption strong {
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.video-preview__caption span {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

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

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 14, 0.92);
  backdrop-filter: blur(8px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1600px);
  max-height: calc(100vh - 40px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
  background: #000;
}

.video-modal__player {
  display: block;
  width: 100%;
  max-height: calc(100vh - 40px);
  background: #000;
}

.video-modal__close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
}

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

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 14, 0.68);
  backdrop-filter: blur(8px);
}

.order-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 30px;
  border-radius: 28px;
  background: #fffaf6;
  border: 1px solid rgba(18, 32, 42, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.order-modal__dialog h2 {
  margin: 0 44px 22px 0;
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.55rem, 5vw, 2.15rem);
  line-height: 1.08;
}

.order-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(18, 32, 42, 0.1);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.order-form {
  display: grid;
  gap: 14px;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-form input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(18, 32, 42, 0.14);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  outline: none;
}

.order-form input:focus {
  border-color: rgba(255, 94, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 94, 44, 0.12);
}

.order-form .button {
  width: 100%;
  margin-top: 6px;
}

.order-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.order-form__status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.order-form__status.is-success {
  color: var(--teal);
}

.order-form__status.is-error {
  color: var(--accent-dark);
}

@media (max-width: 980px) {
  .before-after {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .before-after {
    min-height: 320px;
    border-radius: 22px;
  }

  .before-after__labels {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .before-after__labels span {
    padding: 7px 12px;
    font-size: 0.74rem;
  }

  .before-after__handle {
    width: 48px;
    height: 48px;
  }

  .video-preview {
    border-radius: 22px;
  }

  .video-preview__play::before {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .video-modal {
    padding: 10px;
  }

  .video-modal__dialog,
  .video-modal__player {
    max-height: calc(100vh - 20px);
    border-radius: 18px;
  }

  .video-modal__close {
    top: 12px;
    right: 12px;
    padding: 10px 14px;
  }

  .order-modal {
    padding: 12px;
  }

  .order-modal__dialog {
    padding: 24px;
    border-radius: 22px;
  }

  .order-modal__close {
    top: 14px;
    right: 14px;
  }
}

.price-list article {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.price-list h3 {
  display: inline;
}

.price-info {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 8px;
  outline: none;
}

.price-info__icon {
  width: 18px;
  height: 18px;
  display: block;
  cursor: help;
}

.price-info__preview {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 30;
  width: min(320px, calc(100vw - 48px));
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 32, 42, 0.12);
  box-shadow: 0 24px 70px rgba(12, 26, 36, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.price-info__preview img {
  width: 100%;
  border-radius: 12px;
}

.price-info:hover .price-info__preview,
.price-info:focus .price-info__preview,
.price-info:focus-within .price-info__preview {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.price {
  flex-shrink: 0;
  text-align: right;
}

.price strong {
  display: block;
  font-family: "Russo One", sans-serif;
  font-size: 1.45rem;
  color: var(--accent-dark);
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-panel {
  margin-top: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(18, 50, 71, 0.95), rgba(29, 111, 115, 0.9)),
    var(--navy);
  color: #fff;
}

.cta-panel h2 {
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
  max-width: 14ch;
}

.cta-panel p {
  margin-top: 14px;
  max-width: 50ch;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.contacts-panel {
  margin-top: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.88)),
    var(--paper-solid);
}

.contacts-panel h2 {
  margin-top: 14px;
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.04;
  max-width: 12ch;
}

.contacts-panel .intro {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 56ch;
}

.contact-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-action {
  display: flex;
}

.contact-action .button {
  width: 100%;
}

.contact-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-box a,
.contact-box span.value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}

.contact-note {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff1e9, #fffaf6);
  border: 1px solid rgba(255, 94, 44, 0.18);
  align-self: stretch;
}

.contact-note h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.contact-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-panel {
  margin-top: 24px;
}

.faq-panel .intro {
  max-width: 58ch;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: #fcfaf7;
  border: 1px solid rgba(18, 32, 42, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(18, 32, 42, 0.08);
  color: var(--accent-dark);
  font-family: "Russo One", sans-serif;
  font-size: 0.88rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item.is-open .faq-question::after {
  content: "−";
  background: #fff2eb;
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 16px;
  overflow: hidden;
  opacity: 1;
  transition: height 0.28s ease, opacity 0.2s ease;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-answer[hidden] {
  display: block;
  height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .topbar,
  .section-grid,
  .cta-panel,
  .contacts-panel {
    grid-template-columns: 1fr;
  }

  .topbar {
    top: 10px;
    border-radius: 28px;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(18, 32, 42, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .topbar.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav,
  .topbar-cta {
    width: 100%;
    display: none;
    justify-content: space-between;
  }

  .topbar.is-open .nav,
  .topbar.is-open .topbar-cta {
    display: flex;
  }

  .hero-facts,
  .hero-strip,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-strip,
  .gallery {
    grid-template-columns: 1fr;
  }

  .price-list article {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    text-align: left;
  }

  .hero-stage {
    margin-left: calc(50% - 50vw);
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 16px, 1220px);
  }

  .topbar {
    width: calc(100% - 16px);
    padding: 10px 12px;
    gap: 10px;
    border-radius: 22px;
  }

  .brand {
    flex: 1;
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .nav {
    gap: 12px;
    padding-top: 8px;
  }

  .topbar-cta {
    gap: 10px;
  }

  .messenger-links {
    justify-content: center;
  }

  .hero-copy,
  .panel,
  .cta-panel,
  .contacts-panel {
    padding: 24px;
  }

  .cta-panel {
    gap: 18px;
  }

  .cta-panel h2 {
    max-width: 100%;
    margin-top: 10px;
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    line-height: 1.14;
  }

  .cta-panel p {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .faq-question {
    padding: 14px 14px;
    gap: 12px;
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .faq-question::after {
    width: 28px;
    height: 28px;
    font-size: 0.86rem;
  }

  .faq-answer {
    padding: 0 14px 14px;
  }

  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .faq-list {
    gap: 10px;
    margin-top: 18px;
  }

  .nav,
  .topbar-cta,
  .hero-actions,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .phone {
    width: 100%;
  }

  .phone {
    text-align: center;
  }

  .hero-image {
    min-height: 0;
    aspect-ratio: auto;
  }

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

  .hero-video {
    position: static;
    height: min(62vh, 430px);
    min-height: 320px;
  }

  .hero-overlay {
    position: static;
    width: 100%;
    transform: none;
    padding: 18px 12px 24px;
    background: #153247;
  }

  .hero-overlay h1 {
    max-width: 12ch;
    margin-top: 14px;
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-strip {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: none;
    width: auto;
    grid-template-columns: 1fr;
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .step-preview {
    position: static;
    width: 100%;
    margin-top: 14px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .steps article:hover .step-preview,
  .steps article:focus-within .step-preview {
    transform: none;
  }
}
