/* ==========================================================================
   naobatteryrepair.com
   ========================================================================== */

:root {
  --ink:        #0b1728;
  --ink-2:      #14243c;
  --body:       #3d4b5f;
  --muted:      #6b7a8f;
  --line:       #e2e8f0;
  --line-dark:  #253750;
  --bg:         #ffffff;
  --bg-soft:    #f5f8fc;
  --accent:     #1d7afc;
  --accent-dk:  #1359c4;
  --warm:       #ff8a3d;
  --warm-dk:    #e8701f;
  --green:      #12a26b;

  --wrap: 1140px;
  --r: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,23,40,.06), 0 2px 8px rgba(11,23,40,.05);
  --shadow-md: 0 4px 12px rgba(11,23,40,.07), 0 14px 40px rgba(11,23,40,.08);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.035em; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); letter-spacing: -.03em; }
h3 { font-size: 1.14rem; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1.1em; }
a  { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { max-width: 820px; }

.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;
}
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--accent); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: .96rem; line-height: 1.2;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-accent { --btn-bg: var(--warm); --btn-fg: #24170c; box-shadow: 0 4px 14px rgba(255,138,61,.32); }
.btn-accent:hover { --btn-bg: var(--warm-dk); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn-ghost:hover { --btn-bd: var(--accent); --btn-fg: var(--accent); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; border-radius: 12px; }
.btn-sm { padding: 9px 16px; font-size: .88rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,23,40,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 30px; height: 30px; flex: none; color: #9fc2f5; }
.brand-text { font-weight: 800; letter-spacing: -.03em; font-size: 1.06rem; color: #fff; }
.brand-text span { color: var(--warm); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #c3d2e6; font-size: .93rem; font-weight: 500; }
.nav a:hover { color: #fff; text-decoration: none; }
.nav .btn { color: #24170c; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 9px;
  background: transparent; border: 1px solid var(--line-dark); border-radius: 9px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1000px 520px at 78% 12%, rgba(29,122,252,.20), transparent 62%),
    radial-gradient(760px 420px at 8% 88%, rgba(255,138,61,.13), transparent 60%),
    linear-gradient(170deg, #0b1728 0%, #0f1e33 55%, #0b1728 100%);
  color: #d5e0ee;
  padding: clamp(52px, 8vw, 96px) 0 clamp(60px, 9vw, 104px);
  border-bottom: 1px solid var(--line-dark);
}
.hero-inner { display: grid; grid-template-columns: 1.12fr .88fr; gap: 54px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .38em; }
.hero .grad {
  background: linear-gradient(96deg, #62a6ff 0%, #9fd0ff 45%, #ffb648 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: 1.1rem; color: #b7c6da; max-width: 40em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .79rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #93aecf; background: rgba(255,255,255,.05);
  border: 1px solid var(--line-dark); border-radius: 999px; padding: 6px 14px; margin: 0 0 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(18,162,107,.22); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.hero-cta .btn-ghost { --btn-fg: #fff; --btn-bd: #33496a; }
.hero-cta .btn-ghost:hover { --btn-bd: #62a6ff; --btn-fg: #9fd0ff; }

.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.hero-points li { position: relative; padding-left: 27px; font-size: .95rem; color: #a9bbd2; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 15px; height: 8px; border-left: 2.2px solid var(--green); border-bottom: 2.2px solid var(--green);
  transform: rotate(-45deg);
}
.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art::before {
  content: ""; position: absolute; left: 50%; top: 52%;
  width: 82%; aspect-ratio: 1; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(29,122,252,.34) 0%, rgba(29,122,252,.10) 45%, rgba(29,122,252,0) 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-head {
  position: relative; width: 100%; max-width: 380px; height: auto;
  filter: drop-shadow(0 20px 44px rgba(0,0,0,.5));
}

/* ---------- stripe ---------- */
.stripe { background: var(--ink-2); color: #fff; border-bottom: 1px solid var(--line-dark); }
.stripe-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 18px; padding-block: 26px; text-align: center;
}
.stripe-grid div { display: flex; flex-direction: column; gap: 2px; }
.stripe-grid strong { font-size: 1.55rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stripe-grid span { font-size: .84rem; color: #93aecf; }

/* ---------- sections ---------- */
.section { padding: clamp(56px, 8vw, 92px) 0; }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 .7em;
}
.section-lede { font-size: 1.06rem; max-width: 62ch; color: var(--body); margin-bottom: 2.4em; }
.fineprint { font-size: .87rem; color: var(--muted); margin-top: 1.6em; max-width: 70ch; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #c9d8ec; }
.card-ico {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 15px;
  display: grid; place-items: center; font-size: 1.28rem;
  background: linear-gradient(140deg, #e8f1ff, #d6e6ff); color: var(--accent-dk);
}
.card h3 { margin-bottom: .4em; }
.card p { margin: 0; font-size: .95rem; color: var(--body); }

.callout {
  margin-top: 28px; padding: 20px 24px;
  background: #fff8ef; border: 1px solid #f6d9b6; border-left: 4px solid var(--warm);
  border-radius: 10px;
}
.callout p { margin: 0; font-size: .95rem; color: #6b4a24; }
.callout strong { color: #4d3316; }

/* ---------- steps ---------- */
.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.step-n {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  display: grid; place-items: center; font-weight: 800; font-size: .98rem;
  background: var(--ink); color: #fff;
}
.steps h3 { margin-bottom: .3em; }
.steps p { margin: 0; font-size: .96rem; }

.note {
  margin-top: 26px; padding: 22px 24px;
  background: #fff; border: 1px dashed #c3d2e6; border-radius: var(--r);
}
.note h4 { margin-bottom: .45em; }
.note p { margin: 0; font-size: .94rem; color: var(--muted); }

/* ---------- spec table ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: #fff; box-shadow: var(--shadow-sm); }
.spec { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .95rem; }
.spec th, .spec td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.spec thead th {
  background: var(--bg-soft); color: var(--ink);
  font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 700;
}
.spec tbody tr:last-child th, .spec tbody tr:last-child td { border-bottom: 0; }
.spec tbody th { color: var(--ink); font-weight: 700; }
.pill {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
}
.pill.ok  { background: #e2f6ee; color: #0c7c51; }
.pill.ask { background: #fdf0dd; color: #96601d; }

.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px; margin: 26px 0 0; padding: 0;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.specs-grid > div { background: #fff; padding: 18px 20px; }
.specs-grid dt { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.specs-grid dd { margin: 0; font-weight: 700; color: var(--ink); font-size: 1rem; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.shot { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.shot img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--bg-soft); }
.shot figcaption { padding: 14px 18px; font-size: .89rem; color: var(--muted); border-top: 1px solid var(--line); }

/* placeholder shown until a real photo is dropped in */
.shot img.missing {
  object-fit: contain;
  background:
    repeating-linear-gradient(45deg, #eef3fa 0 12px, #e7eef8 12px 24px);
  position: relative;
}
.shot.is-missing img { display: none; }
.shot.is-missing .ph {
  display: grid; place-items: center; aspect-ratio: 1 / 1; gap: 6px;
  background: repeating-linear-gradient(45deg, #eef3fa 0 12px, #e7eef8 12px 24px);
  color: #8ea3bd; font-size: .84rem; font-weight: 600; text-align: center; padding: 16px;
}

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: .68fr 1fr; gap: 52px; align-items: start; }
.about-photo img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md);
  background: var(--bg-soft);
}
.about-copy p { font-size: 1.02rem; }
.about-points { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 13px; }
.about-points li { position: relative; padding-left: 30px; font-size: .96rem; }
.about-points li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 15px; height: 8px; border-left: 2.2px solid var(--accent); border-bottom: 2.2px solid var(--accent);
  transform: rotate(-45deg);
}
.about-points strong { color: var(--ink); }

/* ---------- CTA / contact ---------- */
.section-cta { background: var(--bg-soft); border-block: 1px solid var(--line); }
.start-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 36px; align-items: start; }

.start-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.start-steps li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.start-steps span {
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-weight: 800; font-size: .88rem; flex: none;
}
.start-steps p { margin: 0; font-size: .96rem; }
.start-steps strong { color: var(--ink); }

.contact-card {
  background: var(--ink); color: #c3d2e6;
  border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-md);
}
.contact-card h3 { color: #fff; margin-bottom: .5em; }
.contact-line { font-size: 1.08rem; font-weight: 700; margin-bottom: .3em; word-break: break-word; }
.contact-line a { color: #9fd0ff; }
.contact-sub { font-size: .9rem; color: #93aecf; }
.contact-btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 16px; }
.contact-btns .btn-ghost { --btn-fg: #fff; --btn-bd: #33496a; }
.contact-btns .btn-ghost:hover { --btn-bd: #62a6ff; --btn-fg: #9fd0ff; }
.contact-note { font-size: .85rem; color: #7f95b3; margin: 0; }

.ship-warning {
  margin-top: 30px; padding: 20px 24px;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: 10px;
}
.ship-warning h4 { margin-bottom: .4em; }
.ship-warning p { margin: 0; font-size: .93rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 0 22px; box-shadow: var(--shadow-sm); transition: border-color .18s ease;
}
.faq details[open] { border-color: #c9d8ec; }
.faq summary {
  list-style: none; cursor: pointer; padding: 19px 34px 19px 0; position: relative;
  font-weight: 650; color: var(--ink); font-size: 1.01rem; line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%;
  width: 9px; height: 9px; margin-top: -6px;
  border-right: 2.2px solid var(--muted); border-bottom: 2.2px solid var(--muted);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { padding: 0 0 20px; margin: 0; font-size: .96rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #93aecf; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; padding-bottom: 34px; }
.footer-brand .brand-text { display: block; margin-bottom: 14px; font-size: 1.1rem; }
.footer-brand p { font-size: .86rem; color: #7f95b3; max-width: 56ch; margin: 0; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; align-content: start; }
.footer-nav a { color: #c3d2e6; font-size: .92rem; }
.footer-base {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid var(--line-dark); padding-block: 20px;
}
.footer-base p { margin: 0; font-size: .85rem; color: #7f95b3; }
.footer-base a { color: #93aecf; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 38px; }
  .hero-art { order: -1; }
  .hero-head { max-width: 280px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-photo { max-width: 300px; }
  .start-grid { grid-template-columns: 1fr; gap: 28px; }
  .stripe-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line-dark);
    padding: 8px 22px 20px; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line-dark); font-size: 1rem; }
  .nav .btn { margin-top: 14px; border-bottom: 0; justify-content: center; }
  .steps li { grid-template-columns: 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .nav-toggle, .hero-cta, .contact-btns { display: none !important; }
  body { color: #000; }
}

/* photo placeholder — about portrait */
.about-photo.is-missing img { display: none; }
.about-photo.is-missing .ph {
  display: grid; place-items: center; aspect-ratio: 1 / 1; padding: 16px;
  border-radius: var(--r-lg); border: 1px solid var(--line);
  background: repeating-linear-gradient(45deg, #eef3fa 0 12px, #e7eef8 12px 24px);
  color: #8ea3bd; font-size: .84rem; font-weight: 600; text-align: center;
}

/* ---------- shipping section ---------- */
h3.sub {
  font-size: 1.28rem; margin: 44px 0 18px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
h3.sub:first-of-type { border-top: 0; padding-top: 0; }

.callout.danger { background: #fff5f5; border-color: #f3c6c6; border-left-color: #d64545; }
.callout.danger h4 { color: #8c2b2b; margin-bottom: .45em; }
.callout.danger p { color: #7a3232; }
.callout.danger strong { color: #5f2020; }
.callout h4 { margin-bottom: .4em; }

.steps-compact li { padding: 18px 22px; }
.steps-compact h3 { font-size: 1.05rem; }

.carriers { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 20px; }
.carrier {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.carrier-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.carrier-head h4 { margin: 0; font-size: 1.16rem; }
.carrier > p { font-size: .95rem; }

.tick { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.tick li { position: relative; padding-left: 26px; font-size: .93rem; }
.tick li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 13px; height: 7px; border-left: 2.2px solid var(--accent); border-bottom: 2.2px solid var(--accent);
  transform: rotate(-45deg);
}

.mark-spec {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 18px; margin: 0 0 18px;
}
.mark-spec p { margin: 0 0 .6em; font-size: .91rem; }
.mark-spec p:last-child { margin-bottom: 0; }
.mark-title {
  font-size: .74rem !important; letter-spacing: .09em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}
.mark-text {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: .88rem !important; line-height: 1.55;
  background: #fff; border: 1px dashed #c3d2e6; border-radius: 8px;
  padding: 12px 14px; color: var(--ink); font-weight: 600;
}
.carrier-links {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin: auto 0 0; padding-top: 6px; font-size: .9rem; font-weight: 600;
}
.carrier-links a::after { content: " \2197"; font-weight: 400; }

.footer-disclaimer { margin-top: 12px !important; font-size: .8rem !important; color: #6b81a0 !important; }

/* ---------- honest-risks block ---------- */
.risk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.risk {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--warm);
  border-radius: var(--r); padding: 26px 26px 22px; box-shadow: var(--shadow-sm);
}
.risk-ico { font-size: 1.5rem; line-height: 1; margin-bottom: 12px; }
.risk h4 { font-size: 1.1rem; margin-bottom: .5em; }
.risk p { font-size: .95rem; margin-bottom: .9em; }
.risk p:last-child { margin-bottom: 0; }

/* ---------- section photos ---------- */
.symptom-top { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: start; }
.symptom-top .section-lede { margin-bottom: 0; }
.symptom-photo { margin: 0; width: 220px; flex: none; }
.symptom-photo img {
  width: 100%; border-radius: var(--r); border: 1px solid var(--line);
  background: var(--bg-soft); box-shadow: var(--shadow-sm);
}

.compat-top { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; margin-bottom: 32px; }
.compat-photo { margin: 0; }
.compat-photo img {
  width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: var(--bg-soft); box-shadow: var(--shadow-md);
}
.compat-copy .section-lede { margin-bottom: 1.6em; }
.specs-stack { margin-top: 0; }

figcaption a { color: var(--muted); text-decoration: underline; }
.symptom-photo figcaption, .compat-photo figcaption {
  font-size: .76rem; color: var(--muted); line-height: 1.5; margin-top: 10px;
}

/* ---------- price panel ---------- */
.price-label {
  font-size: .74rem; letter-spacing: .11em; text-transform: uppercase;
  font-weight: 700; color: #7f95b3; margin: 0 0 2px;
}
.price {
  font-size: 3.5rem; font-weight: 800; letter-spacing: -.04em; line-height: 1;
  color: #fff; margin: 0 0 18px;
}
.price .cur { font-size: 1.9rem; font-weight: 700; vertical-align: super; margin-right: 2px; color: #9fd0ff; }
.price-inc { list-style: none; margin: 0 0 24px; padding: 0 0 22px; display: grid; gap: 9px; border-bottom: 1px solid var(--line-dark); }
.price-inc li { position: relative; padding-left: 25px; font-size: .91rem; color: #b7c6da; }
.price-inc li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 13px; height: 7px; border-left: 2.2px solid var(--green); border-bottom: 2.2px solid var(--green);
  transform: rotate(-45deg);
}
.contact-card h3 { font-size: 1.05rem; }

@media (max-width: 940px) {
  .compat-top { grid-template-columns: 1fr; gap: 26px; }
  .compat-photo { max-width: 260px; }
  .symptom-top { grid-template-columns: 1fr; gap: 24px; }
  .symptom-photo { width: 190px; }
}

.contact-alt { font-size: .95rem; margin: -2px 0 .6em; color: #7f95b3; }
.contact-alt a { color: #9fd0ff; }

/* ---------- enquiry form ---------- */
.form-panel {
  margin-top: 34px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 34px 30px; box-shadow: var(--shadow-md);
}
.form-panel h3 { font-size: 1.4rem; margin-bottom: .4em; }
.form-intro { font-size: .98rem; max-width: 62ch; margin-bottom: 28px; }

.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px 22px; }
.field { display: flex; flex-direction: column; gap: 7px; margin: 0 0 18px; }
.field-grid .field { margin: 0; }

.field label { font-size: .88rem; font-weight: 650; color: var(--ink); }
.req { color: var(--warm-dk); margin-left: 1px; }
.opt { font-weight: 500; color: var(--muted); font-size: .82rem; margin-left: 4px; }
.hint { font-size: .8rem; color: var(--muted); }

.field input, .field select, .field textarea {
  font: inherit; font-size: .97rem; color: var(--ink);
  width: 100%; padding: 12px 14px;
  background: #fff; border: 1.5px solid #cfdae8; border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 118px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7a8f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa9bc; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(29,122,252,.16);
}
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid {
  border-color: #d64545; box-shadow: 0 0 0 3px rgba(214,69,69,.13);
}

/* honeypot — off-screen, never shown, never announced */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 8px; padding-top: 22px; border-top: 1px solid var(--line);
}
.form-actions .btn { flex: none; }
.form-actions .btn:disabled { opacity: .65; cursor: progress; transform: none; }
.form-privacy { font-size: .84rem; color: var(--muted); margin: 0; max-width: 46ch; }

.form-status { margin: 16px 0 0; font-size: .92rem; font-weight: 600; }
.form-status:empty { display: none; }
.form-status.is-busy  { color: var(--muted); }
.form-status.is-error { color: #b03434; }

.form-done { text-align: center; padding: 18px 0 6px; }
.form-done:focus { outline: none; }
.done-mark {
  width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem; font-weight: 700;
  background: #e2f6ee; color: var(--green);
}
.form-done h4 { font-size: 1.3rem; margin-bottom: .5em; }
.form-done p { max-width: 52ch; margin-inline: auto; font-size: .97rem; }
.done-reminder {
  margin-top: 20px; padding: 14px 18px; font-size: .9rem;
  background: #fff8ef; border: 1px solid #f6d9b6; border-radius: 10px; color: #6b4a24;
}
.done-reminder strong { color: #4d3316; }

@media (max-width: 760px) {
  .form-panel { padding: 26px 20px 24px; }
  .form-actions { gap: 16px; }
  .form-actions .btn { width: 100%; }
}

/* About section now shows the NAO head illustration rather than a portrait, so it needs
   containing and a lit backdrop instead of the cover-crop used for a photo. */
.about-photo .about-head {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 13%;
  background:
    radial-gradient(circle at 50% 44%, #e7f0fd 0%, #f2f6fc 55%, #eef3f9 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.price-when {
  margin: -8px 0 18px; font-size: .89rem; line-height: 1.55; color: #9fd0ff; font-weight: 600;
}
