@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Figtree:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* =================================================================
   PhoneCare — design tokens
   ================================================================= */
:root {
  --bg: #0a0f1c;
  --bg-soft: #0d1424;
  --surface: #121b30;
  --surface-2: #18233c;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.15);

  --blue: #3d8bff;
  --blue-bright: #62a4ff;
  --blue-deep: #2f6fe0;
  --blue-soft: rgba(61, 139, 255, 0.12);
  --coral: #ff8166;
  --mint: #51d6a6;

  --text: #e9eefb;
  --text-2: #9eaaC4;
  --text-2: #9eaac4;
  --text-3: #66738d;

  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.75);
  --shadow-card: 0 12px 34px -18px rgba(0, 0, 0, 0.65);
  --glow: 0 0 0 1px var(--blue-soft), 0 18px 50px -22px rgba(61, 139, 255, 0.45);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 0.28s var(--ease);
  --maxw: 1180px;
}

/* =================================================================
   reset + base
   ================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ambient blue aura, top-right; warm, not a flat grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60% 50% at 85% -5%, rgba(61, 139, 255, 0.16), transparent 60%),
    radial-gradient(45% 40% at 5% 0%, rgba(255, 129, 102, 0.07), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

body>* {
  position: relative;
  z-index: 1;
}

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

a:hover {
  color: var(--blue-bright);
}

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

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =================================================================
   typography
   ================================================================= */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--blue);
}

.h-xl {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
}

.h-lg {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
}

.h-md {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.lead {
  color: var(--text-2);
  font-size: 1.12rem;
  line-height: 1.65;
}

.muted {
  color: var(--text-2);
}

.accent {
  color: var(--blue);
}

.coral {
  color: var(--coral);
}

/* =================================================================
   layout
   ================================================================= */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.sec-head {
  max-width: 620px;
  margin-bottom: 52px;
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head .eyebrow.center {
  justify-content: center;
}

.sec-head h2 {
  margin: 16px 0 14px;
}

.sec-head p {
  color: var(--text-2);
  font-size: 1.05rem;
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  border: 0;
}

/* =================================================================
   buttons
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t);
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(61, 139, 255, 0.65);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(61, 139, 255, 0.8);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-2);
  color: var(--text);
}

.btn-ghost:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 30px;
  font-size: 1.04rem;
}

.btn-block {
  width: 100%;
}

/* =================================================================
   navigation — floating pill
   ================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 16px;
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 7px 0 24px;
  background: rgba(13, 20, 36, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  backdrop-filter: blur(7px);
}

.nav-links {
  margin-left: auto;
}

.nav-right .btn-primary {
  height: 50px;
}

.nav.scrolled .nav-inner {
  box-shadow: var(--shadow-card);
  background: rgba(13, 20, 36, 0.92);
  border-color: var(--line-2);
}

/* keep the pill off the screen edges on viewports below the content width */
@media (max-width: 1180px) {
  .nav {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  color: var(--text);
  flex-shrink: 0;
}

.brand img {
  margin-right: 10px;
}

.brand:hover {
  color: var(--text);
}

.brand .ac {
  color: var(--blue);
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 7px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  transition: color var(--t), background var(--t);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: var(--blue-bright);
  background: var(--blue-soft);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.nav-phone:hover {
  color: var(--blue-bright);
}

.burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.burger span:nth-child(1) {
  top: 16px;
}

.burger span:nth-child(2) {
  top: 21px;
}

.burger span:nth-child(3) {
  top: 26px;
}

.burger.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

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

.burger.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 360px);
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.36s var(--ease);
  padding: 92px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-panel.open {
  transform: translateX(0);
}

.panel-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.panel-close::before,
.panel-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.panel-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.panel-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.panel-close:hover {
  border-color: var(--blue);
}

.mobile-panel a {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-panel a:hover {
  color: var(--blue-bright);
}

.mobile-panel .btn {
  margin-top: 18px;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 16, 0.6);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

.scrim.open {
  opacity: 1;
  pointer-events: auto;
}

/* =================================================================
   hero
   ================================================================= */
.hero {
  padding: 60px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  margin: 20px 0 22px;
}

.hero h1 .soft {
  color: var(--text-2);
}

.hero .lead {
  max-width: 30em;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--text-2);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.02);
}

.chip b {
  color: var(--text);
  font-weight: 600;
}

.chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

/* signature: device check-up card */
.checkup {
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.checkup::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.checkup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.checkup-top .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--mint);
}

.live .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(81, 214, 166, 0.6);
  animation: pulse 2s infinite;
}

.device {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.device .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.device .meta b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.device .meta span {
  font-size: 0.85rem;
  color: var(--text-2);
}

.checkup-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}

