:root {
  --ink: #064b8d;
  --ink-deep: #1d1d1f;
  --mute: #6e6e73;
  --apple-blue: #0071e3;
  --apple-blue-hover: #0077ed;
  --gray: #f5f5f7;
  --gray-2: #fbfbfd;
  --line: #d2d2d7;
  --sky-top: #8ec8e8;
  --sky-mid: #c5e0f2;
  --sand: #f3e6d4;
  --warm: #fff8f0;
  --heat: #bac834;
  --heat-deep: #9fb02a;
  --navy: #064b8d;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-brand: "Outfit", var(--font);
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.28, 0.11, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heat-deep);
  margin-bottom: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 75, 141, 0.18);
  border-radius: 980px;
  padding: 7px 12px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.status-pill--corner {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  margin-bottom: 0;
}

.status-pill--book {
  margin-bottom: 0;
  text-decoration: none !important;
  color: var(--navy) !important;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  font-size: 13px;
  padding: 10px 16px;
  gap: 9px;
}

.status-pill--book .status-pill__dot {
  width: 8px;
  height: 8px;
}

.status-pill--book:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(6, 75, 141, 0.35);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.status-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.2);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.9); }
}

.certs {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(6, 75, 141, 0.35), transparent 55%),
    linear-gradient(180deg, #0a2f52 0%, #0b1c2c 55%, #071018 100%);
  color: #e8edf2;
  padding: 36px 22px 42px;
  border-block: 1px solid rgba(142, 200, 232, 0.22);
}

.brand-mark {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-mark--certs {
  width: 44px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 6px 16px rgba(186, 200, 52, 0.25));
}

.brand-mark--section {
  width: 52px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 8px 18px rgba(186, 200, 52, 0.22));
}

.brand-mark--visit {
  width: 88px;
  margin: 0 0 18px;
  filter: drop-shadow(0 10px 24px rgba(186, 200, 52, 0.28));
}

.brand-mark--inline {
  width: 26px;
  margin: 0;
  flex: 0 0 auto;
}

.brand-mark--footer {
  width: 22px;
  flex: 0 0 auto;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.certs > .mono-label {
  text-align: center;
  color: var(--heat);
  margin-bottom: 20px;
}

.certs__row {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.certs__item {
  border: 1px solid rgba(142, 200, 232, 0.18);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(186, 200, 52, 0.08), transparent 55%),
    rgba(6, 75, 141, 0.28);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 112px;
  box-shadow: inset 0 1px 0 rgba(142, 200, 232, 0.1);
}

.certs__code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--heat);
  margin-bottom: 8px;
}

.certs__item strong {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.certs__item span:last-child {
  font-size: 13px;
  color: rgba(201, 230, 247, 0.72);
}

.certs__name {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heat) !important;
}

a {
  color: var(--apple-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Top centered move notice */
.moved-banner {
  position: relative;
  z-index: 70;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 22px;
  background: var(--ink);
  color: #f5f5f7;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.moved-banner p {
  margin: 0;
  max-width: 40rem;
}

.moved-banner strong {
  color: var(--heat);
  font-weight: 700;
}

/* Top moving banner */
.ticker {
  position: relative;
  z-index: 60;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: max-content;
  padding: 0.55rem 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ticker-move 90s linear infinite;
}

.ticker__track span[aria-hidden="true"] {
  color: var(--heat);
  font-weight: 700;
}

@keyframes ticker-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }
}

/* Apple-style nav */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__mark {
  height: 28px;
  width: auto;
  display: block;
}

.logo img:not(.logo__mark) {
  height: 34px;
  width: auto;
  display: block;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  color: var(--ink);
  font-size: 12px;
  opacity: 0.8;
  text-decoration: none;
}

.nav a:hover {
  opacity: 1;
  text-decoration: none;
}

.header__phone {
  margin-left: auto;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.header__phone-short {
  display: none;
}

.header__phone:hover {
  color: var(--apple-blue);
  text-decoration: none;
}

.burger {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--ink);
}

/* Hero — moving wallpaper + product slideshow */
.hero {
  position: relative;
  text-align: center;
  overflow: visible;
  background: #0b1c2c;
}

