@font-face {
      font-family: "Montserrat";
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url("/fonts/montserrat-v31-cyrillic_latin-regular.woff2") format("woff2");
    }
    @font-face {
      font-family: "Montserrat";
      font-style: normal;
      font-weight: 600;
      font-display: swap;
      src: url("/fonts/montserrat-v31-cyrillic_latin-600.woff2") format("woff2");
    }
    :root {
      --canvas: #f5f7fd;
      --surface: #ffffff;
      --surface-soft: #fbfcff;
      --fg: #17171b;
      --fg-soft: #414143;
      --muted: #636363;
      --subtle: #929292;
      --border: #e6e6e6;
      --accent: #30c4ff;
      --accent-strong: #1597d5;
      --accent-soft: #dbf5ff;
      --warm: #ffc106;
      --warm-soft: #fff5cc;
      --danger: #e92434;
      --shadow: 0 24px 60px rgba(23, 23, 27, .08);
      --radius: 8px;
      --section-y: clamp(72px, 7vw, 96px);
      --section-y-compact: clamp(56px, 5vw, 72px);
      --section-head-gap: 28px;
      --content-gap: 28px;
      --font-display: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
      --font-body: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
      --font-mono: "Geist Mono", "SF Mono", ui-monospace, monospace;
    }

    * {
      box-sizing: border-box;
    }

    html {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      scroll-behavior: auto;
      scroll-padding-top: 88px;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--fg);
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      overflow-x: clip;
      background:
        linear-gradient(180deg, rgba(48, 196, 255, .08), transparent 42%),
        var(--canvas);
    }

    button,
    input,
    select {
      font: inherit;
    }

    button,
    a,
    input,
    select {
      outline-offset: 4px;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 2px solid var(--accent-strong);
    }

    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease;
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .details-content {
      overflow: hidden;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(23, 23, 27, .08);
      background: rgba(255, 255, 255, .96);
      backdrop-filter: blur(18px);
    }

    .nav-inner {
      width: min(1240px, calc(100% - 48px));
      min-height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--fg);
      text-decoration: none;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 0;
    }

    .brand-mark {
      width: 52px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(48, 196, 255, .45);
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 88% 18%, rgba(255, 190, 10, .30), transparent 38%),
        linear-gradient(135deg, rgba(227, 247, 255, .96), rgba(255, 255, 255, .96));
      color: var(--accent);
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
      box-shadow: 0 10px 22px rgba(48, 196, 255, .13);
    }

    .brand-name {
      color: var(--fg);
    }

    .brand-name span {
      color: var(--accent);
    }

    .brand-copy {
      display: grid;
      gap: 2px;
      line-height: 1.05;
    }

    .brand-context {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .brand-context:before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--warm);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 14px;
    }

    .nav-links a {
      position: relative;
      color: inherit;
      text-decoration: none;
      font-weight: 600;
      transition: color .18s ease;
    }

    .nav-links a:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -7px;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
      opacity: 0;
      transform: scaleX(.4);
      transition: opacity .18s ease, transform .18s ease;
    }

    .nav-links a:hover {
      color: var(--fg);
    }

    .nav-links a:hover:after {
      opacity: 1;
      transform: scaleX(1);
    }

    .nav-cta {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid rgba(255, 190, 10, .52);
      border-radius: var(--radius);
      padding: 0 16px;
      background: linear-gradient(135deg, #ffd84a, var(--warm));
      color: var(--fg);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 12px 28px rgba(255, 193, 6, .18);
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .nav-cta svg {
      width: 17px;
      height: 17px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .nav-cta:hover {
      background: linear-gradient(135deg, #ffe16a, #ffc526);
      box-shadow: 0 16px 34px rgba(255, 193, 6, .28);
      transform: translateY(-1px);
    }

    .nav-cta:active {
      transform: translateY(1px);
    }

    .menu-toggle,
    .mobile-menu,
    .mobile-menu-backdrop {
      display: none;
    }

    body.menu-open {
      overflow: hidden;
    }

    main {
      width: min(1240px, calc(100% - 48px));
      margin: 0 auto;
    }

    .hero {
      min-height: calc(100vh - 72px);
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(460px, .86fr);
      gap: clamp(40px, 5vw, 72px);
      align-items: start;
      padding: 64px 0 48px;
    }

    .hero-copy {
      min-width: 0;
      padding-top: 14px;
    }

    .eyebrow {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      color: var(--fg-soft);
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .eyebrow:before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--warm);
      box-shadow: 0 0 0 7px var(--warm-soft);
      animation: markerPulse 2.6s ease-in-out infinite;
    }

    @keyframes markerPulse {
      0%,
      100% {
        box-shadow: 0 0 0 7px rgba(255, 193, 6, .22);
      }
      50% {
        box-shadow: 0 0 0 8px rgba(255, 193, 6, .12);
      }
    }

    h1 {
      max-width: 680px;
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(44px, 4.8vw, 64px);
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1.02;
      overflow-wrap: normal;
      word-break: normal;
    }

    h1 span {
      color: var(--accent-strong);
      font-style: italic;
      font-weight: 600;
    }

    .lead {
      max-width: 62ch;
      margin: 24px 0 0;
      color: var(--fg-soft);
      font-size: 19px;
      line-height: 1.58;
      font-weight: 400;
    }

    .hero-proof {
      max-width: 760px;
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .desktop-selection-panel {
      display: grid;
      gap: 12px;
      max-width: 760px;
      margin-top: 22px;
      border: 1px solid rgba(48, 196, 255, .22);
      border-radius: var(--radius);
      padding: 16px;
      background: rgba(255, 255, 255, .74);
      box-shadow: 0 18px 42px rgba(23, 23, 27, .08);
      backdrop-filter: blur(16px);
    }

    .desktop-selection-panel[hidden] {
      display: none;
    }

    .desktop-selection-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
    }

    .desktop-selection-head span {
      display: block;
      margin-bottom: 5px;
      color: var(--subtle);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .desktop-selection-head b {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -.01em;
    }

    .desktop-selection-total {
      color: var(--accent-strong);
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 600;
      line-height: .95;
      white-space: nowrap;
    }

    .desktop-selection-list {
      display: grid;
      gap: 8px;
      transition: opacity .18s ease, transform .18s ease;
    }

    .desktop-selection-empty {
      border: 1px dashed rgba(21, 151, 213, .28);
      border-radius: var(--radius);
      padding: 12px;
      background: rgba(219, 245, 255, .34);
      color: var(--muted);
      font-size: 13px;
      line-height: 1.42;
    }

    .selection-item {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 10px;
      align-items: center;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 10px;
      background: rgba(255, 255, 255, .9);
      animation: selectionItemIn .22s ease both;
    }

    @keyframes selectionItemIn {
      from {
        opacity: 0;
        transform: translateY(4px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .selection-item img {
      width: 42px;
      height: 42px;
      object-fit: contain;
    }

    .selection-item b {
      display: block;
      margin-bottom: 3px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.25;
    }

    .selection-item small {
      display: block;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.35;
    }

    .selection-item strong {
      color: var(--fg);
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
    }

    .selection-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 6px;
    }

    .selection-badges span {
      border-radius: 999px;
      padding: 3px 7px;
      background: rgba(219, 245, 255, .72);
      color: var(--accent-strong);
      font-size: 10px;
      font-weight: 600;
      line-height: 1;
    }

    .proof-item {
      min-height: 94px;
      display: grid;
      grid-template-columns: 46px 1fr;
      align-items: center;
      gap: 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px;
      background: rgba(255, 255, 255, .78);
    }

    .proof-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(48, 196, 255, .5);
      border-radius: 50%;
      background: rgba(219, 245, 255, .7);
      color: var(--accent-strong);
    }

    .proof-icon svg {
      width: 23px;
      height: 23px;
      stroke: currentColor;
      stroke-width: 1.7;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .proof-item b {
      display: block;
      margin-bottom: 5px;
      font-size: 15px;
      letter-spacing: -.01em;
    }

    .proof-item span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .before-after-card {
      display: grid;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface);
      overflow: hidden;
      box-shadow: 0 26px 70px rgba(23, 23, 27, .12);
    }

    .comparison-slider {
      --split: 52%;
      position: relative;
      aspect-ratio: 16 / 9;
      min-height: 320px;
      background: var(--surface-soft);
      isolation: isolate;
    }

    .comparison-slider img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .comparison-before {
      z-index: 2;
      clip-path: inset(0 calc(100% - var(--split)) 0 0);
    }

    .slider-divider {
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--split);
      z-index: 4;
      width: 3px;
      background: rgba(255, 255, 255, .92);
      transform: translateX(-50%);
      pointer-events: none;
      box-shadow: 0 0 0 1px rgba(23, 23, 27, .06);
    }

    .slider-handle {
      position: absolute;
      top: 50%;
      left: var(--split);
      z-index: 5;
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 50%;
      background: var(--surface);
      color: var(--accent-strong);
      transform: translate(-50%, -50%);
      box-shadow: 0 16px 40px rgba(23, 23, 27, .18);
      pointer-events: none;
    }

    .slider-handle svg {
      width: 28px;
      height: 28px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .comparison-range {
      position: absolute;
      inset: 0;
      z-index: 6;
      width: 100%;
      height: 100%;
      margin: 0;
      opacity: 0;
      cursor: ew-resize;
    }

    .image-label {
      position: absolute;
      left: 12px;
      bottom: 12px;
      min-height: 29px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0 10px;
      background: rgba(255, 255, 255, .9);
      color: var(--fg);
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 8px 20px rgba(23, 23, 27, .12);
    }

    .image-label.after {
      left: auto;
      right: 12px;
      background: rgba(255, 255, 255, .92);
    }

    .image-label.before {
      z-index: 3;
      background: rgba(23, 23, 27, .78);
      color: var(--surface);
    }

    .result-note {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 16px;
      padding: 16px;
      border-top: 1px solid var(--border);
    }

    .result-note small {
      color: var(--subtle);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .result-note strong {
      display: block;
      margin-top: 4px;
      font-size: 18px;
      letter-spacing: -.01em;
    }

    .result-note span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
      text-align: right;
    }

    .results-section {
      padding-top: var(--section-y);
      padding-bottom: var(--section-y);
    }

    .results-layout {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
      gap: clamp(32px, 5vw, 70px);
      align-items: center;
    }

    .results-layout .before-after-card {
      min-width: 0;
      padding: 22px;
      border: 0;
      background: rgba(255, 255, 255, .6);
      box-shadow: 0 28px 90px rgba(48, 196, 255, .12);
    }

    .results-layout .comparison-slider {
      overflow: hidden;
      border-radius: var(--radius);
    }

    .results-layout .result-note {
      margin-top: 14px;
      border: 1px solid rgba(230, 230, 230, .82);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .78);
    }

    .result-story {
      display: grid;
      gap: 26px;
    }

    .result-story .section-head {
      margin-bottom: 0;
    }

    .result-quote {
      position: relative;
      border-left: 4px solid var(--warm);
      border-radius: var(--radius);
      padding: 34px 26px 24px;
      background: rgba(255, 255, 255, .78);
      box-shadow: 0 22px 58px rgba(48, 196, 255, .08);
    }

    .result-quote:before {
      content: "“";
      position: absolute;
      top: 10px;
      left: 24px;
      color: var(--accent-strong);
      font-size: 54px;
      font-weight: 600;
      line-height: 1;
    }

    .result-quote p {
      margin: 0 0 14px;
      color: #17213e;
      font-size: 17px;
      font-style: italic;
      line-height: 1.65;
    }

    .result-quote strong {
      color: var(--fg);
      font-size: 14px;
      font-weight: 600;
    }

    .result-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .result-perks {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      color: #17213e;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
    }

    .result-perks span {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 44px;
      padding-right: 16px;
      margin-right: 16px;
      border-right: 1px solid var(--border);
    }

    .result-perks span:last-child {
      margin-right: 0;
      padding-right: 0;
      border-right: 0;
    }

    .result-perks svg {
      width: 25px;
      height: 25px;
      flex: 0 0 auto;
      stroke: var(--accent-strong);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .result-button {
      min-height: 56px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: var(--radius);
      padding: 0 22px;
      background: linear-gradient(135deg, #ffd84a, var(--warm));
      color: #121726;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 18px 40px rgba(255, 193, 6, .24);
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .result-button.secondary {
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, .82);
      color: var(--fg);
      box-shadow: none;
    }

    .result-button:hover {
      background: linear-gradient(135deg, #ffe16a, #ffc526);
      box-shadow: 0 22px 48px rgba(255, 193, 6, .3);
      transform: translateY(-2px);
    }

    .result-button.secondary:hover {
      border-color: rgba(48, 196, 255, .38);
      background: var(--accent-soft);
      box-shadow: 0 18px 38px rgba(48, 196, 255, .12);
    }

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

    .section {
      padding: var(--section-y) 0;
      scroll-margin-top: 88px;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: var(--section-head-gap);
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 12px;
      color: var(--accent-strong);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .section-kicker:before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--warm);
      box-shadow: 0 0 0 7px var(--warm-soft);
      animation: markerPulse 2.6s ease-in-out infinite;
    }

    .section-title {
      max-width: 780px;
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(34px, 4vw, 54px);
      font-weight: 600;
      line-height: 1.04;
      letter-spacing: 0;
    }

    .section-title span {
      color: var(--accent-strong);
    }

    .section-copy {
      max-width: 64ch;
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .services-section {
      padding-top: var(--section-y);
    }

    .services-intro {
      display: grid;
      grid-template-columns: 1fr;
      gap: 22px;
      align-items: start;
      margin-bottom: var(--content-gap);
    }

    .services-intro .section-head {
      margin-bottom: 0;
    }

    .service-trust {
      width: min(78%, 760px);
      justify-self: end;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: center;
      border: 1px solid rgba(230, 230, 230, .8);
      border-radius: var(--radius);
      padding: 12px 6px;
      background: rgba(255, 255, 255, .78);
      box-shadow: 0 14px 34px rgba(48, 196, 255, .06);
    }

    .service-trust span {
      min-width: 0;
      min-height: 38px;
      display: grid;
      grid-template-columns: 26px minmax(0, 17ch);
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 clamp(10px, 1.4vw, 20px);
      border-right: 1px solid var(--border);
      color: var(--fg);
      font-size: clamp(12px, .9vw, 14px);
      font-weight: 600;
      line-height: 1.25;
      overflow-wrap: normal;
      word-break: normal;
      hyphens: none;
    }

    .service-trust span:last-child {
      border-right: 0;
    }

    .service-trust svg {
      width: 26px;
      height: 26px;
      flex: 0 0 auto;
      stroke: var(--warm);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .service-card {
      position: relative;
      min-height: 250px;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(128px, .72fr);
      gap: 10px;
      overflow: hidden;
      border: 1px solid rgba(230, 230, 230, .86);
      border-radius: var(--radius);
      padding: 20px;
      background:
        linear-gradient(100deg, rgba(255, 255, 255, .92) 0 58%, rgba(219, 245, 255, .5) 100%),
        rgba(255, 255, 255, .84);
      color: var(--fg);
      text-decoration: none;
      box-shadow: 0 18px 50px rgba(48, 196, 255, .06);
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .service-card:hover {
      border-color: rgba(48, 196, 255, .5);
      transform: translateY(-2px);
      box-shadow: 0 24px 64px rgba(23, 23, 27, .1);
    }

    .service-content {
      position: relative;
      z-index: 2;
      display: grid;
      align-content: space-between;
      gap: 16px;
      min-width: 0;
    }

    .service-title-row {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 14px;
    }

    .service-card h3 {
      margin: 0;
      font-size: 19px;
      font-weight: 600;
      letter-spacing: -.01em;
      line-height: 1.12;
      overflow-wrap: anywhere;
    }

    .service-card p {
      margin: 0;
      color: #25304d;
      font-size: 13px;
      line-height: 1.58;
      max-width: 23ch;
    }

    .service-cta {
      display: inline-grid;
      grid-template-columns: minmax(0, auto) 18px;
      align-items: end;
      gap: 8px;
      justify-self: start;
      width: fit-content;
      max-width: 168px;
      color: var(--fg);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.16;
    }

    .service-cta span {
      min-width: 0;
    }

    .service-cta svg {
      width: 18px;
      height: 18px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      color: var(--fg);
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-art {
      position: relative;
      z-index: 1;
      align-self: end;
      justify-self: end;
      width: min(180px, 100%);
      aspect-ratio: 1 / 1;
      display: grid;
      place-items: center;
      color: var(--accent-strong);
      filter: none;
    }

    .service-art:before {
      content: none;
    }

    .service-art img {
      position: relative;
      width: 116%;
      height: 116%;
      object-fit: contain;
    }

    .service-footer {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      margin-top: 14px;
      border: 1px solid rgba(230, 230, 230, .86);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .78);
      box-shadow: 0 18px 48px rgba(48, 196, 255, .07);
    }

    .service-footer span {
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 14px 18px;
      border-right: 1px solid var(--border);
      color: #25304d;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
    }

    .service-footer span:last-child {
      border-right: 0;
    }

    .service-footer svg {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      stroke: var(--warm);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .allergen-section {
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: var(--section-y) 0;
      background:
        radial-gradient(circle at 78% 48%, rgba(255, 78, 66, .13), transparent 24%),
        radial-gradient(circle at 72% 56%, rgba(255, 193, 6, .1), transparent 28%),
        linear-gradient(180deg, rgba(255, 245, 242, .64) 0%, rgba(255, 255, 255, .96) 54%, rgba(245, 247, 253, 0) 100%);
      scroll-margin-top: 88px;
    }

    .allergen-panel {
      position: relative;
      width: min(100% - 48px, 1240px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, .78fr) minmax(420px, .98fr);
      gap: clamp(20px, 3vw, 46px);
      align-items: center;
      overflow: hidden;
      padding: clamp(10px, 1.5vw, 18px) 0;
      min-height: 540px;
    }

    .allergen-panel:before {
      content: "";
      position: absolute;
      inset: 0 42% 0 -12%;
      background: linear-gradient(90deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .24), rgba(255, 255, 255, 0));
      pointer-events: none;
    }

    .allergen-panel:after {
      content: "";
      position: absolute;
      right: -14%;
      bottom: -24%;
      width: 58%;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(48, 196, 255, .12), transparent 66%);
      pointer-events: none;
    }

    .allergen-content {
      position: relative;
      z-index: 2;
      max-width: 650px;
    }

    .allergen-points {
      display: grid;
      gap: 16px;
      margin-top: 26px;
    }

    .allergen-point {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 11px;
      align-items: start;
      padding: 2px 0;
      background: transparent;
      box-shadow: none;
    }

    .allergen-point svg {
      width: 28px;
      height: 28px;
      margin-top: 1px;
      padding: 5px;
      border: 1px solid rgba(255, 78, 66, .28);
      border-radius: 8px;
      background: rgba(255, 78, 66, .08);
      stroke: #e84135;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .allergen-point strong {
      display: block;
      margin-bottom: 2px;
      font-size: 14px;
      font-weight: 600;
      color: var(--fg);
    }

    .allergen-point span {
      display: block;
      color: #25304d;
      font-size: 12.5px;
      line-height: 1.45;
    }

    .allergen-visual {
      position: relative;
      z-index: 2;
      align-self: stretch;
      min-height: 500px;
      pointer-events: none;
    }

    .allergen-visual img {
      position: absolute;
      right: clamp(-180px, -10vw, -92px);
      top: clamp(28px, 5vw, 72px);
      width: min(62vw, 820px);
      max-width: none;
      height: auto;
      filter: drop-shadow(0 26px 38px rgba(23, 23, 27, .1));
    }

    .allergen-badge {
      position: absolute;
      z-index: 4;
      right: clamp(18px, 3vw, 46px);
      bottom: clamp(28px, 4vw, 54px);
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 36px;
      border: 1px solid rgba(255, 193, 6, .52);
      border-radius: 999px;
      padding: 0 13px;
      background: rgba(255, 245, 204, .9);
      color: #8d6900;
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 16px 36px rgba(23, 23, 27, .08);
      pointer-events: auto;
    }

    .allergen-badge:before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--warm);
    }

    .process-section {
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding-top: var(--section-y);
      padding-bottom: var(--section-y);
      background:
        radial-gradient(circle at 18% 24%, rgba(255, 193, 6, .16), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(48, 196, 255, .2), transparent 28%),
        linear-gradient(180deg, rgba(245, 247, 253, 0) 0%, rgba(231, 243, 255, .86) 18%, rgba(245, 247, 253, .94) 78%, rgba(245, 247, 253, 0) 100%);
      scroll-margin-top: 88px;
    }

    .process-section > * {
      width: min(100% - 48px, 1240px);
      margin-left: auto;
      margin-right: auto;
    }

    .process-head {
      display: grid;
      grid-template-columns: minmax(0, .82fr) minmax(320px, .48fr);
      gap: clamp(28px, 4vw, 58px);
      align-items: start;
      margin-bottom: var(--content-gap);
    }

    .process-head .section-head {
      margin-bottom: 0;
    }

    .process-note {
      display: grid;
      gap: 14px;
      border-left: 3px solid var(--warm);
      padding-left: 18px;
      color: #25304d;
      font-size: 14px;
      line-height: 1.58;
    }

    .process-note strong {
      display: block;
      margin-bottom: 4px;
      color: var(--fg);
      font-size: 15px;
      font-weight: 600;
    }

    .process-note p {
      margin: 0;
    }

    .process-reasons {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .process-reasons li {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 9px;
      align-items: start;
      color: #25304d;
      font-size: 13px;
      line-height: 1.42;
    }

    .process-reasons svg {
      width: 18px;
      height: 18px;
      margin-top: 1px;
      stroke: var(--accent-strong);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .process-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      justify-self: start;
      min-height: 42px;
      border-radius: var(--radius);
      padding: 0 16px;
      background: var(--fg);
      color: var(--surface);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      box-shadow: 0 16px 34px rgba(23, 23, 27, .12);
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .process-cta:after {
      content: "→";
      font-size: 16px;
      line-height: 1;
      transform: translateY(-1px);
      transition: transform .18s ease;
    }

    .process-cta:hover {
      background: #2b2b30;
      box-shadow: 0 20px 42px rgba(23, 23, 27, .18);
      transform: translateY(-2px);
    }

    .process-cta:hover:after {
      transform: translate(3px, -1px);
    }

    .process-cta:active {
      transform: translateY(1px);
    }

    .process-steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      border: 1px solid rgba(230, 230, 230, .86);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .78);
      box-shadow: 0 24px 64px rgba(48, 196, 255, .07);
      backdrop-filter: blur(14px);
    }

    .process-step {
      position: relative;
      min-height: 230px;
      padding: 26px 22px 24px;
      border-right: 1px solid var(--border);
    }

    .process-step:last-child {
      border-right: 0;
    }

    .process-step-number {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      color: var(--accent-strong);
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .process-step-number:before {
      content: attr(data-step);
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(48, 196, 255, .38);
      border-radius: 50%;
      background: rgba(219, 245, 255, .74);
      color: var(--accent-strong);
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0;
    }

    .process-step h3 {
      margin: 0 0 10px;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.18;
    }

    .process-step p {
      margin: 0;
      color: #25304d;
      font-size: 13px;
      line-height: 1.56;
    }

    .process-step svg {
      position: absolute;
      right: 22px;
      top: 28px;
      width: 26px;
      height: 26px;
      stroke: var(--warm);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .reviews-section {
      padding-top: var(--section-y);
      padding-bottom: var(--section-y);
      overflow: hidden;
    }

    .reviews-head {
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(280px, .42fr);
      gap: clamp(24px, 4vw, 58px);
      align-items: end;
      margin-bottom: var(--content-gap);
    }

    .reviews-head .section-head {
      margin-bottom: 0;
    }

    .review-invite {
      display: grid;
      gap: 16px;
      border: 1px solid rgba(230, 230, 230, .86);
      border-radius: var(--radius);
      padding: 22px;
      background:
        radial-gradient(circle at 92% 22%, rgba(48, 196, 255, .12), transparent 34%),
        rgba(255, 255, 255, .72);
      box-shadow: 0 18px 44px rgba(23, 23, 27, .05);
    }

    .review-invite-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent-strong);
    }

    .review-invite-icon svg,
    .modal-icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .review-invite strong {
      color: var(--fg);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.18;
    }

    .review-invite p {
      margin: 0;
      color: #25304d;
      font-size: 13px;
      line-height: 1.55;
    }

    .review-action {
      min-height: 46px;
      border: 0;
      border-radius: var(--radius);
      padding: 0 18px;
      background: var(--warm);
      color: var(--fg);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 16px 34px rgba(255, 193, 6, .22);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .review-action svg {
      width: 17px;
      height: 17px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .review-action:hover {
      background: #ffd84a;
      box-shadow: 0 20px 42px rgba(255, 193, 6, .3);
      transform: translateY(-2px);
    }

    .reviews-showcase {
      position: relative;
      width: 100%;
      overflow: visible;
      padding: 8px 0 10px;
    }

    .reviews-track {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      width: 100%;
    }

    .review-card {
      position: relative;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 18px;
      min-height: 300px;
      border: 1px solid rgba(230, 230, 230, .9);
      border-radius: var(--radius);
      padding: 24px;
      background: rgba(255, 255, 255, .82);
      box-shadow: 0 18px 44px rgba(23, 23, 27, .05);
      transition: opacity .45s ease, transform .45s ease, box-shadow .45s ease;
    }

    .review-card:before {
      content: "“";
      position: absolute;
      right: 24px;
      top: 18px;
      color: rgba(48, 196, 255, .16);
      font-family: var(--font-display);
      font-size: 88px;
      font-weight: 600;
      line-height: 1;
    }

    .review-stars {
      position: relative;
      z-index: 1;
      color: var(--warm);
      font-size: 17px;
      letter-spacing: .08em;
      line-height: 1;
    }

    .review-card blockquote {
      position: relative;
      z-index: 1;
      margin: 0;
      color: #25304d;
      font-size: 15px;
      line-height: 1.62;
    }

    .review-meta {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 74px 1fr auto;
      gap: 14px;
      align-items: end;
      border-top: 1px solid var(--border);
      padding-top: 16px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
    }

    .review-meta img {
      width: 74px;
      height: 52px;
      object-fit: contain;
      object-position: left bottom;
    }

    .review-meta strong {
      display: block;
      color: var(--fg);
      font-size: 14px;
      font-weight: 600;
    }

    .review-service {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      border-radius: 999px;
      padding: 0 11px;
      background: var(--accent-soft);
      color: var(--accent-strong);
      font-size: 11px;
      font-weight: 600;
      white-space: nowrap;
    }

    .reviews-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 22px;
    }

    .reviews-cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      border-radius: var(--radius);
      padding: 0 20px;
      background: var(--fg);
      color: var(--surface);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      box-shadow: 0 16px 34px rgba(23, 23, 27, .12);
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .reviews-cta:before {
      content: "";
      position: absolute;
      left: -36px;
      top: -18px;
      width: 47px;
      height: 40px;
      pointer-events: none;
      background: url("data:image/svg+xml,%3Csvg width='54' height='46' viewBox='0 0 54 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 33C13.4 33.6 18.4 34.8 22.6 37' stroke='%23FFC106' stroke-width='4.5' stroke-linecap='round'/%3E%3Cpath d='M17.6 16.4C23.1 20 27.3 23.8 30.8 28.7' stroke='%23FFC106' stroke-width='4.5' stroke-linecap='round'/%3E%3Cpath d='M36.8 5C37.2 12.9 38.3 19.6 41 27' stroke='%23FFC106' stroke-width='4.5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
      filter: drop-shadow(0 5px 9px rgba(255, 193, 6, .18));
      transform: rotate(-13deg);
      transform-origin: 100% 100%;
    }

    .reviews-cta:after {
      content: "→";
      font-size: 17px;
      line-height: 1;
      transform: translateY(-1px);
      transition: transform .18s ease;
    }

    .reviews-cta:hover {
      background: #2b2b30;
      box-shadow: 0 20px 42px rgba(23, 23, 27, .18);
      transform: translateY(-2px);
    }

    .reviews-cta:hover:after {
      transform: translate(3px, -1px);
    }

    .reviews-cta:active {
      transform: translateY(1px);
    }

    .area-section {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      padding: var(--section-y) 0;
      background:
        radial-gradient(circle at 18% 18%, rgba(255, 193, 6, .16), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(48, 196, 255, .18), transparent 34%),
        linear-gradient(135deg, rgba(219, 245, 255, .82), rgba(255, 255, 255, .72) 48%, rgba(255, 245, 204, .52));
    }

    .area-shell {
      width: min(1240px, calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: center;
    }

    .area-content .section-head {
      margin-bottom: 22px;
    }

    .area-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-top: 26px;
    }

    .area-cta {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border-radius: var(--radius);
      padding: 0 22px;
      background: var(--fg);
      color: var(--surface);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 18px 42px rgba(23, 23, 27, .16);
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .area-cta:hover {
      background: #2b2b30;
      box-shadow: 0 22px 52px rgba(23, 23, 27, .2);
      transform: translateY(-2px);
    }

    .area-cta svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .area-small {
      color: #25304d;
      font-size: 13px;
      line-height: 1.5;
    }

    .area-map {
      position: relative;
      min-height: 390px;
      border: 1px solid rgba(230, 230, 230, .72);
      border-radius: var(--radius);
      padding: 26px;
      overflow: hidden;
      background:
        radial-gradient(circle at 76% 18%, rgba(48, 196, 255, .16), transparent 30%),
        radial-gradient(circle at 16% 82%, rgba(219, 245, 255, .72), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(251, 252, 255, .76));
      box-shadow: 0 24px 62px rgba(23, 23, 27, .07);
    }

    .area-map:before {
      content: none;
    }

    .area-map:after {
      content: none;
    }

    .area-map-head {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 22px;
    }

    .area-map-head strong {
      display: block;
      color: var(--fg);
      font-size: 22px;
      font-weight: 600;
      line-height: 1.12;
    }

    .area-map-head > div > span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .area-pin {
      flex: 0 0 auto;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(48, 196, 255, .5);
      border-radius: 50%;
      background: rgba(219, 245, 255, .72);
      color: var(--accent-strong);
      box-shadow: 0 16px 34px rgba(48, 196, 255, .14);
    }

    .area-pin svg {
      width: 21px;
      height: 21px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transform: translateY(1px);
    }

    .area-pin svg * {
      stroke: currentColor;
    }

    .area-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .area-city {
      min-height: 74px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      border: 0;
      border-radius: var(--radius);
      padding: 12px;
      background: rgba(255, 255, 255, .66);
      color: #25304d;
      font-size: 12px;
      line-height: 1.2;
    }

    .area-city strong {
      color: var(--fg);
      font-size: 15px;
      font-weight: 600;
    }

    .area-city.is-primary {
      background: rgba(255, 255, 255, .66);
    }

    .area-note {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: center;
      margin-top: 18px;
      border: 0;
      border-radius: var(--radius);
      padding: 14px;
      background: rgba(219, 245, 255, .52);
      color: #25304d;
      font-size: 13px;
      line-height: 1.45;
      box-shadow: inset 0 0 0 1px rgba(48, 196, 255, .22);
    }

    .area-note svg {
      width: 24px;
      height: 24px;
      stroke: var(--accent-strong);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .faq-section {
      padding-top: var(--section-y);
      padding-bottom: var(--section-y);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, .64fr) minmax(520px, 1fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: start;
    }

    .faq-layout > * {
      min-width: 0;
    }

    .faq-aside {
      position: sticky;
      top: 104px;
    }

    .faq-aside .section-head {
      margin-bottom: 22px;
    }

    .city-landing .faq-layout {
      grid-template-columns: minmax(0, .52fr) minmax(520px, 1fr);
      gap: clamp(28px, 4vw, 56px);
    }

    .city-landing .faq-aside .section-title {
      max-width: 100%;
      overflow-wrap: anywhere;
      hyphens: auto;
    }

    .faq-card {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      border: 1px solid rgba(230, 230, 230, .78);
      border-radius: var(--radius);
      padding: 18px;
      background:
        radial-gradient(circle at 90% 18%, rgba(48, 196, 255, .12), transparent 32%),
        rgba(255, 255, 255, .72);
      color: #25304d;
      font-size: 13px;
      line-height: 1.52;
    }

    .faq-card svg {
      width: 46px;
      height: 46px;
      padding: 7px;
      border: 1px solid rgba(48, 196, 255, .48);
      border-radius: 50%;
      background: var(--accent-soft);
      stroke: var(--accent-strong);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .faq-card > div {
      min-width: 0;
      padding-top: 1px;
    }

    .faq-card strong {
      display: block;
      color: var(--fg);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.25;
    }

    .faq-card p {
      margin: 0;
    }

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

    .faq-item {
      border: 1px solid rgba(230, 230, 230, .82);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .74);
      overflow: hidden;
      box-shadow: 0 16px 38px rgba(23, 23, 27, .04);
    }

    .faq-item summary {
      min-height: 64px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 0 18px;
      color: var(--fg);
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary:after {
      content: "+";
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(48, 196, 255, .48);
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent-strong);
      font-size: 18px;
      font-weight: 600;
      line-height: 1;
    }

    .faq-item[open] summary:after {
      content: "-";
    }

    .faq-item p {
      margin: 0;
      padding: 0 18px 18px;
      color: #25304d;
      font-size: 14px;
      line-height: 1.62;
    }

    .final-cta {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      padding: var(--section-y-compact) 0;
      background:
        radial-gradient(circle at 20% 18%, rgba(48, 196, 255, .18), transparent 28%),
        radial-gradient(circle at 84% 78%, rgba(255, 193, 6, .12), transparent 26%),
        #17171b;
    }

    .final-cta-panel {
      position: relative;
      width: min(1240px, calc(100vw - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
      border-radius: var(--radius);
      padding: 0;
      background: transparent;
      color: var(--surface);
      box-shadow: none;
    }

    .final-cta-panel:before {
      content: none;
    }

    .final-cta-copy {
      position: relative;
      z-index: 1;
      max-width: 680px;
    }

    .final-cta-copy .section-kicker {
      color: var(--warm);
    }

    .final-cta-copy h2 {
      margin: 12px 0;
      color: var(--surface);
      font-size: clamp(32px, 5vw, 58px);
      line-height: .98;
      letter-spacing: 0;
    }

    .final-cta-copy h2 span {
      color: var(--accent);
    }

    .final-cta-copy p {
      margin: 0;
      max-width: 560px;
      color: rgba(255, 255, 255, .72);
      font-size: clamp(15px, 1.5vw, 18px);
      line-height: 1.6;
    }

    .final-cta-actions {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
      justify-items: end;
      min-width: min(100%, 330px);
    }

    .final-cta-button {
      min-height: 58px;
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border-radius: var(--radius);
      padding: 0 22px;
      background: var(--warm);
      color: var(--fg);
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      box-shadow: 0 18px 40px rgba(255, 193, 6, .2);
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .final-cta-button:hover {
      background: #ffd84a;
      box-shadow: 0 22px 48px rgba(255, 193, 6, .28);
      transform: translateY(-2px);
    }

    .final-cta-button svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .final-cta-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .72);
      font-size: 12px;
      line-height: 1.4;
      text-align: right;
    }

    .final-cta-note svg {
      width: 17px;
      height: 17px;
      flex: 0 0 auto;
      stroke: var(--accent);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .locations-page {
      display: grid;
      gap: var(--section-y-compact);
      padding: 56px 0 72px;
    }

    .service-page {
      display: grid;
      gap: var(--section-y-compact);
      padding: 56px 0 72px;
    }

    .city-landing {
      display: block;
      padding-bottom: 0;
    }

    .city-hero {
      min-height: calc(100vh - 72px);
      padding-bottom: var(--section-y-compact);
    }

    .city-landing,
    .city-landing * {
      min-width: 0;
    }

    .city-hero .config-card {
      align-self: start;
    }

    .service-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 28px;
      padding-bottom: 30px;
      border-bottom: 1px solid var(--border);
    }

    .service-hero h1 {
      max-width: 860px;
    }

    .service-price-section,
    .service-copy-grid {
      display: grid;
      gap: 18px;
    }

    .city-landing .service-price-section {
      padding-top: var(--section-y-compact);
      padding-bottom: var(--section-y-compact);
    }

    .service-price-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .service-price-card {
      display: grid;
      gap: 12px;
      align-content: start;
      min-height: 230px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 22px;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, .94) 0 58%, rgba(219, 245, 255, .48) 100%),
        rgba(255, 255, 255, .86);
      box-shadow: 0 16px 36px rgba(23, 23, 27, .06);
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .service-price-card:hover {
      border-color: rgba(48, 196, 255, .5);
      transform: translateY(-2px);
      box-shadow: 0 24px 64px rgba(23, 23, 27, .1);
    }

    .service-price-card img {
      width: 54px;
      height: 54px;
      object-fit: contain;
    }

    .service-price-card h3 {
      margin: 0;
      font-size: 20px;
      line-height: 1.18;
    }

    .service-price-card p {
      margin: 0;
      color: var(--accent-strong);
      font-size: 28px;
      line-height: 1;
    }

    .service-price-card span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }

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

    .service-copy-grid article {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      background: var(--surface);
    }

    .service-copy-grid h2 {
      margin: 0 0 12px;
      font-size: 24px;
      line-height: 1.15;
    }

    .service-copy-grid p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.62;
    }

    .city-copy-grid {
      margin: var(--section-y-compact) 0;
    }

    .city-copy-grid article {
      position: relative;
      overflow: hidden;
      padding: clamp(24px, 3vw, 34px);
      background:
        radial-gradient(circle at 92% 18%, rgba(48, 196, 255, .14), transparent 28%),
        rgba(255, 255, 255, .9);
      box-shadow: 0 22px 62px rgba(23, 23, 27, .07);
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .city-copy-grid article:before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: linear-gradient(180deg, var(--accent), var(--warm));
    }

    .city-copy-grid article:hover {
      border-color: rgba(48, 196, 255, .46);
      transform: translateY(-2px);
      box-shadow: 0 28px 74px rgba(23, 23, 27, .1);
    }

    .city-copy-grid article > span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--accent-strong);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .city-copy-grid article > span:before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--warm);
    }

    .city-benefit-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: center;
      gap: 0;
      margin: var(--section-y-compact) 0;
      border: 1px solid rgba(230, 230, 230, .82);
      border-radius: var(--radius);
      padding: clamp(22px, 3vw, 34px);
      background: rgba(255, 255, 255, .82);
      box-shadow: 0 24px 72px rgba(48, 196, 255, .1);
    }

    .city-benefit-strip div {
      min-height: 58px;
      display: grid;
      grid-template-columns: 46px minmax(0, 1fr);
      align-items: center;
      gap: 18px;
      padding: 0 clamp(16px, 3vw, 36px);
      border-right: 1px solid var(--border);
    }

    .city-benefit-strip div:last-child {
      border-right: 0;
    }

    .city-benefit-strip svg {
      width: 42px;
      height: 42px;
      stroke: var(--warm);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .city-benefit-strip strong {
      color: var(--fg);
      font-size: clamp(17px, 1.8vw, 25px);
      font-weight: 600;
      line-height: 1.16;
    }

    .city-area-panel {
      display: grid;
      gap: 26px;
      border-radius: var(--radius);
      padding: clamp(28px, 4vw, 48px);
      background:
        radial-gradient(circle at 88% 12%, rgba(255, 193, 6, .12), transparent 26%),
        linear-gradient(120deg, rgba(255, 255, 255, .94) 0 58%, rgba(219, 245, 255, .62) 100%);
      border: 1px solid rgba(230, 230, 230, .86);
      color: var(--fg);
      box-shadow: 0 24px 74px rgba(48, 196, 255, .1);
    }

    .city-area-panel h2 {
      max-width: 980px;
      margin: 0;
      color: var(--fg);
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 600;
      line-height: 1.08;
    }

    .city-area-panel h2 span {
      color: var(--accent-strong);
    }

    .city-area-panel p {
      max-width: 720px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: clamp(15px, 1.5vw, 19px);
      line-height: 1.58;
    }

    .city-area-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .city-area-chips span {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      border-radius: 999px;
      padding: 0 22px;
      background: rgba(219, 245, 255, .74);
      color: var(--accent-strong);
      font-size: 15px;
      font-weight: 600;
      box-shadow: inset 0 0 0 1px rgba(48, 196, 255, .16);
    }

    .city-area-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding-top: 2px;
    }

    .city-area-links a {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(23, 23, 27, .08);
      border-radius: var(--radius);
      padding: 0 16px;
      background: rgba(255, 255, 255, .78);
      color: var(--fg);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      box-shadow: 0 12px 28px rgba(23, 23, 27, .06);
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .city-area-links a:hover {
      border-color: rgba(48, 196, 255, .42);
      transform: translateY(-1px);
      box-shadow: 0 16px 34px rgba(23, 23, 27, .09);
    }

    .locations-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 28px;
      padding-bottom: 30px;
      border-bottom: 1px solid var(--border);
    }

    .locations-hero h1 {
      max-width: 780px;
    }

    .locations-cta {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 190, 10, .52);
      border-radius: var(--radius);
      padding: 0 18px;
      background: linear-gradient(135deg, #ffd84a, var(--warm));
      color: var(--fg);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 12px 28px rgba(255, 193, 6, .18);
    }

    .locations-list,
    .locations-region {
      display: grid;
    }

    .locations-list {
      gap: 42px;
    }

    .locations-region {
      gap: 18px;
    }

    .locations-region-head span {
      display: block;
      color: var(--subtle);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .locations-region-head h2 {
      margin: 5px 0 0;
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.08;
    }

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

    .location-card {
      display: grid;
      gap: 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      background: rgba(255, 255, 255, .82);
      box-shadow: 0 16px 36px rgba(23, 23, 27, .06);
    }

    .location-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .location-card h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.15;
    }

    .location-card-head span {
      flex: 0 0 auto;
      border: 1px solid rgba(48, 196, 255, .25);
      border-radius: var(--radius);
      padding: 6px 9px;
      background: var(--accent-soft);
      color: var(--accent-strong);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
    }

    .location-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .location-links a,
    .location-links span {
      border: 1px solid rgba(48, 196, 255, .25);
      border-radius: var(--radius);
      padding: 8px 10px;
      background: var(--surface);
      color: var(--fg);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
    }

    .location-links span {
      border-color: var(--border);
      color: var(--muted);
      background: rgba(255, 255, 255, .52);
    }

    .location-nearby {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .location-nearby strong {
      color: var(--fg-soft);
    }

    .locations-faq {
      display: grid;
      gap: 22px;
      padding-top: 10px;
    }

    .locations-faq h2 {
      margin: 0;
      font-size: clamp(28px, 3.2vw, 42px);
      line-height: 1.08;
    }

    .locations-faq-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .locations-faq-grid article {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      background: var(--surface);
    }

    .locations-faq-grid h3 {
      margin: 0 0 10px;
      font-size: 17px;
    }

    .locations-faq-grid p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .site-footer {
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 56px 0 104px;
      background:
        radial-gradient(circle at 8% 18%, rgba(48, 196, 255, .1), transparent 26%),
        radial-gradient(circle at 92% 12%, rgba(255, 193, 6, .08), transparent 24%),
        #17171b;
      color: rgba(255, 255, 255, .76);
    }

    .footer-inner {
      position: relative;
      z-index: 1;
      width: min(1240px, calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, .9fr) repeat(4, minmax(140px, 1fr));
      gap: clamp(24px, 4vw, 56px);
      align-items: start;
    }

    .footer-brand {
      display: grid;
      gap: 18px;
      color: rgba(255, 255, 255, .66);
      font-size: 13px;
      line-height: 1.5;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      color: var(--surface);
      text-decoration: none;
      font-size: 22px;
      font-weight: 600;
      line-height: 1;
      transition: opacity .18s ease, transform .18s ease;
    }

    .footer-logo:hover {
      opacity: .92;
      transform: translateY(-1px);
    }

    .footer-logo .brand-mark {
      border-color: rgba(48, 196, 255, .38);
      background:
        radial-gradient(circle at 88% 18%, rgba(255, 190, 10, .28), transparent 38%),
        linear-gradient(135deg, rgba(227, 247, 255, .98), rgba(255, 255, 255, .92));
      box-shadow: 0 16px 34px rgba(48, 196, 255, .12);
    }

    .footer-logo .brand-name {
      color: var(--surface);
    }

    .footer-logo .brand-name span {
      color: var(--accent);
    }

    .footer-brand em {
      display: block;
      max-width: 300px;
      color: rgba(255, 255, 255, .82);
      font-style: normal;
      font-weight: 600;
    }

    .footer-contact-mobile {
      display: none;
    }

    .footer-hours {
      display: grid;
      gap: 8px;
    }

    .footer-hours div {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      max-width: 280px;
    }

    .footer-contact-row {
      display: grid;
      gap: 5px;
    }

    .footer-label {
      color: var(--accent);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .footer-value {
      color: rgba(255, 255, 255, .9);
      font-weight: 600;
      text-decoration: none;
      transition: color .18s ease;
    }

    a.footer-value:hover {
      color: var(--accent);
    }

    .footer-col {
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .footer-col summary {
      list-style: none;
    }

    .footer-col summary::-webkit-details-marker {
      display: none;
    }

    .footer-col h3,
    .footer-col summary {
      margin: 0;
      color: var(--accent);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .footer-col a,
    .footer-col span {
      color: rgba(255, 255, 255, .76);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.35;
    }

    .footer-col a {
      width: fit-content;
      transition: color .18s ease, transform .18s ease;
    }

    .footer-col a:hover {
      color: var(--accent);
      transform: translateX(3px);
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-places {
      display: grid;
      gap: 8px;
      margin-top: 8px;
    }

    .footer-place-list {
      max-width: 340px;
      color: rgba(255, 255, 255, .76);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.5;
    }

    .footer-place-list a {
      color: var(--accent);
      text-decoration: none;
      white-space: nowrap;
      transition: color .18s ease;
    }

    .footer-place-list a:hover {
      color: var(--warm);
    }

    .footer-bottom {
      position: relative;
      z-index: 1;
      width: min(1240px, calc(100% - 48px));
      margin: 42px auto 0;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center;
      gap: 18px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 20px;
      color: rgba(255, 255, 255, .48);
      font-size: 12px;
    }

    .footer-copy {
      display: grid;
      gap: 5px;
    }

    .footer-powered {
      color: rgba(255, 255, 255, .62);
      font-weight: 600;
    }

    .footer-powered strong {
      color: var(--surface);
    }

    .footer-legal {
      display: flex;
      justify-content: center;
      gap: 18px;
      color: rgba(255, 255, 255, .6);
      font-weight: 600;
    }

    .footer-legal a {
      color: inherit;
      text-decoration: none;
      transition: color .18s ease;
    }

    .footer-legal a:hover {
      color: var(--surface);
    }

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

    .footer-socials a {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 50%;
      color: var(--surface);
      text-decoration: none;
      transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
    }

    .footer-socials a svg {
      width: 16px;
      height: 16px;
      display: block;
      fill: currentColor;
    }

    .footer-socials a:hover {
      border-color: rgba(48, 196, 255, .42);
      background: rgba(48, 196, 255, .12);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .footer-float-mail {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--accent);
      color: var(--fg);
      box-shadow: 0 18px 38px rgba(48, 196, 255, .22);
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .footer-float-mail:hover {
      background: var(--warm);
      box-shadow: 0 22px 46px rgba(255, 193, 6, .22);
      transform: translateY(-2px);
    }

    .legal-page {
      width: min(1040px, calc(100% - 40px));
      margin: 0 auto;
      padding: 56px 0 76px;
    }

    .legal-hero {
      display: grid;
      gap: 16px;
      margin-bottom: 28px;
    }

    .legal-hero h1 {
      max-width: 860px;
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(38px, 5vw, 58px);
      line-height: 1.04;
      font-weight: 600;
      letter-spacing: 0;
    }

    .legal-lead {
      max-width: 820px;
      margin: 0;
      color: var(--fg-soft);
      font-size: 18px;
      line-height: 1.65;
    }

    .legal-notice {
      max-width: 920px;
      margin: 0;
      border: 1px solid rgba(255, 193, 6, .34);
      border-radius: var(--radius);
      padding: 16px;
      background: rgba(255, 245, 204, .62);
      color: var(--fg-soft);
      line-height: 1.55;
    }

    .legal-card {
      display: grid;
      gap: 24px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: clamp(22px, 4vw, 44px);
      background: rgba(255, 255, 255, .92);
      box-shadow: var(--shadow);
    }

    .legal-meta {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .legal-section {
      display: grid;
      gap: 10px;
      min-width: 0;
    }

    .legal-section h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 22px;
      line-height: 1.25;
      font-weight: 600;
    }

    .legal-section p,
    .legal-section li {
      max-width: 100%;
      margin: 0;
      color: var(--fg-soft);
      font-size: 16px;
      line-height: 1.72;
      overflow-wrap: anywhere;
    }

    .legal-section ul {
      display: grid;
      gap: 8px;
      margin: 0;
      padding-left: 20px;
    }

    .footer-float-mail svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .confirmation-page {
      background:
        radial-gradient(circle at 16% 10%, rgba(48, 196, 255, .13), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(245, 247, 253, .96));
    }

    .confirmation-hero {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
      padding: clamp(64px, 8vw, 112px) 0 34px;
    }

    .confirmation-shell {
      max-width: 840px;
      display: grid;
      gap: 18px;
    }

    .confirmation-status {
      width: 62px;
      height: 62px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(48, 196, 255, .42);
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(219, 245, 255, .96), rgba(255, 255, 255, .98));
      color: var(--accent-strong);
      box-shadow: 0 18px 42px rgba(48, 196, 255, .16);
    }

    .confirmation-status svg {
      width: 32px;
      height: 32px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .confirmation-kicker {
      margin: 0;
      color: var(--accent-strong);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .confirmation-hero h1,
    .confirmation-contact h2 {
      margin: 0;
      color: var(--fg);
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.04;
      font-weight: 600;
      letter-spacing: 0;
    }

    .confirmation-number {
      margin: 4px 0 0;
      color: var(--fg-soft);
      font-size: 18px;
      line-height: 1.55;
    }

    .confirmation-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 10px;
    }

    .confirmation-actions a,
    .confirmation-contact-cards a {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      padding: 0 20px;
      text-decoration: none;
      font-weight: 600;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .confirmation-primary {
      background: var(--fg);
      color: var(--surface);
      box-shadow: 0 18px 34px rgba(23, 23, 27, .14);
    }

    .confirmation-secondary {
      border: 1px solid rgba(23, 23, 27, .12);
      background: rgba(255, 255, 255, .8);
      color: var(--fg);
    }

    .confirmation-actions a:hover,
    .confirmation-contact-cards a:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 36px rgba(23, 23, 27, .12);
    }

    .confirmation-next,
    .confirmation-contact {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
      padding: 34px 0;
    }

    .confirmation-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .confirmation-grid article,
    .confirmation-contact {
      border: 1px solid rgba(23, 23, 27, .08);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .92);
      box-shadow: var(--shadow);
    }

    .confirmation-grid article {
      display: grid;
      gap: 12px;
      padding: 22px;
    }

    .confirmation-grid span {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      background: var(--accent-soft);
      color: var(--accent-strong);
      font-weight: 600;
    }

    .confirmation-grid h2 {
      margin: 0;
      font-size: 20px;
      line-height: 1.25;
    }

    .confirmation-grid p {
      margin: 0;
      color: var(--fg-soft);
      line-height: 1.62;
    }

    .confirmation-contact {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
      gap: 22px;
      align-items: start;
      margin-bottom: 70px;
      padding: clamp(24px, 4vw, 36px);
    }

    .confirmation-contact h2 {
      max-width: 620px;
      margin-top: 8px;
      font-size: clamp(28px, 3vw, 42px);
    }

    .confirmation-contact-cards,
    .confirmation-hours {
      display: grid;
      gap: 10px;
    }

    .confirmation-contact-cards a {
      min-width: 0;
      flex-direction: column;
      align-items: flex-start;
      border: 1px solid rgba(48, 196, 255, .26);
      background: rgba(219, 245, 255, .48);
      color: var(--fg);
    }

    .confirmation-contact-cards span,
    .confirmation-hours span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    .confirmation-contact-cards strong {
      max-width: 100%;
      overflow-wrap: anywhere;
      font-size: 18px;
    }

    .confirmation-hours {
      grid-column: 2;
      border-top: 1px solid rgba(23, 23, 27, .08);
      padding-top: 12px;
    }

    .confirmation-hours div {
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

    .confirmation-hours strong {
      color: var(--fg);
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 220;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(23, 23, 27, .48);
      backdrop-filter: blur(10px);
    }

    .modal.is-open {
      display: flex;
    }

    .modal-dialog {
      width: min(100%, 720px);
      max-height: min(860px, calc(100vh - 48px));
      overflow: auto;
      border: 1px solid rgba(230, 230, 230, .88);
      border-radius: var(--radius);
      background: var(--surface);
      box-shadow: 0 30px 80px rgba(23, 23, 27, .24);
    }

    .modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      padding: 28px 28px 18px;
      border-bottom: 1px solid var(--border);
      text-align: center;
    }

    .modal-head > div {
      flex: 1;
    }

    .modal-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin: 0 auto 12px;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent-strong);
    }

    .modal-head h3 {
      margin: 0;
      font-size: 32px;
      font-weight: 600;
      line-height: 1.12;
    }

    .modal-head h3 span {
      color: var(--accent-strong);
    }

    .modal-head p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .modal-close {
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: var(--surface-soft);
      color: var(--fg);
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }

    .review-form {
      display: grid;
      gap: 16px;
      padding: 20px 28px 28px;
    }

    .review-form.is-submitting {
      opacity: .72;
      pointer-events: none;
    }

    .review-fields {
      display: grid;
      gap: 16px;
    }

    .review-fields[hidden],
    .review-success[hidden] {
      display: none;
    }

    .review-success {
      display: grid;
      justify-items: center;
      gap: 12px;
      border: 1px solid rgba(56, 173, 125, .24);
      border-radius: var(--radius);
      padding: 30px 22px;
      background:
        radial-gradient(circle at 50% 0%, rgba(48, 196, 255, .14), transparent 34%),
        rgba(226, 248, 236, .72);
      text-align: center;
    }

    .review-success-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #21a66a;
      color: var(--surface);
      box-shadow: 0 16px 34px rgba(33, 166, 106, .22);
    }

    .review-success-icon svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .review-success strong {
      color: var(--fg);
      font-size: 20px;
      font-weight: 600;
      line-height: 1.2;
    }

    .review-success p {
      max-width: 42ch;
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .rating-picker {
      display: grid;
      gap: 10px;
      justify-items: center;
      border-radius: var(--radius);
      padding: 20px;
      background: linear-gradient(135deg, rgba(219, 245, 255, .58), rgba(255, 245, 204, .22));
    }

    .rating-picker span {
      color: var(--fg);
      font-size: 13px;
      font-weight: 600;
    }

    .rating-stars {
      display: flex;
      gap: 10px;
    }

    .rating-star {
      width: 48px;
      height: 48px;
      border: 0;
      background: transparent;
      color: rgba(23, 23, 27, .13);
      cursor: pointer;
      font-size: 38px;
      line-height: 1;
    }

    .rating-star.is-active {
      color: var(--warm);
    }

    .review-form textarea.field {
      min-height: 118px;
    }

    .review-service-picker {
      display: grid;
      gap: 10px;
    }

    .review-service-picker > span,
    .review-field-label {
      color: var(--fg);
      font-size: 13px;
      font-weight: 600;
    }

    .review-service-options {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .review-service-option {
      position: relative;
      display: grid;
      gap: 8px;
      min-height: 128px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 12px;
      background: var(--surface-soft);
      cursor: pointer;
    }

    .review-service-option input {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
    }

    .review-service-option:has(input:checked) {
      border-color: rgba(48, 196, 255, .75);
      background: var(--accent-soft);
      box-shadow: 0 14px 30px rgba(48, 196, 255, .12);
    }

    .review-service-option img {
      width: 100%;
      height: 68px;
      object-fit: contain;
    }

    .review-service-option span {
      color: var(--fg);
      font-size: 13px;
      font-weight: 600;
      text-align: center;
    }

    .review-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .review-form-field {
      display: grid;
      gap: 8px;
    }

    .review-form-field.wide {
      grid-column: 1 / -1;
    }

    .review-form-field.honeypot {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .review-form-message {
      min-height: 18px;
      margin: -4px 0 0;
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
      text-align: center;
    }

    .review-form-message:empty {
      display: none;
    }

    .review-form-message[data-state="error"] {
      color: var(--danger);
    }

    .modal-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
    }

    .modal-trust svg {
      width: 16px;
      height: 16px;
      stroke: var(--accent-strong);
      stroke-width: 2;
      fill: none;
    }

    .config-card {
      position: sticky;
      top: 96px;
      width: min(100%, 560px);
      justify-self: end;
      overflow: hidden;
      border: 1px solid rgba(230, 230, 230, .95);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .98);
      box-shadow: var(--shadow);
    }

    .config-head {
      padding: 22px 22px 18px;
      border-bottom: 1px solid var(--border);
    }

    .config-kicker {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
      color: var(--subtle);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .config-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--fg-soft);
      letter-spacing: .06em;
    }

    .config-status:before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .config-head h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -.025em;
    }

    .config-head p {
      max-width: 44ch;
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .config-body {
      counter-reset: form-step;
      padding: 20px 22px 22px;
    }

    .config-group {
      counter-increment: form-step;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }

    .config-group:first-child {
      padding-top: 0;
    }

    .group-label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .group-label h3 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -.01em;
    }

    .group-label h3:before {
      content: counter(form-step);
      width: 34px;
      height: 34px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 34px;
      border: 1px solid rgba(48, 196, 255, .72);
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(219, 245, 255, .96), rgba(179, 235, 255, .78));
      color: var(--accent-strong);
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(48, 196, 255, .18);
    }

    .group-label span {
      color: var(--subtle);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .segmented {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

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

    .option,
    .chip,
    .quantity,
    .counter button,
    .submit {
      cursor: pointer;
    }

    .option,
    .chip {
      min-height: 42px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface);
      color: var(--fg-soft);
      font-size: 13px;
      font-weight: 600;
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }

    .option.is-active,
    .chip.is-active {
      border-color: rgba(21, 151, 213, .32);
      background: var(--accent-soft);
      color: var(--fg);
    }

    .option:hover,
    .chip:hover {
      border-color: rgba(48, 196, 255, .42);
      background: rgba(219, 245, 255, .56);
      transform: translateY(-1px);
    }

    .option:active,
    .chip:active,
    .submit:active {
      transform: translateY(1px);
    }

    .quantity-list {
      display: grid;
      gap: 8px;
    }

    .config-group.is-collapsed,
    .config-group.is-hidden,
    .quantity.is-hidden {
      display: none;
    }

    .quantity {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 12px;
      min-height: 64px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 12px;
      background: var(--surface);
    }

    .quantity-main {
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .quantity-main img {
      width: 44px;
      height: 44px;
      object-fit: contain;
      border-radius: 8px;
      background: rgba(219, 245, 255, .45);
      padding: 5px;
    }

    .quantity-main div {
      min-width: 0;
    }

    .quantity-main b {
      display: block;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -.01em;
      line-height: 1.25;
    }

    .quantity-main small {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .quantity-main small span {
      display: block;
    }

    .quantity-main small .service-detail {
      color: var(--accent-strong);
      font-weight: 600;
    }

    .counter {
      display: grid;
      grid-template-columns: 30px 28px 30px;
      align-items: center;
      justify-items: center;
      gap: 4px;
      font-size: 14px;
      font-weight: 600;
    }

    .counter button {
      width: 30px;
      height: 30px;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: var(--surface-soft);
      color: var(--fg);
      font-size: 17px;
      line-height: 1;
      transition: background .18s ease, transform .18s ease;
    }

    .counter button:hover {
      background: var(--accent-soft);
    }

    .counter button:active {
      transform: translateY(1px);
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chip {
      padding: 0 13px;
    }

    .chip-price {
      margin-left: 6px;
      color: var(--accent-strong);
      font-weight: 600;
    }

    .mattress-addon-group {
      padding-top: 16px;
    }

    .mattress-addon-card {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
      width: 100%;
      border: 1px solid rgba(48, 196, 255, .36);
      border-radius: var(--radius);
      padding: 14px;
      background: linear-gradient(135deg, rgba(219, 245, 255, .72), rgba(255, 255, 255, .96));
      color: var(--fg);
      text-align: left;
      cursor: pointer;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .mattress-addon-card:hover {
      border-color: rgba(21, 151, 213, .52);
      box-shadow: 0 14px 30px rgba(48, 196, 255, .14);
      transform: translateY(-1px);
    }

    .mattress-addon-card.is-active {
      border-color: rgba(21, 151, 213, .72);
      background: linear-gradient(135deg, rgba(190, 238, 255, .88), rgba(255, 251, 226, .92));
      box-shadow: 0 14px 32px rgba(48, 196, 255, .18);
    }

    .mattress-addon-icon {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border-radius: 10px;
      background: var(--surface);
      color: var(--accent-strong);
      font-size: 24px;
      font-weight: 700;
      box-shadow: inset 0 0 0 1px rgba(48, 196, 255, .24);
    }

    .mattress-addon-card.is-active .mattress-addon-icon {
      background: var(--accent);
      color: #fff;
    }

    .mattress-addon-card strong,
    .mattress-addon-card small {
      display: block;
    }

    .mattress-addon-card strong {
      font-size: 14px;
      font-weight: 700;
    }

    .mattress-addon-card small {
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .mattress-addon-card em {
      color: var(--accent-strong);
      font-style: normal;
      font-weight: 800;
      white-space: nowrap;
    }

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

    .field-grid .wide {
      grid-column: 1 / -1;
    }

    .field,
    select.field {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      min-height: 46px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0 12px;
      background: var(--surface);
      color: var(--fg);
      font-size: 14px;
      font-weight: 600;
    }

    .field::placeholder {
      color: var(--subtle);
    }

    .reveal-panel {
      display: none;
      margin-top: 12px;
    }

    .reveal-panel.is-visible {
      display: block;
    }

    .booking-card {
      position: relative;
      margin-top: 12px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface);
      overflow: hidden;
    }

    .booking-card.is-loading .calendar-grid,
    .booking-card.is-loading .slot-panel {
      opacity: .38;
      pointer-events: none;
      filter: saturate(.75);
      animation: calendar-loading-sheen 1.4s ease-in-out infinite;
    }

    .booking-card.is-loading::before,
    .booking-card.is-loading::after {
      position: absolute;
      left: 50%;
      top: 47%;
      z-index: 2;
    }

    .booking-card.is-loading::before {
      content: "";
      z-index: 3;
      width: 18px;
      height: 18px;
      margin-left: -112px;
      margin-top: -9px;
      border: 2px solid rgba(48, 196, 255, .22);
      border-top-color: var(--accent-strong);
      border-right-color: var(--warm);
      border-radius: 999px;
      animation: calendar-spinner .8s linear infinite;
    }

    .booking-card.is-loading::after {
      content: "Verfuegbarkeit wird geprueft...";
      z-index: 2;
      transform: translate(-50%, -50%);
      padding: 10px 14px;
      padding-left: 40px;
      border: 1px solid rgba(48, 196, 255, .35);
      border-radius: 999px;
      background: rgba(255, 255, 255, .94);
      color: var(--fg-soft);
      font-size: 12px;
      font-weight: 600;
      box-shadow: 0 14px 34px rgba(19, 19, 24, .12);
      white-space: nowrap;
    }

    @keyframes calendar-spinner {
      to { transform: rotate(360deg); }
    }

    @keyframes calendar-loading-sheen {
      0%, 100% { opacity: .32; }
      50% { opacity: .48; }
    }

    .booking-head {
      display: grid;
      gap: 8px;
      padding: 16px;
      background: linear-gradient(135deg, rgba(48, 196, 255, .16), rgba(255, 193, 6, .12));
      border-bottom: 1px solid var(--border);
    }

    .booking-head b {
      font-size: 15px;
      font-weight: 600;
    }

    .booking-head span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .calendar-controls {
      display: grid;
      grid-template-columns: 42px 1fr 42px;
      align-items: center;
      gap: 10px;
      padding: 14px 16px 6px;
      text-align: center;
    }

    .calendar-controls button {
      width: 42px;
      height: 42px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface-soft);
      color: var(--fg);
      cursor: pointer;
      font-size: 20px;
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }

    .calendar-controls button:hover {
      border-color: rgba(48, 196, 255, .42);
      background: var(--accent-soft);
      transform: translateY(-1px);
    }

    .calendar-controls strong {
      font-size: 18px;
      font-weight: 600;
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 6px;
      padding: 12px 16px 16px;
    }

    .calendar-dayname {
      color: var(--subtle);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      text-align: center;
      text-transform: uppercase;
    }

    .calendar-day {
      min-height: 42px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      background: var(--surface-soft);
      color: var(--fg-soft);
      cursor: default;
      font-size: 13px;
      font-weight: 600;
      transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .calendar-day.is-available,
    .calendar-day.is-partial {
      cursor: pointer;
    }

    .calendar-day.is-available:not(:disabled):hover {
      border-color: rgba(48, 196, 255, .52);
      background: rgba(219, 245, 255, .6);
      box-shadow: 0 10px 20px rgba(48, 196, 255, .1);
      transform: translateY(-1px);
    }

    .calendar-day.is-partial:not(:disabled):hover {
      border-color: rgba(255, 193, 6, .72);
      background: rgba(255, 245, 204, .86);
      box-shadow: 0 10px 20px rgba(255, 193, 6, .14);
      transform: translateY(-1px);
    }

    .calendar-day.is-muted {
      color: var(--subtle);
      cursor: default;
    }

    .calendar-day.is-available {
      border-color: rgba(48, 196, 255, .45);
      background: rgba(48, 196, 255, .12);
      color: var(--accent-strong);
    }

    .calendar-day.is-partial {
      position: relative;
      border-color: rgba(255, 193, 6, .55);
      background: var(--warm-soft);
      color: #8f6500;
    }

    .calendar-day.is-partial:after {
      content: attr(data-busy-count);
      position: absolute;
      right: -4px;
      bottom: -5px;
      min-width: 17px;
      height: 17px;
      display: grid;
      place-items: center;
      border: 2px solid var(--surface);
      border-radius: 999px;
      background: var(--warm);
      color: var(--fg);
      font-size: 10px;
      font-weight: 600;
      line-height: 1;
      box-shadow: 0 7px 14px rgba(255, 193, 6, .24);
    }

    .calendar-day.is-closed {
      border-color: rgba(19, 19, 24, .08);
      background: rgba(19, 19, 24, .04);
      color: var(--subtle);
      cursor: default;
    }

    .calendar-day.is-zone-locked {
      border-color: rgba(233, 36, 52, .34);
      background: rgba(233, 36, 52, .1);
      color: var(--danger);
      cursor: not-allowed;
    }

    .calendar-day.is-selected {
      background: linear-gradient(135deg, var(--accent-strong), var(--accent));
      border-color: rgba(21, 151, 213, .7);
      color: var(--surface);
      box-shadow: 0 12px 24px rgba(48, 196, 255, .22);
    }

    .calendar-day.is-selected:not(:disabled):hover {
      border-color: rgba(48, 196, 255, .72);
      background: linear-gradient(135deg, var(--fg) 0%, #24242b 100%);
      color: var(--surface);
      box-shadow: 0 12px 24px rgba(19, 19, 24, .16), 0 0 0 3px rgba(48, 196, 255, .14);
      transform: translateY(-1px);
    }

    .calendar-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      padding: 0 16px 16px;
      border-bottom: 1px solid var(--border);
    }

    .calendar-legend span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 600;
      line-height: 1.2;
    }

    .legend-swatch {
      width: 12px;
      height: 12px;
      border: 1px solid transparent;
      border-radius: 4px;
      flex: 0 0 auto;
    }

    .legend-swatch.is-available {
      border-color: rgba(48, 196, 255, .45);
      background: rgba(48, 196, 255, .12);
    }

    .legend-swatch.is-partial {
      border-color: rgba(255, 193, 6, .55);
      background: var(--warm-soft);
    }

    .legend-swatch.is-zone-locked {
      border-color: rgba(233, 36, 52, .34);
      background: rgba(233, 36, 52, .1);
    }

    .legend-swatch.is-closed {
      border-color: rgba(19, 19, 24, .08);
      background: rgba(19, 19, 24, .04);
    }

    .slot-panel {
      display: none;
      padding: 18px 16px 16px;
    }

    .slot-panel.is-visible {
      display: grid;
      gap: 8px;
    }

    .slot-panel h4 {
      margin: 0 0 12px;
      font-size: 13px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .time-slot {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      align-items: center;
      gap: 10px;
      min-height: 56px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 10px;
      background: var(--surface-soft);
      color: var(--fg);
      cursor: pointer;
      text-align: left;
      transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .time-slot:not(:disabled):hover {
      border-color: rgba(48, 196, 255, .44);
      background: rgba(219, 245, 255, .52);
      box-shadow: 0 12px 26px rgba(48, 196, 255, .1);
      transform: translateY(-1px);
    }

    .time-slot:disabled {
      cursor: default;
      opacity: .58;
    }

    .time-slot.is-booked,
    .time-slot.is-unavailable {
      border-color: rgba(19, 19, 24, .08);
      background:
        repeating-linear-gradient(45deg, rgba(19, 19, 24, .035) 0 8px, rgba(19, 19, 24, .06) 8px 16px),
        var(--surface-soft);
      color: var(--subtle);
    }

    .time-slot.is-booked em,
    .time-slot.is-unavailable em {
      color: var(--subtle);
    }

    .time-slot.is-selected {
      border-color: rgba(21, 151, 213, .72);
      background: linear-gradient(135deg, rgba(219, 245, 255, .98), rgba(255, 245, 204, .72));
      box-shadow: 0 12px 28px rgba(48, 196, 255, .16);
    }

    .time-slot strong {
      font-size: 18px;
      font-weight: 600;
    }

    .time-slot span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .time-slot em {
      color: var(--accent-strong);
      font-style: normal;
      font-size: 12px;
      font-weight: 600;
    }

    .appointment-card {
      display: none;
      margin-top: 10px;
      border: 1px solid rgba(21, 151, 213, .55);
      border-radius: var(--radius);
      padding: 16px 18px;
      background:
        linear-gradient(135deg, rgba(219, 245, 255, .94), rgba(255, 245, 204, .62)),
        var(--surface);
      box-shadow: 0 14px 32px rgba(48, 196, 255, .14);
    }

    .appointment-card.is-visible {
      display: grid;
      gap: 6px;
    }

    .appointment-card b {
      color: var(--fg);
      font-size: 15px;
      font-weight: 700;
    }

    .appointment-card span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 500;
    }

    .summary {
      margin-top: 18px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface-soft);
      overflow: hidden;
    }

    .summary-top {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: end;
      padding: 18px;
      border-bottom: 1px solid var(--border);
    }

    .summary-label {
      display: block;
      margin-bottom: 8px;
      color: var(--subtle);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .duration {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(48, 196, 255, .34);
      border-radius: 999px;
      padding: 7px 11px;
      background: rgba(219, 245, 255, .66);
      color: var(--fg-soft);
      font-size: 13px;
      font-weight: 600;
    }

    .duration strong {
      color: var(--accent-strong);
      font-weight: 700;
    }

    .price {
      color: var(--fg);
      font-family: var(--font-display);
      font-size: 42px;
      font-weight: 600;
      line-height: .95;
      letter-spacing: -.03em;
    }

    .summary-body {
      padding: 16px 18px 18px;
      display: grid;
      gap: 12px;
    }

    .summary-line {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: var(--muted);
      font-size: 13px;
    }

    .summary-line.is-hidden {
      display: none;
    }

    .summary-line strong {
      color: var(--fg);
      font-weight: 600;
    }

    .selected-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      min-height: 31px;
    }

    .selected-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 27px;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 0 10px;
      background: var(--surface);
      color: var(--fg-soft);
      font-size: 12px;
      font-weight: 600;
    }

    .selected-tags .is-term,
    .selected-tags .is-condition,
    .selected-tags .is-addon,
    .selected-tags .is-info {
      border-color: rgba(48, 196, 255, .34);
      background: rgba(219, 245, 255, .78);
      color: #126f9c;
      box-shadow: 0 8px 18px rgba(48, 196, 255, .09);
    }

    .selected-tags .is-term {
      border-color: rgba(255, 193, 6, .52);
      background: rgba(255, 245, 204, .88);
      color: #7a5700;
    }

    .selected-tags .is-condition {
      border-color: rgba(21, 151, 213, .36);
    }

    .selected-tags .is-addon {
      border-color: rgba(48, 196, 255, .38);
      background: linear-gradient(135deg, rgba(219, 245, 255, .82), rgba(255, 245, 204, .78));
    }

    .selected-tags .is-info {
      border-color: rgba(56, 173, 125, .34);
      background: rgba(226, 248, 236, .82);
      color: #1d7b52;
    }

    .contact-panel {
      margin-top: 4px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .contact-panel .summary-label {
      margin-bottom: 12px;
    }

    .contact-panel .field-grid {
      gap: 9px;
    }

    textarea.field {
      min-height: 78px;
      padding-top: 12px;
      resize: vertical;
      line-height: 1.35;
    }

    .photo-upload {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 10px;
      align-items: start;
      border: 1px dashed rgba(21, 151, 213, .36);
      border-radius: var(--radius);
      padding: 12px;
      background: rgba(219, 245, 255, .42);
      cursor: pointer;
    }

    .photo-upload svg {
      width: 34px;
      height: 34px;
      padding: 7px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .82);
      stroke: var(--accent-strong);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .photo-upload strong {
      display: block;
      margin-bottom: 3px;
      color: var(--fg);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.25;
    }

    .photo-upload span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.42;
    }

    .photo-upload input {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
    }

    .config-card.was-validated .field:required:invalid,
    .config-card.was-validated .field.is-invalid {
      border-color: var(--danger);
      background: rgba(233, 36, 52, .06);
    }

    .submit {
      width: 100%;
      min-height: 54px;
      margin-top: 14px;
      border: 0;
      border-radius: var(--radius);
      background: var(--fg);
      color: var(--surface);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: .02em;
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .submit:after {
      content: "→";
      font-size: 17px;
      line-height: 1;
      transform: translateY(-1px);
      transition: transform .18s ease;
    }

    .submit:hover {
      background: #2b2b30;
      box-shadow: 0 18px 34px rgba(23, 23, 27, .18);
      transform: translateY(-1px);
    }

    .submit:hover:after {
      transform: translate(3px, -1px);
    }

    .submit:disabled,
    .submit.is-loading {
      cursor: wait;
      opacity: 0.78;
      transform: none;
      box-shadow: none;
    }

    .submit.is-loading:after {
      content: "";
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255, 255, 255, 0.42);
      border-top-color: #fff;
      border-radius: 50%;
      transform: none;
      animation: submit-spin 0.8s linear infinite;
    }

    @keyframes submit-spin {
      to {
        transform: rotate(360deg);
      }
    }

    .submit-error {
      margin: 14px 0 0;
      padding: 14px 16px;
      border: 1px solid rgba(255, 66, 66, 0.26);
      border-radius: 14px;
      background: rgba(255, 66, 66, 0.1);
      color: #d92d20;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.35;
      text-align: center;
    }

    .submit-error[hidden] {
      display: none;
    }

    .fineprint {
      margin: 10px 0 0;
      color: var(--subtle);
      text-align: center;
      font-size: 12px;
      line-height: 1.45;
    }

    .mobile-sticky {
      display: none;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *:before,
      *:after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }

      .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
      }
    }

    @media (max-width: 1120px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 42px;
      }

      .config-card {
        position: static;
        width: min(100%, 720px);
        justify-self: start;
      }

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

      .services-intro {
        grid-template-columns: 1fr;
      }

      .results-layout {
        grid-template-columns: 1fr;
      }

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

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

      .process-step:nth-child(2) {
        border-right: 0;
      }

      .process-step:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
      }

      .allergen-panel {
        width: min(100% - 48px, 1240px);
        grid-template-columns: 1fr;
        min-height: 0;
      }

      .allergen-visual {
        min-height: 300px;
      }

      .allergen-visual img {
        right: -4%;
        top: 6px;
        width: min(76vw, 620px);
      }

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

      .area-map {
        min-height: 0;
      }

      .faq-layout {
        grid-template-columns: 1fr;
      }

      .faq-aside {
        position: static;
      }

      .service-hero,
      .locations-hero,
      .locations-faq-grid {
        grid-template-columns: 1fr;
      }

      .city-hero {
        min-height: auto;
        grid-template-columns: 1fr;
      }

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

      .city-benefit-strip {
        grid-template-columns: 1fr;
        padding: 10px 22px;
      }

      .city-benefit-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
      }

      .city-benefit-strip div:last-child {
        border-bottom: 0;
      }

      .service-copy-grid {
        grid-template-columns: 1fr;
      }

      .locations-cta {
        justify-self: start;
      }

      .final-cta-panel {
        grid-template-columns: 1fr;
      }

      .final-cta-actions {
        justify-items: start;
      }

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

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 760px) {
      .legal-page {
        width: min(100% - 28px, 1040px);
        padding: 36px 0 96px;
      }

      .legal-card {
        padding: 20px;
      }

      .legal-hero h1 {
        font-size: 38px;
      }

      .legal-lead {
        font-size: 16px;
      }

      :root {
        --section-y: 44px;
        --section-y-compact: 36px;
        --section-head-gap: 20px;
        --content-gap: 18px;
      }

      .nav-inner,
      main {
        width: min(100% - 28px, 1240px);
      }

      .service-page,
      .locations-page {
        padding: 36px 0 92px;
      }

      .city-landing {
        padding-bottom: 0;
      }

      .city-hero {
        padding: 36px 0 58px;
      }

      .city-landing .city-hero,
      .city-landing .city-copy-grid,
      .city-landing .city-benefit-strip,
      .city-landing .city-area-panel,
      .city-landing .faq-section,
      .city-landing .allergen-section,
      .city-landing .process-section,
      .city-landing .results-section {
        max-width: 100%;
        overflow-x: clip;
      }

      .city-hero h1,
      .city-landing .section-title,
      .city-area-panel h2,
      .city-landing .faq-aside .section-title {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
      }

      .city-hero h1 {
        font-size: clamp(34px, 9.6vw, 46px);
      }

      .city-landing .section-title,
      .city-landing .faq-aside .section-title {
        font-size: clamp(29px, 8.4vw, 40px);
        line-height: 1.08;
      }

      .service-price-grid,
      .locations-grid {
        grid-template-columns: 1fr;
      }

      .service-hero,
      .locations-hero {
        gap: 20px;
      }

      .locations-cta {
        width: 100%;
      }

      .service-price-card {
        min-height: 0;
        padding: 18px;
      }

      .city-area-panel {
        padding: 26px 18px;
      }

      .city-area-panel h2 {
        font-size: clamp(28px, 8.2vw, 38px);
      }

      .city-area-chips span {
        min-height: 38px;
        padding: 0 15px;
        font-size: 13px;
      }

      .city-area-links a {
        width: 100%;
        justify-content: center;
      }

      .location-card {
        padding: 16px;
      }

      .location-card-head {
        align-items: start;
      }

      .nav-links {
        display: none;
      }

      .nav-inner {
        min-height: 66px;
        gap: 12px;
      }

      .nav {
        z-index: 120;
      }

      .brand {
        font-size: 17px;
      }

      .brand-mark {
        width: 46px;
        height: 32px;
      }

      .nav-cta {
        display: none;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
        position: relative;
        z-index: 151;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(23, 23, 27, .10);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .88);
        color: var(--fg);
        box-shadow: 0 10px 24px rgba(23, 23, 27, .08);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
      }

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

      .menu-toggle span:nth-child(1) {
        transform: translateY(-6px);
      }

      .menu-toggle span:nth-child(3) {
        transform: translateY(6px);
      }

      .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg);
      }

      .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
      }

      .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg);
      }

      .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 130;
        display: block;
        background: rgba(23, 23, 27, .30);
        opacity: 0;
        pointer-events: none;
        transition: opacity .30s ease;
      }

      .mobile-menu {
        width: 100%;
        max-height: calc(100dvh - 12px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 140;
        display: grid;
        gap: 16px;
        overflow-y: auto;
        border: 0;
        border-bottom: 1px solid rgba(23, 23, 27, .10);
        border-radius: 0 0 24px 24px;
        padding: calc(16px + env(safe-area-inset-top, 0px)) 14px 18px;
        background:
          radial-gradient(circle at 88% 12%, rgba(255, 193, 6, .24), transparent 34%),
          linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(246, 251, 255, .98));
        box-shadow: 0 28px 70px rgba(23, 23, 27, .18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-104%);
        transform-origin: top center;
        transition:
          opacity .26s ease,
          transform .42s cubic-bezier(.2, .9, .18, 1);
        will-change: transform, opacity;
      }

      .mobile-menu-close {
        width: 38px;
        height: 38px;
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(23, 23, 27, .10);
        border-radius: 50%;
        background: rgba(255, 255, 255, .86);
        color: var(--fg);
        cursor: pointer;
        box-shadow: 0 10px 24px rgba(23, 23, 27, .08);
        -webkit-tap-highlight-color: transparent;
      }

      .mobile-menu-close span {
        width: 16px;
        height: 2px;
        position: absolute;
        border-radius: 999px;
        background: currentColor;
      }

      .mobile-menu-close span:first-child {
        transform: rotate(45deg);
      }

      .mobile-menu-close span:last-child {
        transform: rotate(-45deg);
      }

      .mobile-menu:after {
        content: "";
        width: 48px;
        height: 4px;
        justify-self: center;
        border-radius: 999px;
        background: rgba(23, 23, 27, .14);
      }

      .mobile-menu.is-open,
      .mobile-menu-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
      }

      .mobile-menu.is-open {
        transform: translateY(0);
      }

      body.menu-open .mobile-sticky {
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 28px));
      }

      .mobile-menu-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        padding: 4px 48px 2px 2px;
      }

      .mobile-menu-kicker {
        display: block;
        color: var(--accent-strong);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
      }

      .mobile-menu-title {
        margin-top: 5px;
        color: var(--fg);
        font-size: 18px;
        font-weight: 600;
        line-height: 1.2;
      }

      .mobile-status {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border: 1px solid rgba(48, 196, 255, .25);
        border-radius: 999px;
        padding: 7px 10px;
        background: rgba(219, 245, 255, .72);
        color: var(--accent-strong);
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
      }

      .mobile-status:before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #22b86f;
        box-shadow: 0 0 0 4px rgba(34, 184, 111, .13);
      }

      .mobile-menu-links,
      .mobile-contact-list,
      .mobile-hours {
        display: grid;
        gap: 8px;
      }

      .mobile-menu-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 8px;
        border: 1px solid rgba(23, 23, 27, .07);
        border-radius: 14px;
        background: rgba(255, 255, 255, .72);
      }

      .mobile-menu-links a {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border-radius: 10px;
        padding: 0 10px 0 12px;
        color: var(--fg);
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
      }

      .mobile-menu-links a:first-child {
        grid-column: 1 / -1;
      }

      .mobile-menu-links a:after {
        content: "→";
        color: var(--accent-strong);
        font-size: 17px;
        line-height: 1;
      }

      .mobile-menu-links a:hover {
        background: var(--accent-soft);
      }

      .mobile-contact-list {
        grid-template-columns: 1fr;
      }

      .mobile-contact-card {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(23, 23, 27, .07);
        border-radius: 14px;
        padding: 11px;
        background: rgba(255, 255, 255, .76);
        color: var(--fg);
        text-decoration: none;
      }

      .mobile-contact-card svg {
        width: 38px;
        height: 38px;
        grid-row: 1 / 3;
        border-radius: 12px;
        padding: 9px;
        background: var(--accent-soft);
        color: var(--accent-strong);
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .mobile-contact-card span,
      .mobile-hours span {
        grid-column: 2;
        display: block;
        color: var(--subtle);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .04em;
        text-transform: uppercase;
      }

      .mobile-contact-card strong,
      .mobile-hours strong {
        grid-column: 2;
        display: block;
        min-width: 0;
        overflow-wrap: anywhere;
        color: var(--fg);
        font-size: 14px;
        line-height: 1.3;
      }

      .mobile-hours {
        border: 1px solid rgba(255, 193, 6, .28);
        border-radius: 14px;
        padding: 13px;
        background: rgba(255, 245, 204, .68);
      }

      .mobile-hours-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
      }

      .mobile-hours-row strong {
        white-space: nowrap;
      }

      .mobile-menu-cta {
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        border: 1px solid rgba(255, 190, 10, .52);
        border-radius: 14px;
        padding: 14px 16px;
        background: linear-gradient(135deg, #ffd84a, var(--warm));
        color: var(--fg);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 16px 34px rgba(255, 193, 6, .24);
      }

      .mobile-menu-cta svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .hero {
        min-height: auto;
        padding: 34px 0 var(--section-y-compact);
      }

      .section {
        padding: var(--section-y) 0;
        scroll-margin-top: 76px;
      }

      .section-head,
      .section-title,
      .section-copy {
        min-width: 0;
        max-width: 100%;
      }

      .allergen-section,
      .process-section,
      .area-section {
        width: calc(100% + 28px);
        margin-left: -14px;
        margin-right: -14px;
      }

      .services-section,
      .results-section {
        padding-top: var(--section-y);
        padding-bottom: var(--section-y);
      }

      .services-intro {
        gap: 18px;
        margin-bottom: var(--content-gap);
      }

      .results-layout {
        gap: 24px;
      }

      .result-story {
        gap: 18px;
      }

      h1 {
        max-width: 100%;
        font-size: clamp(34px, 9.2vw, 44px);
        line-height: 1.06;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
      }

      .section-title {
        font-size: clamp(32px, 10vw, 44px);
      }

      .section-copy {
        font-size: 16px;
      }

      .lead {
        font-size: 17px;
      }

      .hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 22px;
      }

      .city-hero .hero-proof {
        gap: 8px;
      }

      .proof-item {
        min-height: 74px;
        grid-template-columns: 34px 1fr;
        gap: 10px;
        padding: 12px;
        align-items: center;
      }

      .proof-icon {
        width: 34px;
        height: 34px;
      }

      .proof-icon svg {
        width: 18px;
        height: 18px;
      }

      .proof-item b {
        margin: 0;
        font-size: 13px;
        line-height: 1.16;
      }

      .proof-item span {
        display: none;
      }

      .city-hero .proof-item {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 8px;
        padding: 10px;
      }

      .city-hero .proof-icon {
        width: 30px;
        height: 30px;
      }

      .city-hero .proof-item b {
        font-size: 12px;
        overflow-wrap: normal;
      }

      .segmented,
      .field-grid,
      .services-grid,
      .service-trust,
      .service-footer,
      .result-perks {
        grid-template-columns: 1fr;
      }

      .results-layout {
        grid-template-columns: 1fr;
      }

      .comparison-slider {
        aspect-ratio: 4 / 3;
        min-height: 0;
      }

      .comparison-slider img {
        object-position: center;
      }

      .slider-handle {
        width: 48px;
        height: 48px;
      }

      .slider-handle svg {
        width: 22px;
        height: 22px;
      }

      .image-label {
        min-height: 24px;
        bottom: 9px;
        padding: 0 9px;
        font-size: 11px;
      }

      .service-card {
        min-height: 220px;
        grid-template-columns: 1fr;
        padding: 18px;
        padding-right: min(42vw, 168px);
      }

      .service-trust,
      .service-footer,
      .result-perks {
        display: none;
      }

      .service-card h3 {
        font-size: 17px;
      }

      .service-art {
        position: absolute;
        right: 10px;
        bottom: 18px;
        width: min(38vw, 160px);
        opacity: .96;
      }

      .results-layout .before-after-card {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        overflow: hidden;
      }

      .results-layout .comparison-slider {
        width: 100%;
        max-width: 100%;
      }

      .result-quote {
        padding: 32px 20px 20px;
      }

      .result-note {
        grid-template-columns: 1fr;
      }

      .result-note span {
        text-align: left;
      }

      .process-head {
        gap: 18px;
        margin-bottom: var(--content-gap);
      }

      .process-section > * {
        width: min(100% - 28px, 1240px);
      }

      .process-note {
        padding-left: 14px;
        font-size: 13px;
      }

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

      .process-step {
        min-height: 0;
        padding: 18px 16px 18px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .process-step:last-child {
        border-bottom: 0;
      }

      .process-step:nth-child(2) {
        border-right: 0;
      }

      .process-step:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
      }

      .process-step-number {
        margin-bottom: 14px;
      }

      .process-step-number:before {
        width: 34px;
        height: 34px;
        font-size: 14px;
      }

      .process-step svg {
        right: 16px;
        top: 20px;
        width: 22px;
        height: 22px;
      }

      .process-step h3 {
        font-size: 17px;
      }

      .reviews-head {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
      }

      .area-section {
        padding: var(--section-y) 0 calc(var(--section-y) + 82px);
      }

      .area-shell {
        width: min(100% - 28px, 1240px);
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .area-content .section-head {
        margin-bottom: 16px;
      }

      .area-content .section-title {
        font-size: clamp(31px, 8.6vw, 42px);
        line-height: 1.08;
        overflow-wrap: break-word;
      }

      .area-actions {
        margin-top: 18px;
      }

      .area-cta {
        width: 100%;
      }

      .area-small {
        font-size: 12px;
      }

      .area-map {
        width: 100%;
        padding: 16px;
        overflow: hidden;
      }

      .area-map:before {
        inset: 42px -40px;
      }

      .area-map:after {
        right: -112px;
        bottom: -120px;
        width: 220px;
        height: 220px;
      }

      .area-map-head {
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }

      .area-map-head strong {
        font-size: 21px;
      }

      .area-map-head > div > span {
        font-size: 12px;
      }

      .area-pin {
        width: 38px;
        height: 38px;
      }

      .area-pin svg {
        width: 18px;
        height: 18px;
      }

      .area-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .area-city {
        min-height: 0;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        width: auto;
        padding: 9px 12px;
        background: rgba(255, 255, 255, .7);
      }

      .area-city strong {
        font-size: 13px;
      }

      .area-city span {
        display: none;
      }

      .area-note {
        align-items: start;
        gap: 10px;
        padding: 12px;
        font-size: 12px;
      }

      .area-note svg {
        width: 22px;
        height: 22px;
      }

      .faq-layout {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
        max-width: 100%;
      }

      .city-landing .faq-layout {
        grid-template-columns: 1fr;
      }

      .city-landing .faq-aside .section-title {
        font-size: clamp(30px, 8.2vw, 38px);
        line-height: 1.08;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
      }

      .faq-aside .section-head {
        margin-bottom: 14px;
      }

      .faq-card {
        padding: 14px;
      }

      .faq-item summary {
        min-height: 56px;
        gap: 12px;
        padding: 0 14px;
        font-size: 14px;
        grid-template-columns: minmax(0, 1fr) auto;
      }

      .city-landing .faq-item summary,
      .city-landing .faq-item p {
        overflow-wrap: anywhere;
      }

      .faq-item summary:after {
        width: 26px;
        height: 26px;
        font-size: 16px;
      }

      .faq-item p {
        padding: 0 14px 14px;
        font-size: 13px;
      }

      .final-cta {
        width: calc(100% + 28px);
        margin-left: -14px;
        margin-right: -14px;
        padding-bottom: 44px;
      }

      .final-cta-panel {
        width: min(100% - 28px, 1240px);
        gap: 22px;
        padding: 0;
      }

      .final-cta-copy h2 {
        font-size: clamp(30px, 10vw, 42px);
        line-height: 1.02;
      }

      .final-cta-actions {
        width: 100%;
      }

      .final-cta-button {
        min-height: 54px;
        font-size: 15px;
      }

      .final-cta-note {
        text-align: left;
      }

      .site-footer {
        padding: 36px 0 104px;
      }

      .footer-inner {
        width: min(100% - 28px, 1240px);
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .footer-brand {
        gap: 14px;
        margin-bottom: 12px;
      }

      .footer-contact-mobile {
        display: grid;
        gap: 12px;
        margin-top: 4px;
      }

      .footer-contact-desktop {
        display: none;
      }

      .footer-col {
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, .08);
      }

      .footer-col summary {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
      }

      .footer-col summary:after {
        content: "+";
        color: var(--accent);
        font-size: 18px;
        font-weight: 600;
      }

      .footer-col[open] summary:after {
        content: "-";
      }

      .footer-links,
      .footer-places {
        padding-bottom: 16px;
      }

      .footer-hours div,
      .footer-contact-row {
        max-width: none;
      }

      .footer-links {
        gap: 12px;
      }

      .footer-bottom {
        width: min(100% - 28px, 1240px);
        margin-top: 28px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .footer-legal {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 16px;
      }

      .footer-socials {
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .review-invite {
        padding: 18px;
      }

      .reviews-track {
        display: flex;
        gap: 12px;
        width: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 14px;
        padding: 2px 22vw 14px 14px;
        margin-left: -14px;
        margin-right: -14px;
        -webkit-overflow-scrolling: touch;
      }

      .reviews-track::-webkit-scrollbar {
        display: none;
      }

      .review-card {
        flex: 0 0 min(74vw, 300px);
        scroll-snap-align: start;
        min-height: 0;
        padding: 18px;
      }

      .review-meta {
        grid-template-columns: 58px 1fr;
      }

      .review-meta img {
        width: 58px;
        height: 44px;
      }

      .review-service {
        grid-column: 1 / -1;
        justify-self: start;
      }

      .modal {
        align-items: center;
        padding: 14px;
      }

      .modal-dialog {
        max-height: calc(100dvh - 28px);
      }

      .modal-head,
      .review-form {
        padding-left: 18px;
        padding-right: 18px;
      }

      .modal-head h3 {
        font-size: 28px;
      }

      .review-service-options,
      .review-form-grid {
        grid-template-columns: 1fr;
      }

      .review-service-option {
        min-height: 96px;
        grid-template-columns: 92px 1fr;
        align-items: center;
      }

      .review-service-option img {
        height: 64px;
      }

      .review-service-option span {
        text-align: left;
      }

      .rating-star {
        width: 36px;
        height: 36px;
        font-size: 32px;
      }

      .allergen-panel {
        width: min(100% - 28px, 1240px);
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        overflow: hidden;
        background:
          radial-gradient(circle at 74% 78%, rgba(255, 193, 6, .12), transparent 28%),
          radial-gradient(circle at 66% 82%, rgba(255, 84, 72, .1), transparent 30%);
      }

      .allergen-panel:before {
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, 0) 54%);
      }

      .allergen-panel:after {
        right: -36%;
        bottom: 0;
        width: 92%;
      }

      .allergen-points {
        gap: 18px;
        margin-top: 22px;
      }

      .allergen-point {
        grid-template-columns: 32px 1fr;
        gap: 10px;
        padding: 0;
      }

      .allergen-point svg {
        width: 28px;
        height: 28px;
        padding: 5px;
      }

      .allergen-visual {
        min-height: 210px;
        margin: 8px 0 0;
        overflow: hidden;
        border-radius: 0;
        background: transparent;
      }

      .allergen-visual img {
        right: 0;
        top: auto;
        bottom: -36px;
        width: min(100%, 430px);
      }

      .allergen-badge {
        right: 12px;
        bottom: 12px;
      }

      .field-grid .wide {
        grid-column: auto;
      }

      .config-card,
      .config-body,
      .config-group,
      .contact-panel,
      .field-grid,
      .field,
      textarea.field,
      select.field {
        min-width: 0;
        max-width: 100%;
      }

      .field,
      textarea.field,
      select.field {
        font-size: 16px;
      }

      .desktop-selection-panel {
        display: none;
        position: static;
        max-height: none;
        overflow: visible;
      }

      .config-head,
      .config-body {
        padding-left: 18px;
        padding-right: 18px;
      }

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

      .price {
        font-size: 38px;
      }

      .mobile-sticky {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 30;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border: 1px solid rgba(23, 23, 27, .12);
        border-radius: var(--radius);
        padding: 10px 12px;
        background: rgba(255, 255, 255, .95);
        box-shadow: 0 20px 50px rgba(23, 23, 27, .14);
        backdrop-filter: blur(14px);
        transition: opacity .20s ease, transform .28s ease;
      }

      .mobile-sticky span {
        color: var(--muted);
        font-size: 13px;
      }

      .mobile-sticky small {
        display: block;
        margin-top: 2px;
        color: var(--muted);
        font-size: 12px;
      }

      .mobile-sticky b {
        display: block;
        color: var(--fg);
        font-family: var(--font-display);
        font-size: 24px;
        font-weight: 600;
        letter-spacing: -.02em;
      }

      .mobile-sticky a {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius);
        padding: 0 13px;
        background: var(--fg);
        color: var(--surface);
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
      }

      .mobile-sticky a:hover {
        background: #2b2b30;
        box-shadow: 0 12px 24px rgba(23, 23, 27, .18);
        transform: translateY(-1px);
      }

    }

    @media (max-width: 430px) {
      .area-grid {
        display: flex;
      }

      .service-card {
        min-height: 236px;
        padding-right: 128px;
      }

      .service-card p {
        font-size: 12px;
      }

      .service-art {
        width: 126px;
      }
    }

    @media (max-width: 760px) {
      .confirmation-hero,
      .confirmation-next,
      .confirmation-contact {
        width: min(100% - 28px, 1120px);
      }

      .confirmation-grid,
      .confirmation-contact {
        grid-template-columns: 1fr;
      }

      .confirmation-contact {
        margin-bottom: 92px;
      }

      .confirmation-hours {
        grid-column: auto;
      }

      .confirmation-actions a {
        width: 100%;
      }
    }

    .cookie-notice {
      position: fixed;
      left: 50%;
      bottom: 16px;
      z-index: 95;
      width: min(calc(100% - 40px), 980px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 16px 14px 22px;
      border: 1px solid rgba(128, 213, 255, .18);
      border-radius: 15px;
      background:
        linear-gradient(105deg, rgba(22, 39, 49, .98) 0%, rgba(23, 23, 27, .98) 52%, rgba(39, 31, 15, .98) 100%);
      color: rgba(255, 255, 255, .9);
      box-shadow: 0 18px 48px rgba(23, 23, 27, .24), 0 0 0 1px rgba(255, 255, 255, .04) inset;
      backdrop-filter: blur(18px);
      transform: translateX(-50%);
    }

    .cookie-notice-accepted .cookie-notice,
    .cookie-notice[hidden] {
      display: none;
    }

    .cookie-notice p {
      margin: 0;
      max-width: 680px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.45;
    }

    .cookie-notice a {
      color: var(--accent);
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
    }

    .cookie-notice-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .cookie-notice-link-button {
      border: 0;
      padding: 8px 4px;
      background: transparent;
      color: rgba(255, 255, 255, .68);
      font: inherit;
      font-size: 13px;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 4px;
      cursor: pointer;
      transition: color .18s ease;
    }

    .cookie-notice-link-button:hover {
      color: rgba(255, 255, 255, .92);
    }

    .cookie-notice-link-button:focus-visible {
      outline: 3px solid rgba(128, 213, 255, .7);
      outline-offset: 3px;
      border-radius: 8px;
    }

    .cookie-notice-button {
      min-height: 44px;
      border: 1px solid rgba(230, 171, 0, .38);
      border-radius: 999px;
      padding: 0 24px;
      background: linear-gradient(180deg, #ffd94c 0%, var(--warm) 100%);
      color: var(--fg);
      font: inherit;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
      transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .cookie-notice-button:hover {
      box-shadow: 0 12px 24px rgba(255, 185, 0, .24);
      transform: translateY(-1px);
    }

    .cookie-notice-button:focus-visible {
      outline: 3px solid rgba(128, 213, 255, .7);
      outline-offset: 3px;
    }

    @media (max-width: 760px) {
      .cookie-notice {
        bottom: 88px;
        width: min(calc(100% - 24px), 520px);
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        border-radius: 18px;
      }

      .cookie-notice p {
        font-size: 14px;
      }

      .cookie-notice-actions {
        width: 100%;
        flex-direction: column-reverse;
        gap: 8px;
      }

      .cookie-notice-button {
        width: 100%;
      }

      .cookie-notice-link-button {
        width: 100%;
        min-height: 34px;
      }
    }