.cu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.cu-row .name {
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 9px;
}

.cu-row .tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cu-row .tick svg {
  width: 11px;
  height: 11px;
}

.cu-row .val {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text);
}

.checkup-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkup-foot .done {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--mint);
}

.eta {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--text-2);
}

.eta b {
  color: var(--blue-bright);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(81, 214, 166, 0.55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(81, 214, 166, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(81, 214, 166, 0);
  }
}

/* =================================================================
   logo-care mark (heartbeat)
   ================================================================= */
.care-mark {
  stroke: var(--blue);
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.care-mark .heart {
  fill: var(--coral);
  stroke: none;
}

/* =================================================================
   bento services
   ================================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: transform var(--t), border-color var(--t), background var(--t);
  display: flex;
  flex-direction: column;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--surface-2);
}

.tile .ic {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.tile h3 {
  font-size: 1.15rem;
  margin-bottom: 9px;
}

.tile p {
  color: var(--text-2);
  font-size: 0.92rem;
}

.tile .tag {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--blue-bright);
}

.tile.feature {
  grid-column: span 2;
  background: linear-gradient(150deg, rgba(61, 139, 255, 0.16), var(--surface) 60%);
  border-color: rgba(61, 139, 255, 0.35);
}

.tile.feature h3 {
  font-size: 1.5rem;
}

.tile.feature p {
  font-size: 1rem;
  max-width: 34em;
}

.tile.tall {
  grid-row: span 2;
}

.tile.wide {
  grid-column: span 2;
}

/* =================================================================
   steps
   ================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
}

.step .num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--blue-bright);
  margin-bottom: 22px;
  display: block;
}

.step h4 {
  font-size: 1.15rem;
  margin-bottom: 9px;
}

.step p {
  color: var(--text-2);
  font-size: 0.92rem;
}

/* =================================================================
   stat band
   ================================================================= */
.statband {
  background: linear-gradient(150deg, rgba(61, 139, 255, 0.1), rgba(255, 129, 102, 0.05));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--blue-bright);
  letter-spacing: -0.03em;
}

.stat .n small {
  font-size: 1rem;
  color: var(--text-2);
}

.stat .l {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* =================================================================
   brands marquee
   ================================================================= */
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brands span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-2);
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.02);
  transition: color var(--t), border-color var(--t);
}

.brands span:hover {
  color: var(--blue-bright);
  border-color: var(--blue);
}

/* =================================================================
   product cards
   ================================================================= */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.prod {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t);
}

.prod:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}

.prod .ph {
  aspect-ratio: 4/3;
  background: radial-gradient(circle at 50% 40%, var(--surface-2), var(--bg-soft));
  display: grid;
  place-items: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--line);
}

.prod .body {
  padding: 22px;
}

.prod h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}

.prod p {
  color: var(--text-2);
  font-size: 0.9rem;
}

/* =================================================================
   CTA panel
   ================================================================= */
.cta-panel {
  background: linear-gradient(150deg, rgba(61, 139, 255, 0.18), var(--surface) 70%);
  border: 1px solid rgba(61, 139, 255, 0.3);
  border-radius: var(--r-lg);
  padding: 60px;
  text-align: center;
}

.cta-panel h2 {
  margin-bottom: 14px;
}

.cta-panel p {
  color: var(--text-2);
  max-width: 40em;
  margin: 0 auto 30px;
}

.cta-panel .row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================================================================
   reviews placeholder
   ================================================================= */
.reviews-slot {
  max-width: 1000px;
  margin: 0 auto;
}

.rv-placeholder {
  text-align: center;
  padding: 54px 30px;
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
}

.rv-placeholder .stars {
  color: var(--coral);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.rv-placeholder p {
  color: var(--text-2);
  margin-bottom: 22px;
}

.rv-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* =================================================================
   contact
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
}

.info-card .k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.info-card .v {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.info-card .v a {
  color: var(--text);
}

.info-card .v a:hover {
  color: var(--blue-bright);
}

.info-card.accent-card {
  background: linear-gradient(150deg, rgba(61, 139, 255, 0.16), var(--surface) 70%);
  border-color: rgba(61, 139, 255, 0.3);
}

.info-card p {
  color: var(--text-2);
  font-size: 0.9rem;
}

.hours {
  width: 100%;
}

.hours .r {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}

.hours .r:last-child {
  border-bottom: 0;
}

.hours .d {
  color: var(--text-2);
}

.hours .h {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text);
}

.hours .r.today .d {
  color: var(--blue-bright);
  font-weight: 600;
}

.hours .r.today .h {
  color: var(--blue-bright);
}