.hero__wallpaper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__wallpaper-video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center center;
  animation: wallpaper-drift 28s ease-in-out infinite alternate;
}

.hero__wallpaper-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(243, 230, 212, 0.35) 48%, rgba(255, 255, 255, 0.88) 88%, #fff 100%),
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(255, 255, 255, 0.25), transparent 65%);
  pointer-events: none;
}

@keyframes wallpaper-drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fade-up 0.9s var(--ease) both;
}

.hero__apple {
  position: absolute;
  top: 28px;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 12px 10px 10px;
  color: #000;
  pointer-events: none;
}

.hero__apple-mark {
  display: block;
  width: 34px;
  height: auto;
  flex: 0 0 auto;
  overflow: visible;
  /* keep leaf from getting clipped by svg viewport */
  padding-top: 2px;
}

.hero__apple-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  text-align: left;
  line-height: 1.15;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero__apple-text span {
  display: block;
}

.hero__address {
  position: absolute;
  top: 28px;
  right: 22px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  text-align: right;
  text-decoration: none !important;
  color: var(--navy) !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hero__address-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heat-deep) !important;
  margin-bottom: 3px;
}

.hero__address:hover {
  text-decoration: none !important;
  color: var(--ink-deep) !important;
}

.hero__logo {
  width: min(92vw, 560px);
  height: auto;
  margin: 0 auto 10px;
  filter: drop-shadow(0 8px 24px rgba(6, 75, 141, 0.12));
}

.hero__eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  text-transform: none;
}

.hero__auth {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero__sub {
  font-family: var(--font-mono);
  font-size: clamp(15px, 2.4vw, 20px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 14px;
  min-height: 1.45em;
}

.hero__sub--term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: min(96vw, 640px);
  margin-left: auto;
  margin-right: auto;
  padding: 8px 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--navy);
  text-align: left;
  white-space: nowrap;
}

.hero__sub-prompt {
  flex: 0 0 auto;
  color: var(--heat-deep);
  font-weight: 600;
}

.hero__sub-out {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.hero__sub-cursor {
  display: inline-block;
  width: 0.55ch;
  height: 1.05em;
  margin-left: 1px;
  background: var(--navy);
  vertical-align: -0.12em;
  animation: sub-cursor-blink 0.9s steps(1) infinite;
}

@keyframes sub-cursor-blink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__sub-cursor {
    display: none;
  }
}

.hero__location {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-deep);
  margin: 4px 0 0;
  max-width: 36rem;
  text-align: center;
  line-height: 1.45;
}

.hero__location a {
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__location a:hover {
  color: var(--heat-deep);
}

.hero__text {
  font-size: 17px;
  color: var(--mute);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.47;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(100%, 380px);
  margin-top: 4px;
  margin-bottom: 0;
}

.hero__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 28px;
  border-radius: 980px;
  background: var(--navy);
  color: #fff !important;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(6, 75, 141, 0.22);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}

.hero__book:hover {
  background: #053a6e;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(6, 75, 141, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .hero__wallpaper-video {
    animation: none;
  }
}

.ribbon {
  background: var(--ink);
  color: #f5f5f7;
  text-align: center;
  padding: 14px 22px;
  font-size: 14px;
}

.ribbon strong {
  color: #ff9f6b;
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  background: var(--gray);
  text-align: center;
  padding: 36px 16px;
}

.stats strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stats span {
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
}

.intro {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 22px;
  text-align: center;
}

.intro p {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.011em;
  line-height: 1.38;
  color: var(--ink);
}

/* Product tiles — Sunbake tech panels */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px;
  max-width: 1440px;
  margin: 0 auto;
}

.tile {
  border-radius: 0;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 56px;
  position: relative;
}

.tile--dark {
  background: linear-gradient(180deg, #0a2f52 0%, #064b8d 48%, #064b8d 100%);
  color: #f5f5f7;
}

.tile--dark .tile__media--mac {
  padding: 0;
  place-items: stretch;
}

.tile--dark .tile__media--mac::before {
  display: none;
}

.tile--dark .tile__media--mac img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center bottom;
  filter: none;
}

