/* ==========================================================================
   Express Key Locksmith design system
   Palette is sampled from the logo: deep blue gradients, bright blue key,
   orange wing and wordmark.
   ========================================================================== */

:root {
  --navy-950: #05182f;
  --navy-900: #0a2447;
  --navy-800: #10345f;
  --navy-700: #17457a;
  --blue-700: #14508f;
  --blue-600: #1a68b8;
  --blue-500: #2c8ad6;
  --blue-200: #b9d7f3;
  --blue-100: #e8f2fc;
  --blue-050: #f3f8fe;

  --orange-700: #b8410f;
  --orange-600: #d8551a;
  --orange-500: #f2701d;
  --orange-400: #ff8a2b;
  --amber-300: #ffb04a;

  --ink: #0f1e33;
  --body: #46566e;
  --muted: #6a7a92;
  --line: #dce4ef;
  --line-soft: #eaf0f8;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 36, 71, .06), 0 2px 8px rgba(10, 36, 71, .05);
  --shadow: 0 4px 14px rgba(10, 36, 71, .08), 0 12px 32px rgba(10, 36, 71, .07);
  --shadow-lg: 0 18px 50px rgba(10, 36, 71, .18);

  --container: 1200px;
  --header-h: 74px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --grad-orange: linear-gradient(135deg, var(--orange-500), var(--orange-400) 55%, var(--amber-300));
  --grad-navy: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  --grad-blue: linear-gradient(135deg, var(--blue-600), var(--blue-500));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.16;
  margin: 0 0 .55em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.05rem); }
h2 { font-size: clamp(1.55rem, 2.7vw, 2.15rem); }
h3 { font-size: clamp(1.14rem, 1.5vw, 1.3rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-700); text-decoration-color: rgba(26, 104, 184, .35); text-underline-offset: 3px; }
a:hover { color: var(--orange-600); text-decoration-color: currentColor; }

strong { color: var(--ink); font-weight: 700; }
/* Bold lead-ins need to invert on the dark surfaces or they disappear. */
.hero strong,
.section--navy strong,
.cta strong,
.callout strong,
.footer strong { color: #fff; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25rem; }
li { margin-bottom: .45em; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
  font-weight: 700;
}
.skip:focus { left: 0; color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.eyebrow {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin: 0 0 .7rem;
}

.icon { flex: 0 0 auto; }

/* ------------------------------- Buttons --------------------------------- */

.btn {
  --btn-bg: var(--grad-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: #fff;
  font: inherit;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(216, 85, 26, .28);
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(216, 85, 26, .34);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  color: var(--navy-900);
  border: 2px solid var(--line);
  box-shadow: none;
  background: #fff;
}
.btn--ghost:hover {
  color: var(--navy-900);
  border-color: var(--blue-500);
  background: var(--blue-050);
  box-shadow: var(--shadow-sm);
}

.btn--block { width: 100%; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.08rem; }

/* ------------------------------- Header ---------------------------------- */

.header { position: sticky; top: 0; z-index: 100; }

.topbar {
  background: var(--navy-950);
  color: #cfe0f2;
  font-size: .84rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
}
.topbar p, .topbar a {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
}
.topbar a { color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap; }
.topbar a:hover { color: var(--amber-300); }
.topbar svg { color: var(--orange-400); }

.header__main {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s ease;
}
.header.is-stuck .header__main { box-shadow: 0 6px 22px rgba(10, 36, 71, .1); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo img { height: 44px; width: auto; }

.header__actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; }
.header__call { padding: .7rem 1.15rem; font-size: .97rem; }

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--navy-900);
}
.burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }

/* --------------------------------- Nav ----------------------------------- */

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__list > li { margin: 0; position: relative; }