.map-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05) brightness(0.85);
}

/* =================================================================
   legal
   ================================================================= */
.legal {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
}

.legal-toc h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
  font-weight: 500;
}

.legal-toc a {
  display: block;
  color: var(--text-2);
  font-size: 0.86rem;
  padding: 7px 10px;
  border-radius: 8px;
}

.legal-toc a:hover {
  color: var(--blue-bright);
  background: var(--blue-soft);
}

.legal-body h2 {
  font-size: 1.35rem;
  color: var(--text);
  margin: 44px 0 14px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-body p {
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-body strong {
  color: var(--text);
}

.legal-body ul {
  margin: 0 0 16px;
}

.legal-body li {
  color: var(--text-2);
  padding: 6px 0 6px 22px;
  position: relative;
}

.legal-body li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.pill-note {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-3);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin-bottom: 22px;
}

/* =================================================================
   coming soon
   ================================================================= */
.soon {
  min-height: 76vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.soon-inner {
  max-width: 600px;
  padding: 30px;
}

.soon .badge-ic {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: var(--blue-soft);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  margin: 0 auto 28px;
}

.soon h1 {
  margin-bottom: 16px;
}

.soon p {
  color: var(--text-2);
  margin-bottom: 28px;
}

.soon .row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================================================================
   footer
   ================================================================= */
.ft {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 70px 0 36px;
  margin-top: 30px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.ft-brand p {
  color: var(--text-2);
  font-size: 0.92rem;
  margin: 16px 0;
  max-width: 30ch;
}

.ft-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  font-weight: 500;
}

.ft-col a {
  display: block;
  color: var(--text-2);
  font-size: 0.92rem;
  padding: 6px 0;
}

.ft-col a:hover {
  color: var(--blue-bright);
}

.ft-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.ft-bottom p {
  color: var(--text-3);
  font-size: 0.82rem;
}

/* mobile sticky call */
.callbar {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: var(--r-pill);
  font-weight: 700;
  box-shadow: 0 14px 34px -10px rgba(61, 139, 255, 0.7);
}

.callbar:hover {
  color: #fff;
}

/* =================================================================
   reveal
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: 0.08s;
}

.reveal.d2 {
  transition-delay: 0.16s;
}

.reveal.d3 {
  transition-delay: 0.24s;
}

/* =================================================================
   responsive
   ================================================================= */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .checkup {
    max-width: 460px;
  }

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

  .statband {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

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

  .legal-toc {
    position: static;
  }

  .tile.feature,
  .tile.wide {
    grid-column: span 3;
  }
}

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

  .nav-links,
  .nav-phone,
  .nav-right {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav {
    padding: 12px 14px 0;
  }

  .nav-inner {
    padding: 0 18px;
  }

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

  .tile.feature,
  .tile.wide,
  .tile.tall {
    grid-column: span 2;
    grid-row: auto;
  }

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

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

  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .cta-panel {
    padding: 42px 26px;
  }

  .callbar {
    display: block;
  }

  body {
    padding-bottom: 84px;
  }
}

@media (max-width: 600px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .bento,
  .prod-grid {
    grid-template-columns: 1fr;
  }

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

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

  .tile.feature,
  .tile.wide,
  .tile.tall {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== BOOK A REPAIR FORM ===== */
.book-section { scroll-margin-top: 90px; }
.book-card {
  max-width: 860px; margin: 0 auto;
  background: linear-gradient(150deg, rgba(61,139,255,0.12), var(--surface) 72%);
  border: 1px solid rgba(61,139,255,0.30);
  border-radius: var(--r-lg); padding: 46px;
}
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.book-field { display: flex; flex-direction: column; gap: 7px; }
.book-field.full { grid-column: 1 / -1; }
.book-field label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2); }
.book-field label .req { color: var(--blue); }
.book-field input, .book-field select, .book-field textarea {
  width: 100%; padding: 13px 16px; font: inherit; font-size: 0.95rem;
  color: var(--text); background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-2); border-radius: var(--r);
  outline: none; transition: border-color var(--t), box-shadow var(--t);
}
.book-field textarea { min-height: 130px; resize: vertical; }
.book-field input::placeholder, .book-field textarea::placeholder { color: var(--text-3); }
.book-field input:focus, .book-field select:focus, .book-field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft);
}
.book-field select { cursor: pointer; }
.book-field select option { background: var(--surface); color: var(--text); }
.book-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.book-note { font-size: 0.82rem; color: var(--text-2); }
.book-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
@media (max-width: 640px) {
  .book-card { padding: 30px 22px; }
  .book-grid { grid-template-columns: 1fr; }
  .book-actions { flex-direction: column; align-items: stretch; }
}