.tile--light {
  background:
    radial-gradient(ellipse 70% 50% at 50% 85%, rgba(6, 75, 141, 0.08), transparent 55%),
    linear-gradient(180deg, #d7ebf7 0%, #eaf4fa 38%, var(--sand) 72%, var(--warm) 100%);
  color: var(--ink);
}

.tile__copy {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 360px;
  margin: 0 auto;
}

.tile h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.tile p {
  font-size: 15px;
  color: inherit;
  opacity: 0.72;
  margin-bottom: 16px;
  line-height: 1.47;
}

.tile a {
  font-size: 17px;
}

.tile--dark a {
  color: #c9e6f7;
}

.tile--dark a:hover {
  color: #fff;
}

.tile--light a {
  color: var(--navy);
}

.tile--network {
  background:
    radial-gradient(ellipse 70% 55% at 50% 90%, rgba(186, 200, 52, 0.16), transparent 55%),
    linear-gradient(165deg, #071018 0%, #0a2f52 48%, #0b1c2c 100%);
  color: #f5f5f7;
}

.tile--network h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
}

.tile--network a {
  color: var(--heat);
}

.tile--network a:hover {
  color: #fff;
}

.tile__media--network {
  place-items: center;
  padding-bottom: 36px;
}

.tile__media--network::before {
  background: radial-gradient(ellipse at center, rgba(142, 200, 232, 0.2), transparent 70%);
}

.tile__network-art {
  width: min(78%, 280px);
  height: auto;
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease);
  overflow: visible;
}

.tile__network-node,
.tile__network-core {
  transform-box: fill-box;
  transform-origin: center;
  animation: network-pulse 2.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.tile__network-core {
  animation-name: network-pulse-core;
}

@keyframes network-pulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes network-pulse-core {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tile__network-node,
  .tile__network-core {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.tile--network:hover .tile__network-art {
  transform: scale(1.04);
}

.tile__media {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: grid;
  place-items: end center;
  padding: 24px 24px 0;
  flex: 1;
}

.tile__media::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(70%, 340px);
  height: 28%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(186, 200, 52, 0.22), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.tile--light .tile__media::before {
  background: radial-gradient(ellipse at center, rgba(6, 75, 141, 0.16), transparent 70%);
}

.tile__media img {
  position: relative;
  z-index: 1;
  width: min(88%, 420px);
  transition: transform 0.6s var(--ease);
  filter: drop-shadow(0 18px 40px rgba(6, 75, 141, 0.22));
}

.tile--dark .tile__media img {
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.45));
}

.tile:hover .tile__media img {
  transform: scale(1.03);
}

/* Centered panels */
.panel {
  text-align: center;
  padding: 100px 22px;
  background: var(--gray);
}

.panel--ink {
  background: #000;
  color: #f5f5f7;
}

.panel--warm {
  background:
    linear-gradient(180deg, #d7ebf7 0%, var(--sand) 55%, var(--warm) 100%);
}

.panel__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--heat-deep);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel--ink .panel__eyebrow {
  color: var(--heat);
}

.panel h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.08;
  max-width: 700px;
  margin: 0 auto 16px;
}

.panel > p {
  font-size: 19px;
  color: var(--mute);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.47;
}

.panel--ink > p:not(.panel__eyebrow) {
  color: #a1a1a6;
}

.chip-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.chip-row li {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  background: #fff;
  border-radius: 980px;
  color: var(--ink-deep);
}

/* Common repairs + tips */
.repairs,
.tips {
  padding: 80px 22px 100px;
  background: #fff;
  max-width: 1080px;
  margin: 0 auto;
}

.repairs__grid,
.tips__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

.repairs__grid h3,
.tips__grid h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.011em;
  margin-bottom: 8px;
  color: var(--ink-deep);
}

.repairs__grid p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.47;
}

.tips__grid article {
  background: var(--gray);
  border-radius: 18px;
  padding: 28px 24px;
}

.tips__grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.tips__grid li {
  font-size: 15px;
  color: var(--mute);
  padding-left: 14px;
  border-left: 2px solid var(--heat);
  line-height: 1.4;
}

.tips__cta {
  text-align: center;
  margin-top: 36px;
  font-size: 17px;
  color: var(--ink-deep);
}

.tips__cta a {
  font-weight: 600;
}

