/* ==========================================================================
   GeekABC — stylesheet
   Tokens taken directly from the brand blueprint (sections 2 & 3).
   Design rule: navy carries trust, orange means "do this next".
   ========================================================================== */

:root {
  /* Brand */
  --navy:          #0B3A78;
  --navy-2:        #123F7A;
  --navy-deep:     #082B59;
  --orange:        #F58220;
  --orange-dark:   #DC6E11;
  --orange-light:  #FFF1E6;
  --white:         #FFFFFF;
  --gray:          #F5F7FA;
  --gray-line:     #E3E8EF;
  --text:          #243447;
  --muted:         #526273;

  /* Type */
  --font-head: "Poppins", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Open Sans", "Segoe UI", Verdana, sans-serif;

  /* Space */
  --wrap: 1200px;
  --gap: 24px;
  --section-y: 84px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 6px rgba(11, 58, 120, .07);
  --shadow:    0 8px 24px rgba(11, 58, 120, .10);
  --shadow-lg: 0 18px 44px rgba(11, 58, 120, .14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;              /* blueprint: 18px minimum on desktop */
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
ul { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.35rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem);  font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem);  font-weight: 600; }
h4 { font-size: 1.12rem; font-weight: 600; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.icon { width: 24px; height: 24px; flex: none; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: var(--section-y) 0; }
.section--gray { background: var(--gray); }
.section--tight { padding: 56px 0; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 0 0 10px 0;
  font-family: var(--font-head); font-weight: 600;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 500; font-size: 1.06rem;
  padding: 16px 28px; min-height: 58px;      /* big, senior-friendly targets */
  border-radius: 10px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: background .18s, color .18s, transform .18s, box-shadow .18s;
}
.btn .icon { width: 22px; height: 22px; flex: none; }
.btn--call   { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn--call:hover   { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--navy   { background: var(--navy-2); color: #fff; }
.btn--navy:hover   { background: var(--navy-deep); transform: translateY(-2px); }
.btn--ghost  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover  { background: var(--navy); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }
.btn--wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--white); border-bottom: 1px solid var(--gray-line); font-size: .95rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.topbar__logo { display: flex; }
.topbar__logo svg { width: 272px; height: auto; }
.topbar__facts { display: flex; gap: 44px; }
.topbar__fact { display: flex; align-items: center; gap: 12px; }
.topbar__fact .icon { width: 26px; height: 26px; color: var(--navy); flex: none; }
.topbar__label { display: block; color: var(--muted); font-size: .84rem; line-height: 1.4; }
.topbar__value { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--orange); text-decoration: none; }
.topbar__value:hover { text-decoration: underline; }
.topbar__small { display: block; font-size: .84rem; color: var(--navy); font-weight: 600; }
.topbar__hours { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .95rem; line-height: 1.45; }

/* ---------- Nav ---------- */
.nav { background: var(--navy); position: sticky; top: 0; z-index: 60; }
.nav__inner { display: flex; align-items: stretch; justify-content: space-between; gap: 16px; }
.nav__list { display: flex; list-style: none; flex-wrap: wrap; }
.nav__link {
  display: flex; align-items: center; gap: 7px; height: 100%;
  padding: 18px 16px; color: #fff; text-decoration: none;
  font-family: var(--font-head); font-weight: 500; font-size: 1.01rem;
  border-bottom: 4px solid transparent;
}
.nav__link:hover, .nav__link:focus-visible { background: var(--navy-2); }
.nav__link[aria-current="page"] { border-bottom-color: var(--orange); }
.nav__cta { display: flex; align-items: center; padding: 10px 0; }
.nav__cta .btn { min-height: 46px; padding: 10px 22px; font-size: 1rem; }
.nav__toggle { display: none; }

.has-drop { position: relative; }
.drop__btn { background: none; border: 0; font: inherit; }
.drop__panel {
  position: absolute; top: 100%; left: 0; min-width: 290px;
  background: #fff; border-radius: 0 0 12px 12px; box-shadow: var(--shadow-lg);
  padding: 10px; list-style: none; display: none; border-top: 4px solid var(--orange);
}
.has-drop:hover .drop__panel,
.has-drop:focus-within .drop__panel { display: block; }
.drop__panel a {
  display: block; padding: 11px 16px; border-radius: 8px;
  color: var(--navy); text-decoration: none; font-family: var(--font-head); font-weight: 500; font-size: 1rem;
}
.drop__panel a:hover { background: var(--orange-light); color: var(--navy-deep); }
.drop__caret { width: 14px; height: 14px; }

/* ---------- Hero: full-bleed photograph with an overlaid copy panel ---------- */
.hero { position: relative; background: #EFF3F8; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.94) 34%,
              rgba(255,255,255,.72) 46%, rgba(255,255,255,0) 60%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__panel { max-width: 620px; padding: 76px 0 84px; }
.hero h1 { margin-bottom: .55em; }
.hero__lead-line { display: block; }
.hero__kw {
  display: block; margin-top: .45em;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 600; color: var(--navy-2);
  letter-spacing: 0; line-height: 1.35;
}
.hero__panel p { font-size: 1.08rem; max-width: 52ch; margin-bottom: 30px; }
.hero__sub { font-family: var(--font-head); font-weight: 600; color: var(--orange-dark);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem); margin-bottom: .7em; }

/* ---------- Offer band ---------- */
.offer {
  background: var(--orange-light); border: 2px solid #F8C99B; border-radius: var(--radius-lg);
  padding: 34px 38px; display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center;
  box-shadow: var(--shadow-sm);
}
.offer__badge {
  width: 104px; height: 104px; border-radius: 50%; background: var(--navy);
  display: grid; place-items: center; flex: none;
}
.offer__badge .icon { width: 54px; height: 54px; color: #fff; }
.offer h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: .35em; }
.offer h2 .accent { color: var(--orange); }
.offer p { margin: 0; color: var(--text); }
.offer__aside {
  border-left: 2px solid #F1C79E; padding-left: 34px; text-align: center; min-width: 220px;
}
.offer__aside .label { color: var(--muted); font-size: .95rem; display: block; }
.offer__price { font-family: var(--font-head); font-weight: 700; font-size: 2.9rem; color: var(--orange); line-height: 1.1; }

/* ---------- Section headings ---------- */
.head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.head--left { text-align: left; margin-left: 0; margin-bottom: 34px; max-width: 62ch; }
.head p { color: var(--muted); font-size: 1.1rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem;
  color: var(--orange); margin-bottom: 12px;
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: var(--gap); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #C9D8EC; }
.card__icon {
  width: 68px; height: 68px; border-radius: 50%; background: var(--gray);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card__icon .icon { width: 36px; height: 36px; color: var(--navy); }
a.card:hover .card__icon { background: var(--orange-light); }
.card h3 { font-size: 1.08rem; margin-bottom: .45em; }
.card p { font-size: .97rem; color: var(--muted); line-height: 1.6; margin: 0; }
.card--sm { padding: 24px 20px; }
.card__more { margin-top: auto; padding-top: 14px; color: var(--orange); font-family: var(--font-head); font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 7px; }
.card__more .icon { width: 18px; height: 18px; }

.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature .icon { width: 34px; height: 34px; color: var(--navy); flex: none; }
.feature h3 { font-size: 1.08rem; margin-bottom: .25em; }
.feature p { font-size: .98rem; color: var(--muted); margin: 0; }

/* ---------- Split blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--art-first .split__art { order: -1; }
.split__art { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__art img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 62%; }
.checklist { list-style: none; display: grid; gap: 12px; margin: 22px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.04rem; }
.checklist .icon { width: 24px; height: 24px; color: var(--orange); flex: none; margin-top: 4px; }
.checklist--2 { grid-template-columns: 1fr 1fr; column-gap: 48px; row-gap: 14px; }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.steps li { counter-increment: step; text-align: center; padding: 0 8px; position: relative; }
.steps li::before {
  content: counter(step); display: grid; place-items: center;
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem;
}
.steps li::after {
  content: ""; position: absolute; top: 32px; left: calc(50% + 44px); right: calc(-50% + 44px);
  height: 3px; background: #D9E2EE;
}
.steps li:last-child::after { display: none; }
/* Stacked variant used inside narrow columns — no connector line, no overflow */
.steps--stacked { grid-template-columns: 1fr; gap: 18px; }
.steps--stacked li { display: flex; gap: 16px; text-align: left; padding: 0; }
.steps--stacked li::before { width: 46px; height: 46px; margin: 0; font-size: 1.15rem; flex: none; }
.steps--stacked li::after { display: none; }
.steps--stacked li > div { flex: 1; }

.steps h3 { font-size: 1.05rem; margin-bottom: .3em; }
.steps p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); max-width: 900px; margin: 0 auto; }
.price {
  border-radius: var(--radius); padding: 36px 32px; text-align: center; border: 2px solid var(--gray-line); background: #fff;
}
.price--free { border-color: var(--orange); background: var(--orange-light); }
.price__amount { font-family: var(--font-head); font-weight: 700; font-size: 2.3rem; color: var(--navy); line-height: 1.2; margin: 6px 0 10px; }
.price--free .price__amount { color: var(--orange); }
.price h3 { font-size: 1.05rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .86rem; }
.price p { margin: 0; color: var(--muted); font-size: .99rem; }
.disclaimer { text-align: center; color: var(--muted); font-size: .95rem; margin-top: 26px; }

/* ---------- Service area ---------- */
.area { background: var(--gray); border-radius: var(--radius-lg); padding: 46px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.area__list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 20px; margin-top: 24px; }
.area__list li { display: flex; gap: 9px; align-items: center; font-family: var(--font-head); font-weight: 500; }
.area__list--wide { grid-template-columns: repeat(4, 1fr); max-width: 940px; margin-inline: auto; }
.area__list .icon { width: 20px; height: 20px; color: var(--orange); flex: none; }
.area__art { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.area__art img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.review { background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius); padding: 28px; }
.review__stars { color: var(--orange); font-size: 1.3rem; letter-spacing: 3px; }
.review__slot { min-height: 92px; display: grid; place-items: center; text-align: center; color: var(--muted); font-size: .95rem; border: 2px dashed var(--gray-line); border-radius: 10px; padding: 16px; margin: 14px 0; }
.review cite { display: block; font-style: normal; font-family: var(--font-head); font-weight: 600; color: var(--navy); }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius); overflow: hidden; }
.faq details[open] { border-color: #C9D8EC; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 60px 22px 26px; position: relative;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 26px; top: 50%; width: 13px; height: 13px;
  border-right: 3px solid var(--orange); border-bottom: 3px solid var(--orange);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq__a { padding: 0 26px 24px; color: var(--text); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; padding: 34px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; text-align: center; }
.cta-band h2 { color: #fff; font-size: 1.45rem; margin: 0; }
.cta-band p { margin: 0; color: #CBD9EC; }
.cta-band .icon { width: 30px; height: 30px; color: var(--orange); }

.cta-panel { background: var(--navy); border-radius: var(--radius-lg); color: #fff; padding: 56px; text-align: center; }
.cta-panel h2 { color: #fff; }
.cta-panel p { color: #CBD9EC; max-width: 62ch; margin-inline: auto; }
.cta-panel .btn-row { justify-content: center; margin-top: 28px; }

/* ---------- Footer ---------- */
.footer { background: #071F3F; color: #C3D2E4; padding: 62px 0 0; font-size: .98rem; }
.footer a { color: #C3D2E4; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__logo svg { width: 236px; }
.footer h3 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact .icon { width: 21px; height: 21px; color: var(--orange); flex: none; margin-top: 4px; }
.footer__phone { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: #fff !important; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.13); margin-top: 48px; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .92rem; }

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--muted); font-size: .9rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1.05rem; color: var(--text);
  padding: 14px 16px; min-height: 56px; border: 2px solid #D6DEE9; border-radius: 10px; background: #fff;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-2); outline: 3px solid rgba(245,130,32,.35); outline-offset: 1px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-note { color: var(--muted); font-size: .93rem; margin-top: 16px; }

/* ---------- Info list (contact page) ---------- */
.info-list { list-style: none; display: grid; gap: 24px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .icon { width: 30px; height: 30px; color: var(--orange); flex: none; margin-top: 3px; }
.info-list strong { display: block; font-family: var(--font-head); color: var(--navy); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--gray); border-bottom: 1px solid var(--gray-line); padding: 54px 0; }
.page-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.page-hero__grid--portrait { grid-template-columns: 1.1fr .9fr; align-items: center; }
.split__art--portrait img { aspect-ratio: auto; height: auto; object-fit: contain; }
.page-hero p { font-size: 1.1rem; max-width: 56ch; }
.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: .92rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs li { list-style: none; }
.crumbs li + li::before { content: "›"; margin-right: 8px; color: #9AA7B6; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.lead { font-size: 1.12rem; }
.muted { color: var(--muted); }
.callout {
  background: var(--orange-light); border-left: 6px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px;
}
.callout--wide { display: grid; gap: 6px; }
.callout--wide p { max-width: 90ch; }
.callout h3 { margin-bottom: .3em; }
.callout p { margin: 0; }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li { background: #fff; border: 1px solid var(--gray-line); border-radius: 999px; padding: 8px 18px; font-size: .96rem; font-family: var(--font-head); font-weight: 500; color: var(--navy); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .topbar__facts { gap: 28px; }
}

@media (max-width: 900px) {
  :root { --section-y: 60px; }

  /* Hero stacks: photo on top, copy below on solid ground */
  .hero { display: flex; flex-direction: column-reverse; }
  .hero__media { position: static; }
  .hero__media img { aspect-ratio: 16 / 10; object-position: 72% 50%; }
  .hero::after { display: none; }
  .hero__panel { max-width: none; padding: 34px 0 40px; }
  .area__list--wide { grid-template-columns: repeat(2, 1fr); }
  .page-hero__grid--portrait { grid-template-columns: 1fr; }
  .split__art--portrait img { aspect-ratio: auto; }
  .split, .area, .page-hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .split--art-first .split__art { order: 0; }
  .offer { grid-template-columns: 1fr; text-align: center; justify-items: center; margin-top: 0; padding: 30px 24px; gap: 22px; }
  .offer__aside { border-left: 0; border-top: 2px solid #F1C79E; padding: 22px 0 0; width: 100%; }
  .grid--3, .grid--2, .reviews, .price-grid, .checklist--2, .field-row { grid-template-columns: 1fr; }
  .area__list { grid-template-columns: repeat(2, 1fr); }

  /* Mobile navigation */
  .nav__inner { flex-wrap: wrap; align-items: center; }
  .nav__toggle {
    display: inline-flex; align-items: center; gap: 10px; margin-left: auto;
    background: var(--navy-2); color: #fff; border: 0; border-radius: 8px;
    font-family: var(--font-head); font-weight: 600; font-size: 1rem;
    padding: 12px 18px; min-height: 50px; cursor: pointer;
  }
  .nav__toggle .icon { width: 22px; height: 22px; }
  .nav__list { display: none; width: 100%; flex-direction: column; padding-bottom: 12px; }
  .nav__inner.is-open .nav__list { display: flex; }
  .nav__link { padding: 15px 6px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .nav__link[aria-current="page"] { border-bottom-color: var(--orange); }
  .drop__panel { position: static; display: none; box-shadow: none; border-radius: 10px; margin: 0 0 10px; background: var(--navy-deep); border-top: 0; }
  .has-drop.is-open .drop__panel { display: block; }
  .has-drop:hover .drop__panel { display: none; }
  .has-drop.is-open:hover .drop__panel { display: block; }
  .drop__panel a { color: #DCE7F5; }
  .drop__panel a:hover { background: var(--navy-2); color: #fff; }
  .nav__cta { display: none; }

  .topbar__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .topbar__facts { flex-direction: column; gap: 10px; }

  /* Sticky call bar keeps the phone number one tap away */
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    background: #fff; border-top: 1px solid var(--gray-line); padding: 10px 14px;
    box-shadow: 0 -6px 20px rgba(11,58,120,.12);
  }
  .callbar .btn { min-height: 54px; padding: 12px 10px; font-size: 1rem; }
  body { padding-bottom: 84px; }

  .cta-panel, .form-card { padding: 32px 22px; }
  .area { padding: 30px 22px; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .grid--5, .grid--3, .grid--4, .steps, .area__list, .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .callbar .btn { width: auto; }
  .btn-row .btn { width: 100%; }
}

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

@media print {
  .nav, .callbar, .cta-band, .topbar__facts { display: none; }
}
