:root {
  color-scheme: dark;
  --ink: #f8f3e8;
  --muted: #b9b1a3;
  --black: #060606;
  --panel: rgba(17, 17, 17, 0.78);
  --panel-strong: rgba(236, 226, 207, 0.08);
  --line: rgba(248, 243, 232, 0.16);
  --gold: #d8b46a;
  --copper: #b76e4a;
  --cyan: #67d7d1;
  --rose: #df6f79;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 12%, rgba(103, 215, 209, 0.16), transparent 28rem),
    linear-gradient(135deg, #060606 0%, #16120e 38%, #080808 100%);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -2;
}

#signal-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0.62;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(22px);
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
}

.brand-name {
  min-width: 0;
  max-width: 260px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-logo {
  flex: 0 0 auto;
  width: 38px;
  height: 42px;
  object-fit: contain;
  filter: invert(1) brightness(1.15) drop-shadow(0 0 18px rgba(216, 180, 106, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  min-width: 0;
}

.site-nav a,
.header-cta,
.contact-strip a,
.site-footer a,
.proof-copy a {
  text-decoration: none;
}

.site-nav a:hover,
.contact-strip a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

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

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

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

.header-cta {
  flex: 0 0 auto;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

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

.legal-page {
  padding: 132px 0 86px;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  gap: 56px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 108px;
}

.legal-aside .brand {
  margin-bottom: 34px;
}

.legal-aside h1 {
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5.6vw, 5.25rem);
}

.legal-meta,
.legal-nav,
.legal-contact,
.footer-contact {
  display: grid;
  gap: 8px;
}

.legal-meta {
  margin: 22px 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-nav {
  align-items: start;
}

.legal-nav a {
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.legal-nav a:hover {
  border-color: rgba(216, 180, 106, 0.45);
  color: var(--gold);
}

.legal-content {
  display: grid;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(216, 180, 106, 0.08), rgba(103, 215, 209, 0.035)),
    var(--panel);
  backdrop-filter: blur(22px);
}

.legal-content section {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-content h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.legal-content p,
.legal-content li,
.legal-contact p,
.footer-contact {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-contact p {
  margin-bottom: 0;
}

.legal-contact a,
.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 64px;
  padding: 130px 0 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.5vw, 5.4rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-lede,
.booking-copy > p,
.pricing-intro,
.price-card p,
.price-card li,
.care-panel p,
.care-list span,
.system-list p,
.service-grid p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 720px;
  font-size: 1.17rem;
}

.hero-actions,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border: 0;
  background: linear-gradient(90deg, var(--gold), var(--copper), var(--rose));
  color: #090806;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
}

.hero-stage {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.glass-console {
  width: min(100%, 520px);
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 10, 0.62);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(22px);
  transform: perspective(900px) rotateY(-8deg) rotateX(5deg);
}

.console-top {
  display: flex;
  gap: 8px;
  margin-bottom: 60px;
}

.console-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--line);
}

.console-top span:nth-child(1) {
  background: var(--rose);
}

.console-top span:nth-child(2) {
  background: var(--gold);
}

.console-top span:nth-child(3) {
  background: var(--cyan);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.metric-row strong {
  font-size: 1.35rem;
}

.metric-row em {
  color: var(--cyan);
  font-style: normal;
}

.impact-meter {
  height: 11px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.impact-meter span {
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

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

.console-grid p,
.service-grid article,
.system-list article {
  border: 1px solid var(--line);
  background: var(--panel-strong);
}

.console-grid p {
  min-height: 132px;
  padding: 18px;
}

.console-grid b,
.console-grid span {
  display: block;
}

.console-grid span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 44px;
  padding: 22px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  white-space: nowrap;
}

.split-section,
.proof-section,
.booking-section {
  padding: 120px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.system-list,
.service-grid {
  display: grid;
  gap: 18px;
}

.system-list article,
.service-grid article {
  padding: 28px;
}

.system-list span {
  color: var(--cyan);
  font-weight: 800;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.proof-art {
  min-height: 460px;
  display: grid;
  place-items: center;
}

.proof-frame {
  position: relative;
  width: min(100%, 560px);
  padding: 14px;
  border: 1px solid rgba(216, 180, 106, 0.45);
  background: linear-gradient(160deg, rgba(216, 180, 106, 0.17), rgba(103, 215, 209, 0.08));
  box-shadow: 0 30px 120px rgba(183, 110, 74, 0.18);
  transform: perspective(900px) rotateY(7deg) rotateX(2deg);
}

.proof-frame img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-badge {
  position: absolute;
  right: -18px;
  bottom: -22px;
  display: grid;
  gap: 2px;
  min-width: 128px;
  padding: 16px;
  border: 1px solid rgba(216, 180, 106, 0.5);
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(18px);
}

.proof-badge strong {
  color: var(--gold);
  font-size: 2rem;
}

.proof-badge span,
.star-line {
  color: var(--muted);
}

.star-line {
  margin-bottom: 16px;
  color: var(--gold);
}

blockquote {
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1.05;
}

.proof-copy a {
  color: var(--gold);
  font-weight: 800;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 92px;
}

.pricing-section {
  padding: 0 0 90px;
}

.pricing-section .section-heading {
  max-width: 840px;
}

.pricing-intro {
  max-width: 720px;
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.price-card,
.care-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(216, 180, 106, 0.11), rgba(103, 215, 209, 0.04)),
    var(--panel);
  backdrop-filter: blur(22px);
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
}

.price-card-featured {
  border-color: rgba(216, 180, 106, 0.54);
  box-shadow: 0 28px 90px rgba(216, 180, 106, 0.12);
}

.price-label {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-mode-row {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.price-mode-row > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.rate-toggle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: 42px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(248, 243, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(103, 215, 209, 0.13), rgba(216, 180, 106, 0.12)),
    rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  isolation: isolate;
}

.rate-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: linear-gradient(90deg, var(--gold), var(--copper), var(--rose));
  box-shadow: 0 0 28px rgba(216, 180, 106, 0.32);
  transform: translateX(0);
  transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.2, 1), background 0.42s ease, box-shadow 0.42s ease;
  z-index: -1;
}

.rate-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.24s ease, text-shadow 0.24s ease;
}

.price-card:not(.is-monthly) .rate-toggle span:first-child,
.price-card.is-monthly .rate-toggle span:last-child {
  color: #080806;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.price-card.is-monthly .rate-toggle::before {
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 32px rgba(103, 215, 209, 0.35);
  transform: translateX(100%);
}

.price-amount {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 126px;
  margin-bottom: 18px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(248, 243, 232, 0.14);
  background:
    linear-gradient(135deg, rgba(216, 180, 106, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.price-amount::before {
  content: "";
  position: absolute;
  inset: -85% -35%;
  background: conic-gradient(from 90deg, transparent, rgba(216, 180, 106, 0.24), transparent, rgba(103, 215, 209, 0.22), transparent);
  opacity: 0;
  transform: rotate(0deg) scale(0.88);
  transition: opacity 0.45s ease, transform 0.65s ease;
}

.price-card.is-monthly .price-amount::before {
  opacity: 1;
  transform: rotate(28deg) scale(1);
}

.price-eyebrow,
.price-amount strong,
.price-amount small {
  position: relative;
  z-index: 1;
}

.price-eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.price-amount strong {
  margin-bottom: 0;
  color: var(--gold);
  transition: color 0.28s ease, font-family 0.28s ease, transform 0.28s ease;
}

.price-amount small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.price-card.is-monthly .price-amount strong {
  color: var(--cyan);
  font-family: Inter, system-ui, sans-serif;
}

.price-card.is-monthly .price-amount small {
  color: var(--cyan);
}

.price-card.is-price-flashing .price-amount strong {
  animation: price-pop 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.care-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  margin-top: 18px;
  padding: 30px;
}

.care-panel h3 {
  margin-bottom: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.care-list {
  display: grid;
  gap: 14px;
}

.care-list p {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.care-list b,
.care-list span {
  display: block;
}

.care-list b {
  margin-bottom: 5px;
  color: var(--ink);
}

.care-list em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.faq-section {
  padding: 0 0 120px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.faq-grid article {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(216, 180, 106, 0.08), rgba(103, 215, 209, 0.04)),
    var(--panel);
  backdrop-filter: blur(22px);
}

.faq-grid h3 {
  margin-bottom: 12px;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-strip a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(22px);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  padding: 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

.consent-label {
  align-content: center;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 100%;
  padding: 15px 0 0;
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent-label span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

select option {
  color: #080808;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-contact {
  margin-top: 14px;
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.site-header[data-reveal] {
  transform: translate(-50%, 24px);
}

.site-header[data-reveal].is-visible {
  transform: translate(-50%, 0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes price-pop {
  0% {
    transform: translateY(10px) scale(0.96);
    opacity: 0.35;
  }

  60% {
    transform: translateY(-3px) scale(1.04);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 62px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(6, 6, 6, 0.92);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .site-header.is-nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 12px;
    border: 1px solid transparent;
  }

  .site-nav a:focus,
  .site-nav a:hover {
    border-color: rgba(216, 180, 106, 0.34);
    color: var(--gold);
  }

  .nav-toggle {
    display: grid;
    order: 3;
  }

  .header-cta {
    order: 2;
  }

  .hero,
  .split-section,
  .proof-section,
  .booking-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
    gap: 20px;
  }

  .hero-stage {
    min-height: 430px;
  }

  .glass-console {
    transform: none;
  }

  .proof-frame {
    transform: none;
  }

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

  .pricing-grid,
  .faq-grid,
  .care-panel,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 8px;
    padding: 8px 9px 8px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-name {
    max-width: 166px;
    font-size: 12px;
  }

  .brand-logo {
    width: 32px;
    height: 36px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 22px;
  }

  .price-mode-row {
    gap: 8px;
    margin-bottom: 14px;
  }

  .rate-toggle {
    min-height: 40px;
  }

  .rate-toggle span {
    padding: 0 4px;
    font-size: 10px;
  }

  .price-amount {
    min-height: 112px;
    padding: 15px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .console-grid,
  .form-row,
  .pricing-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .proof-section,
  .pricing-section,
  .booking-section,
  .legal-page {
    padding: 76px 0;
  }

  .legal-content {
    padding: 22px;
  }
}