/* Device coverage */
.coverage,
.pricing,
.faq {
  padding: 80px 22px 100px;
  max-width: 1080px;
  margin: 0 auto;
}

.coverage {
  background:
    linear-gradient(180deg, #f7fbfd 0%, #fff 40%);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.coverage .services__head,
.coverage__grid {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.coverage__lead {
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 17px;
  color: var(--mute);
  line-height: 1.45;
}

.coverage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.coverage__card {
  background: #fff;
  border: 1px solid rgba(6, 75, 141, 0.12);
  border-top: 3px solid var(--heat);
  padding: 22px 20px 24px;
  text-align: left;
}

.coverage__card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 4px 0 10px;
}

.coverage__status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 8px;
  border-radius: 4px;
}

.coverage__status--yes {
  color: var(--navy);
  background: rgba(186, 200, 52, 0.22);
}

.coverage__status--note {
  color: #5c4a1f;
  background: rgba(243, 230, 212, 0.9);
}

.coverage__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coverage__card li {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.4;
  padding-left: 12px;
  border-left: 2px solid rgba(6, 75, 141, 0.18);
}

/* Pricing */
.pricing {
  background: #fff;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid var(--line);
}

.pricing .services__head,
.pricing__grid,
.pricing__note {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.pricing__card {
  background:
    linear-gradient(180deg, #f7fbfd 0%, var(--warm) 100%);
  border: 1px solid rgba(6, 75, 141, 0.1);
  padding: 22px 20px 24px;
  text-align: left;
}

.pricing__card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--ink-deep);
  margin: 6px 0 8px;
}

.pricing__figure {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.pricing__card p:last-child {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.47;
}

.pricing__note {
  margin-top: 28px;
  padding-top: 0;
  padding-bottom: 0;
}

.pricing__note p {
  background: rgba(6, 75, 141, 0.06);
  border-left: 3px solid var(--heat);
  padding: 16px 18px;
  font-size: 15px;
  color: var(--ink-deep);
  line-height: 1.45;
}

.pricing__note a {
  font-weight: 600;
  color: var(--navy);
}

/* FAQ */
.faq {
  background:
    linear-gradient(180deg, var(--sand) 0%, var(--warm) 45%, #fff 100%);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.faq .services__head,
.faq__list,
.faq .tips__cta {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.faq__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}

.faq .coverage__lead {
  margin-top: 14px;
  color: var(--mute);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.faq__item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 75, 141, 0.12);
  padding: 0;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--heat-deep);
  flex: 0 0 auto;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--mute);
  line-height: 1.5;
}

.faq .tips__cta {
  margin-top: 32px;
}

.cta-band {
  text-align: center;
  padding: 88px 22px;
  background: var(--navy);
  color: #fff;
}

.cta-band__eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--heat);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-band h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 24px;
}

.cta-band .btn {
  background: var(--heat);
  color: var(--navy) !important;
  font-weight: 700;
}

.cta-band .btn:hover {
  background: #c9d84a;
}

/* Booking console — same Sunbake navy / sky / lime language as process */
.book {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(6, 75, 141, 0.35), transparent 55%),
    linear-gradient(180deg, #0a2f52 0%, #0b1c2c 55%, #071018 100%);
  padding: 72px 22px 96px;
  color: #e8edf2;
}

.book__shell {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid rgba(142, 200, 232, 0.28);
  background:
    radial-gradient(ellipse 70% 45% at 80% 0%, rgba(186, 200, 52, 0.1), transparent 50%),
    linear-gradient(165deg, rgba(6, 75, 141, 0.45) 0%, rgba(11, 28, 44, 0.92) 55%, #0b1c2c 100%);
  box-shadow:
    inset 0 1px 0 rgba(142, 200, 232, 0.12),
    0 18px 48px rgba(6, 75, 141, 0.2);
  overflow: hidden;
}

.book__chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(142, 200, 232, 0.16);
  background: rgba(6, 75, 141, 0.25);
}

.book__chrome .mono-label {
  margin: 0;
  color: var(--heat);
  flex: 1;
}

.book__dots {
  display: flex;
  gap: 6px;
}

.book__dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a4450;
}