.nav__list > li > a {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .6rem .7rem;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  font-weight: 700;
  font-size: .97rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav__list > li > a:hover,
.nav__list > li:hover > a { background: var(--blue-050); color: var(--blue-700); }
.nav__list > li > a[aria-current="page"] { color: var(--orange-600); }
.nav__chevron { transition: transform .18s ease; }
.has-dropdown:hover .nav__chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  translate: -50% 0;
  min-width: 288px;
  padding: .5rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown ul { list-style: none; margin: 0; padding: 0; }
.dropdown li { margin: 0; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .58rem .7rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
}
.dropdown a:hover { background: var(--blue-050); color: var(--blue-700); }
.dropdown svg { color: var(--blue-500); }
.dropdown__overview { border-bottom: 1px solid var(--line-soft); margin-bottom: .35rem; padding-bottom: .35rem; }
.dropdown__overview a { color: var(--orange-600); font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; }
.dropdown__overview a:hover { background: #fff5ee; color: var(--orange-700); }

/* ----------------------------- Mobile nav -------------------------------- */

.mobile-nav {
  position: fixed;
  inset: calc(var(--header-h) + 38px) 0 0;
  background: rgba(5, 24, 47, .45);
  overflow-y: auto;
  z-index: 90;
}
.mobile-nav__panel {
  background: #fff;
  padding: 1rem clamp(1rem, 4vw, 2rem) 2.5rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__list { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.mobile-nav__list > li { margin: 0; border-bottom: 1px solid var(--line-soft); }

.mobile-nav__link,
.mobile-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .95rem .25rem;
  color: var(--navy-900);
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav details[open] summary svg { transform: rotate(180deg); }
.mobile-nav summary svg { transition: transform .18s ease; color: var(--blue-500); }

.mobile-nav__sub { list-style: none; margin: 0 0 .8rem; padding: 0 0 0 .25rem; }
.mobile-nav__sub li { margin: 0; }
.mobile-nav__sub a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .25rem;
  color: var(--body);
  font-size: .97rem;
  font-weight: 600;
  text-decoration: none;
}
.mobile-nav__sub svg { color: var(--blue-500); }
.mobile-nav__overview { color: var(--orange-600) !important; font-weight: 800; }

body.nav-open { overflow: hidden; }

/* -------------------------------- Hero ----------------------------------- */

.hero {
  position: relative;
  background: var(--grad-navy);
  color: #dce9f7;
  overflow: hidden;
  padding: clamp(2.75rem, 6vw, 4.75rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 340px at 12% -10%, rgba(44, 138, 214, .34), transparent 70%),
    radial-gradient(560px 300px at 92% 8%, rgba(242, 112, 29, .22), transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23bcd8f5' stroke-width='1.4' stroke-linecap='round'%3E%3Ccircle cx='18' cy='18' r='5'/%3E%3Cpath d='M22 22l11 11M30 33l3-3M33 36l3-3'/%3E%3Crect x='47' y='47' width='13' height='10' rx='2'/%3E%3Cpath d='M50 47v-3a3.5 3.5 0 0 1 7 0v3'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 900px; }
.hero--wide .hero__inner { max-width: 1040px; }
.hero .eyebrow { color: var(--amber-300); }
.hero h1 { color: #fff; }
.hero h1 strong { color: var(--amber-300); }
.hero__lead {
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  color: #c6dcf2;
  max-width: 72ch;
}
.hero__lead a { color: #fff; text-decoration-color: rgba(255, 255, 255, .5); }
.hero__lead a:hover { color: var(--amber-300); }

.hero__points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: .55rem .5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 860px;
}
.hero__points li { display: flex; gap: .55rem; align-items: flex-start; margin: 0; color: #d5e6f7; }
.hero__points svg { color: var(--amber-300); margin-top: .28rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.hero__actions .btn--ghost {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}
.hero__actions .btn--ghost:hover { background: rgba(255, 255, 255, .16); border-color: #fff; color: #fff; }

.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin: 1.75rem 0 0;
  padding: 0;
}
.trust li {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: 0;
  padding: .4rem .85rem;
  border: 1px solid rgba(188, 216, 245, .28);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .06);
  font-size: .85rem;
  font-weight: 700;
  color: #d9e8f8;
}
.trust svg { color: var(--amber-300); }

/* ----------------------------- Breadcrumbs ------------------------------- */

.crumbs { background: var(--surface-soft); border-bottom: 1px solid var(--line-soft); font-size: .86rem; }
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .55rem;
  list-style: none;
  margin: 0;
  padding: .7rem 0;
}
.crumbs li { margin: 0; display: flex; align-items: center; gap: .55rem; color: var(--muted); }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--blue-200); }
.crumbs a { color: var(--blue-700); text-decoration: none; font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: var(--ink); font-weight: 700; }

/* ------------------------------ Sections --------------------------------- */

.section { padding: clamp(2.5rem, 5.5vw, 4.5rem) 0; }
.section--soft { background: var(--surface-soft); }
.section--tight { padding-top: clamp(1.75rem, 3vw, 2.5rem); }
.section--navy {
  background: var(--grad-navy);
  color: #cfe0f2;
}
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--amber-300); }
.section--navy a { color: #fff; }

.section__head { max-width: 780px; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__lead { font-size: 1.08rem; color: var(--muted); margin: 0; }
.section--navy .section__lead { color: #b9d2ec; }

.block { margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.block:last-child { margin-bottom: 0; }
.block > h2 { margin-bottom: .7em; }

.prose { max-width: 78ch; }
.prose > :last-child { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 1.15rem; }
.prose li { margin-bottom: .5em; }
.prose h3 { margin-top: 1.6em; }

.layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1000px) {
  .layout--sidebar { grid-template-columns: minmax(0, 1fr) 330px; align-items: start; }
}

.sidebar { display: grid; gap: 1.25rem; }
@media (min-width: 1000px) { .sidebar { position: sticky; top: calc(var(--header-h) + 54px); } }

.sidebar__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.sidebar__card h3 { font-size: 1.05rem; margin-bottom: .8rem; }
.sidebar__card ul { list-style: none; margin: 0; padding: 0; }
/* Rows may be a bare icon plus text, or an icon plus a link, so the row itself
   is the flex container. */
.sidebar__card li {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  padding: .6rem 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  font-weight: 600;
  font-size: .96rem;
}
.sidebar__card li:first-child { border-top: 0; }
.sidebar__card li a {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex: 1;
  color: var(--ink);
  font-weight: 600;
  font-size: .96rem;
  text-decoration: none;
}
.sidebar__card li a:hover { color: var(--blue-700); }
.sidebar__card svg { color: var(--blue-500); }

/* -------------------------------- Cards ---------------------------------- */

.grid { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--body);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
  color: var(--body);
}
.card h3 { margin: 0; }
.card p { margin: 0; font-size: .98rem; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(26, 104, 184, .28);
}
.card:nth-child(3n+2) .card__icon { background: var(--grad-orange); box-shadow: 0 6px 16px rgba(216, 85, 26, .26); }
.card__more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
  padding-top: .5rem;
  color: var(--orange-600);
  font-weight: 800;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ------------------------- Lists, steps, FAQ ----------------------------- */

.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem 1.5rem; }
.checks--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.checks--1 { grid-template-columns: minmax(0, 1fr); }
.checks li { display: flex; gap: .6rem; align-items: flex-start; margin: 0; }
.checks svg {
  color: #fff;
  background: var(--grad-blue);
  border-radius: 50%;
  padding: 3px;
  margin-top: .25rem;
  box-shadow: 0 2px 6px rgba(26, 104, 184, .3);
}
.section--navy .checks li { color: #d3e4f6; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; counter-reset: step; }
.steps li {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.steps h3 { margin: 0 0 .3rem; font-size: 1.06rem; }
.steps p { margin: 0; font-size: .98rem; }
.steps__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
}

.faq { display: grid; gap: .75rem; max-width: 900px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.04rem;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-700); }
.faq__chevron { color: var(--blue-500); transition: transform .18s ease; }
.faq details[open] .faq__chevron { transform: rotate(180deg); }
.faq__body { padding: 0 1.25rem 1.15rem; }
.faq__body p { margin: 0; color: var(--body); }

/* ------------------------------ CTA band --------------------------------- */

.cta {
  background: var(--grad-navy);
  color: #d7e6f6;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 260px at 85% 0%, rgba(242, 112, 29, .26), transparent 70%);
}
.cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.cta h2 { color: #fff; margin-bottom: .35rem; }
.cta p { margin: 0; max-width: 62ch; color: #bfd6ee; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.cta__actions .btn--ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}
.cta__actions .btn--ghost:hover { background: rgba(255, 255, 255, .18); border-color: #fff; color: #fff; }

/* ----------------------------- Pills / meta ------------------------------ */

.pills { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.pills li { margin: 0; }
.pills a {
  display: inline-block;
  padding: .45rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--navy-800);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.pills a:hover { border-color: var(--blue-500); background: var(--blue-050); color: var(--blue-700); }
.pills--columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: .45rem .75rem;
}
.pills--columns a {
  display: flex;
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: none;
  background: transparent;
  padding: .4rem .3rem;
}
.pills--columns a:hover { background: var(--blue-050); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 0;
}
.info-grid > div {
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.info-grid dt {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: .3rem;
}
.info-grid dd { margin: 0; color: var(--ink); font-weight: 600; }

.note {
  border: 1px solid var(--blue-200);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius);
  background: var(--blue-050);
  padding: 1.2rem 1.35rem;
  margin: 1.75rem 0;
}
.note h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.05rem; margin-bottom: .5rem; }
.note h3 svg { color: var(--blue-600); }
.note--warn { border-color: #f6c9a4; border-left-color: var(--orange-500); background: #fff6ef; }
.note--warn h3 svg { color: var(--orange-600); }

.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--grad-navy);
  color: #cfe0f2;
  box-shadow: var(--shadow);
}
.callout__label {
  margin: 0;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-300);
}
.callout__number {
  display: inline-block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  text-decoration: none;
}
.callout__number:hover { color: var(--amber-300); }
.callout__text { margin: .25rem 0 0; color: #b9d2ec; font-size: .96rem; }

.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table { border-collapse: collapse; width: 100%; font-size: .97rem; background: #fff; }
th, td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--surface-soft); color: var(--ink); font-weight: 800; }

/* -------------------------------- Footer --------------------------------- */

.footer {
  background: var(--navy-950);
  color: #a9c3de;
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  font-size: .95rem;
}
.footer h3 {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.footer a { color: #cfe0f2; text-decoration: none; }
.footer a:hover { color: var(--amber-300); text-decoration: underline; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .45rem; }

.footer__top {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(169, 195, 222, .16);
}
@media (min-width: 900px) {
  .footer__top { grid-template-columns: minmax(280px, 1fr) minmax(0, 2.1fr); }
}
.footer__brand img { height: 46px; width: auto; margin-bottom: 1rem; }
.footer__brand p { max-width: 42ch; }
.footer__contact { margin-top: 1.1rem; }
.footer__contact li { display: flex; align-items: flex-start; gap: .55rem; }
.footer__contact svg { color: var(--orange-400); margin-top: .3rem; }

.footer__cols { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); }

.footer__areas, .footer__guides { padding: 1.75rem 0; border-bottom: 1px solid rgba(169, 195, 222, .16); }
.footer__areas ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .35rem 1rem;
}
.footer__guides ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: .35rem 1.5rem; }
.footer__more { color: var(--amber-300) !important; font-weight: 700; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: .88rem;
}
.footer__bottom p { margin: 0; }
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer__bottom li { margin: 0; }

/* ---------------------------- Mobile call bar ---------------------------- */

.callbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  gap: 1px;
  background: var(--navy-950);
  box-shadow: 0 -6px 20px rgba(5, 24, 47, .25);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem .5rem;
  font-weight: 800;
  font-size: .98rem;
  text-decoration: none;
  white-space: nowrap;
}
.callbar__call { flex: 1.35; }
.callbar__call { background: var(--grad-orange); color: #fff; }
.callbar__alt { background: var(--navy-800); color: #fff; }

/* ------------------------------- Forms ----------------------------------- */

.form { display: grid; gap: 1rem; max-width: 620px; }
.form__row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: grid; gap: .35rem; }
.field label { color: var(--ink); font-weight: 700; font-size: .94rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-500);
  outline: 2px solid rgba(44, 138, 214, .25);
  outline-offset: 1px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field__hint { font-size: .85rem; color: var(--muted); }

/* ------------------------------ Utilities -------------------------------- */

.center { text-align: center; }
.mt-2 { margin-top: 1.25rem; }
.mt-3 { margin-top: 2rem; }
.lead { font-size: 1.1rem; color: var(--muted); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------------- Breakpoints ------------------------------- */

@media (max-width: 1180px) {
  .nav__list > li > a { padding: .6rem .5rem; font-size: .93rem; }
  .header__call span { display: none; }
  .header__call { padding: .7rem .9rem; }
}

@media (max-width: 1023px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .header__call { display: none; }
  .callbar { display: flex; }
  body { padding-bottom: 62px; }
  .topbar p span { display: none; }
  .topbar p::after { content: "Licensed & insured mobile locksmith in Jefferson County, AL"; }
}

@media (max-width: 640px) {
  body { font-size: 1.02rem; }
  .logo img { height: 38px; }
  :root { --header-h: 64px; }
  .topbar { font-size: .78rem; }
  .topbar p { white-space: nowrap; }
  .topbar p::after { content: "Licensed & insured in Jefferson County, AL"; }
  /* The sticky call bar already carries the number on phones. */
  .topbar__inner > a { display: none; }
  .callbar a { font-size: .94rem; }
  .hero__actions .btn { width: 100%; }
  /* Put the call buttons ahead of the supporting bullet list on phones. */
  .hero__inner { display: flex; flex-direction: column; }
  .hero__inner > .eyebrow { order: 1; }
  .hero__inner > h1 { order: 2; }
  .hero__inner > .hero__lead { order: 3; }
  .hero__inner > .hero__actions { order: 4; margin-top: 1.4rem; }
  .hero__inner > .hero__points { order: 5; margin-top: 1.5rem; }
  .hero__inner > .hero__trust { order: 6; }
  .cta__actions { width: 100%; }
  .cta__actions .btn { flex: 1; }
  .steps li { flex-direction: column; gap: .6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media print {
  .header, .callbar, .cta, .footer__areas, .footer__guides { display: none; }
  body { color: #000; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
}