.book__dots i:nth-child(1) { background: #ff5f57; }
.book__dots i:nth-child(2) { background: #febc2e; }
.book__dots i:nth-child(3) { background: #28c840; }

.book__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--heat);
}

.book__live .status-pill__dot {
  background: var(--heat);
  box-shadow: 0 0 0 3px rgba(186, 200, 52, 0.25);
}

.book__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  min-height: 560px;
}

.book__side {
  padding: 24px 20px;
  border-right: 1px solid rgba(142, 200, 232, 0.16);
  background:
    linear-gradient(180deg, rgba(142, 200, 232, 0.08), transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(142, 200, 232, 0.03) 2px,
      rgba(142, 200, 232, 0.03) 4px
    );
  position: relative;
}

.book__logo {
  display: block;
  width: 64px;
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 8px 20px rgba(186, 200, 52, 0.25));
}

.book__telemetry {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 20px;
}

.book__telemetry li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(142, 200, 232, 0.18);
  background: rgba(6, 75, 141, 0.28);
}

.book__telemetry span {
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(201, 230, 247, 0.55);
}

.book__telemetry strong {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--heat);
  letter-spacing: 0.04em;
}

.book__scan {
  height: 3px;
  margin: 18px 0;
  background: rgba(142, 200, 232, 0.2);
  position: relative;
  overflow: hidden;
}

.book__scan::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 30%;
  background: linear-gradient(90deg, var(--heat), #8ec8e8);
  animation: scan-sweep 2.4s linear infinite;
}

@keyframes scan-sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(350%); }
}

.book__side-note {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(201, 230, 247, 0.72);
  margin-bottom: 14px;
}

.book__side-note strong {
  color: #fff;
}

.book__coverage-note {
  margin: -4px 0 18px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(201, 230, 247, 0.62);
}

.book__coverage-note a {
  color: var(--heat);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.book__coverage-note a:hover {
  color: #fff;
}

.book__call {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #c9e6f7;
  text-decoration: none;
}

.book__call:hover {
  color: #fff;
  text-decoration: none;
}

.book__form {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.book__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.book__steps span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(142, 200, 232, 0.18);
  color: rgba(201, 230, 247, 0.5);
}

.book__steps span.is-on {
  border-color: rgba(186, 200, 52, 0.55);
  color: var(--heat);
  background: rgba(186, 200, 52, 0.1);
}

.book__form fieldset {
  border: 0;
  min-width: 0;
}

.book__form legend,
.book__form .mono-label {
  display: block;
  margin-bottom: 10px;
  color: var(--heat);
}

.book__choices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.book__choice {
  cursor: pointer;
}

.book__choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.book__choice span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(142, 200, 232, 0.2);
  background: rgba(6, 75, 141, 0.22);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(201, 230, 247, 0.78);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.book__choice input:checked + span,
.book__choice:hover span {
  border-color: var(--heat);
  color: #fff;
  background: rgba(186, 200, 52, 0.14);
}

.book__check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(201, 230, 247, 0.72);
  cursor: pointer;
}

.book__check input {
  accent-color: var(--heat);
  width: 15px;
  height: 15px;
}

.book__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.book__form label {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.book__form input[type="text"],
.book__form input[type="tel"],
.book__form input[type="email"],
.book__form input[type="date"],
.book__form select,
.book__form textarea {
  width: 100%;
  background: rgba(7, 16, 24, 0.65);
  border: 1px solid rgba(142, 200, 232, 0.22);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 12px;
  outline: none;
  border-radius: 0;
}

.book__form input:focus,
.book__form select:focus,
.book__form textarea:focus {
  border-color: #8ec8e8;
  box-shadow: 0 0 0 1px rgba(142, 200, 232, 0.35);
}

.book__form textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.45;
}

.book__form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--heat) 50%), linear-gradient(135deg, var(--heat) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.book__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.book__submit {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  background: var(--heat);
  color: #071018;
  transition: transform 0.2s, background 0.2s;
}

.book__submit:hover {
  background: #c9d84a;
  transform: translateY(-1px);
}

.book__submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.book__sms {
  appearance: none;
  border: 1px solid rgba(201, 230, 247, 0.28);
  background: transparent;
  color: #e8edf2;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 16px;
  transition: border-color 0.2s, color 0.2s;
}

.book__sms:hover {
  border-color: var(--heat);
  color: var(--heat);
}

.book__hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(201, 230, 247, 0.5);
}

.book__hint.is-ok {
  color: var(--heat);
}

.book__hint.is-err {
  color: #ff8f8f;
}

.why {
  list-style: none;
  max-width: 560px;
  margin: 40px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why li {
  font-size: 17px;
  color: var(--mute);
  padding-left: 16px;
  border-left: 2px solid var(--heat);
}

.why strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 2px;
}

/* Trust & legal */
.trust {
  padding: 80px 22px 100px;
  background: #071018;
  color: #f5f5f7;
}

.trust .services__head {
  max-width: 1080px;
  margin: 0 auto;
}

.trust__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5f5f7;
  margin: 0;
}

.trust .coverage__lead {
  color: rgba(245, 245, 247, 0.68);
  margin-top: 14px;
}

.trust .mono-label {
  color: var(--heat);
}

.trust__grid {
  max-width: 1080px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(186, 200, 52, 0.18);
  padding: 22px 20px 24px;
  text-align: left;
}

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

.trust__card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 8px 0 12px;
  color: #fff;
}

.trust__card > p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.68);
}

.trust__contacts {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust__contacts a {
  font-size: 14px;
  font-weight: 600;
  color: #c9e6f7;
  text-decoration: none;
}

.trust__contacts a:hover {
  color: #fff;
  text-decoration: underline;
}

.trust__principles {
  max-width: 1080px;
  margin: 36px auto 0;
  padding: 28px 24px;
  background: rgba(186, 200, 52, 0.06);
  border: 1px solid rgba(186, 200, 52, 0.22);
  text-align: left;
}

.trust__principles-lead {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 8px 0 18px;
}

.trust__principles ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}

.trust__principles li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.68);
  padding-left: 14px;
  border-left: 2px solid var(--heat);
}

.trust__principles strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.trust__fine {
  max-width: 1080px;
  margin: 28px auto 0;
}

.trust__fine p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

/* Services */
.services {
  padding: 80px 22px 100px;
  background: #fff;
  max-width: 1080px;
  margin: 0 auto;
}

.services__head {
  text-align: center;
  margin-bottom: 48px;
}

.services__head h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.services__grid h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.011em;
  margin-bottom: 8px;
}

.services__grid p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.47;
}

.process {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(6, 75, 141, 0.35), transparent 55%),
    linear-gradient(180deg, #0a2f52 0%, #0b1c2c 55%, #071018 100%);
  max-width: none;
  padding: 72px max(22px, calc((100% - 1080px) / 2)) 88px;
  color: #f5f5f7;
}

.process__shell {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid rgba(142, 200, 232, 0.28);
  background:
    radial-gradient(ellipse 70% 45% at 80% 0%, rgba(186, 200, 52, 0.1), transparent 50%),
    linear-gradient(165deg, rgba(6, 75, 141, 0.45) 0%, rgba(11, 28, 44, 0.92) 55%, #0b1c2c 100%);
  padding: 22px 22px 28px;
  box-shadow:
    inset 0 1px 0 rgba(142, 200, 232, 0.12),
    0 18px 48px rgba(6, 75, 141, 0.2);
}

.process__bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(142, 200, 232, 0.16);
}

.process__bar .mono-label {
  margin-bottom: 0;
  color: var(--heat);
  margin-right: auto;
}

.process__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--heat);
}

.process__status .status-pill__dot {
  background: var(--heat);
  box-shadow: 0 0 0 3px rgba(186, 200, 52, 0.25);
}

.process .services__head {
  text-align: left;
  margin-bottom: 28px;
}

.process .panel__eyebrow {
  color: #9fd0ea;
}

.process .services__head h2 {
  color: #fff;
}

.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: none;
  margin: 0;
}

.process__steps li {
  background: rgba(6, 75, 141, 0.22);
  border: 1px solid rgba(142, 200, 232, 0.18);
  padding: 20px 16px;
  border-radius: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.process__steps .mono-label {
  color: var(--heat);
  margin-bottom: 10px;
}

.process__steps strong {
  display: block;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}

.process__steps p {
  font-size: 14px;
  color: rgba(201, 230, 247, 0.72);
}

.process__steps p a {
  color: #c9e6f7;
}

.process__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.process__rail i {
  display: block;
  height: 3px;
  background: rgba(142, 200, 232, 0.22);
  position: relative;
  overflow: hidden;
}

.process__rail i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--heat), #8ec8e8);
  transform: scaleX(0);
  transform-origin: left;
  animation: rail-fill 3.6s ease-in-out infinite;
}

.process__rail i:nth-child(1)::after { animation-delay: 0s; }
.process__rail i:nth-child(2)::after { animation-delay: 0.9s; }
.process__rail i:nth-child(3)::after { animation-delay: 1.8s; }
.process__rail i:nth-child(4)::after { animation-delay: 2.7s; }

@keyframes rail-fill {
  0%, 15% { transform: scaleX(0); transform-origin: left; }
  35%, 55% { transform: scaleX(1); transform-origin: left; }
  75%, 100% { transform: scaleX(0); transform-origin: right; }
}

/* Visit */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gray-2);
  min-height: 640px;
}

.visit__copy {
  padding: 80px clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.visit__copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.visit__address {
  font-size: 17px;
  color: var(--mute);
  margin-bottom: 8px;
  line-height: 1.5;
}

.visit__copy > p a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.visit__phone-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--heat-deep);
  margin: 0 0 6px;
  letter-spacing: 0;
}

.visit__hours {
  margin: 12px 0;
  font-size: 14px;
  color: var(--mute);
  line-height: 1.55;
}

.visit__areas {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.visit__tech {
  margin: 16px 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.visit__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.visit__name {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 4px;
}

.visit__tech p {
  font-size: 14px;
  color: var(--mute);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 28px;
  padding: 12px 22px;
  border-radius: 980px;
  background: var(--apple-blue);
  color: #fff !important;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none !important;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--apple-blue-hover);
}

.visit__map {
  position: relative;
  min-height: 400px;
}

.visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15);
}

.footer {
  background: var(--gray);
  border-top: 1px solid var(--line);
  padding: 20px 22px;
}

.footer__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  font-size: 12px;
  color: var(--mute);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer__links a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .stats,
  .tiles,
  .services__grid,
  .process__steps,
  .repairs__grid,
  .coverage__grid,
  .pricing__grid,
  .trust__grid,
  .certs__row,
  .book__grid,
  .visit {
    grid-template-columns: 1fr 1fr;
  }

  .book__grid {
    grid-template-columns: 1fr;
  }

  .book__side {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .tile {
    min-height: 520px;
  }
}

@media (max-width: 734px) {
  .nav {
    display: none;
  }

  .header__inner {
    gap: 0.65rem;
    padding: 0 14px;
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }

  .logo img:not(.logo__mark) {
    height: 28px;
  }

  .header__phone {
    display: block;
    margin-left: auto;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    padding: 8px 0;
    line-height: 1.2;
  }

  .header__phone-full {
    display: none;
  }

  .header__phone-short {
    display: inline;
  }

  .burger {
    display: flex;
    margin-left: 0;
    flex-shrink: 0;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(251, 251, 253, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }

  .nav.is-open a {
    padding: 12px 22px;
    font-size: 14px;
    opacity: 1;
  }

  .hero__logo {
    width: min(88vw, 360px);
  }

  .hero__apple {
    top: 16px;
    left: 10px;
    gap: 8px;
    padding: 8px;
  }

  .hero__apple-mark {
    width: 28px;
  }

  .hero__apple-text {
    font-size: 11px;
  }

  .hero__address {
    top: 16px;
    right: 10px;
    font-size: 11px;
  }

  .hero__address-label {
    font-size: 9px;
  }

  .stats,
  .tiles,
  .services__grid,
  .process__steps,
  .repairs__grid,
  .tips__grid,
  .coverage__grid,
  .pricing__grid,
  .trust__grid,
  .certs__row,
  .visit {
    grid-template-columns: 1fr;
  }

  .trust__principles ul {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 480px;
  }

  .intro {
    padding: 56px 22px;
  }

  .book__choices,
  .book__row {
    grid-template-columns: 1fr 1fr;
  }

  .panel {
    padding: 72px 22px;
  }
}
