/* =========================================================
   Pennsylvania Diabetic Resource — Styles
   Palette: medical teal + green + white, professional-local
   ========================================================= */

:root {
  /* Color */
  --teal-900: #053f48;
  --teal-800: #0a5360;
  --teal-700: #0c5e6e;
  --teal-600: #0e7689;
  --teal-500: #15a0b3;
  --teal-50:  #ecf6f8;
  --green-700: #1f8a55;
  --green-600: #2bb673;
  --green-50:  #eafaf2;
  --ink-900: #0f1c20;
  --ink-700: #2a3a40;
  --ink-500: #58686e;
  --ink-400: #7c8a8f;
  --ink-200: #d6dee1;
  --line:    #e3ebed;
  --bg:      #ffffff;
  --bg-alt:  #f6fafb;
  --warn:    #b94a1a;

  /* Type */
  --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15,28,32,0.06), 0 1px 3px rgba(15,28,32,0.06);
  --shadow-md: 0 6px 18px rgba(15,28,32,0.08), 0 2px 6px rgba(15,28,32,0.06);
  --shadow-lg: 0 20px 50px -10px rgba(8,60,72,0.18);

  /* Layout */
  --container: 1180px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal-800); }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; color: var(--ink-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

/* ============== Top bar ============== */
.top-bar {
  background: var(--teal-900);
  color: #cfe9ee;
  font-size: 0.85rem;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 8px var(--s-6);
  flex-wrap: wrap;
}
.top-bar__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.top-bar__actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.top-bar__link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.top-bar__link:hover { color: #b9e4ec; }

/* ============== Header ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--s-4);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-900);
}
.logo:hover { color: var(--teal-800); }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__title { font-weight: 800; font-size: 1rem; }
.logo__sub   { font-size: 0.72rem; color: var(--ink-500); font-weight: 500; }
.nav {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav a {
  color: var(--ink-700);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--teal-800); }
.nav a.btn { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: var(--s-4) var(--s-6);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: var(--s-3) 0; border-bottom: 1px solid var(--line); display: block; text-align: left; }
  .nav a.btn { margin-top: var(--s-3); border-radius: var(--r-pill); text-align: center; }
  .nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .header { position: sticky; }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(180deg, var(--teal-600), var(--teal-700));
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(12,94,110,0.4);
}
.btn--primary:hover { background: linear-gradient(180deg, var(--teal-700), var(--teal-800)); color: #fff; }
.btn--ghost {
  background: #fff;
  color: var(--teal-800);
  border-color: var(--teal-700);
}
.btn--ghost:hover { background: var(--teal-50); color: var(--teal-800); }
.btn--lg { padding: 15px 24px; font-size: 1rem; }
.btn--sm { padding: 8px 14px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ============== Hero ============== */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(43,182,115,0.16), transparent 60%),
    radial-gradient(900px 600px at -10% 10%, rgba(21,160,179,0.18), transparent 60%),
    linear-gradient(180deg, #f8fcfd 0%, #ffffff 100%);
  padding: clamp(var(--s-12), 6vw, var(--s-20)) 0 clamp(var(--s-12), 6vw, var(--s-16));
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.hero__copy h1 { color: var(--teal-900); }
.hero__lede {
  font-size: 1.125rem;
  color: var(--ink-700);
  max-width: 60ch;
  margin-bottom: var(--s-6);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-800);
}
.hero__trust svg { color: var(--green-600); flex: none; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  margin-bottom: var(--s-4);
}
.eyebrow--dark { color: var(--teal-800); }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-600);
  box-shadow: 0 0 0 4px rgba(43,182,115,0.18);
}

/* Hero side card */
.hero__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(180deg, rgba(21,160,179,0.4), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-3);
}
.hero__card-badge {
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__card-eyebrow {
  font-size: 0.78rem;
  color: var(--ink-500);
}
.hero__card h3 { font-size: 1.1rem; margin-bottom: var(--s-3); }
.hero__card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--s-4); }
.hero__card-list li {
  padding: 10px 12px;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  font-size: 0.95rem;
}
.hero__card-foot {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin-bottom: var(--s-4);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-8); }
  .hero__card { order: 2; }
}

/* ============== Sections ============== */
.section {
  padding: clamp(var(--s-12), 6vw, var(--s-20)) 0;
}
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head { margin-bottom: var(--s-10); max-width: 740px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__lede { font-size: 1.05rem; color: var(--ink-700); }

/* ============== Grids ============== */
.grid { display: grid; gap: var(--s-6); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--teal-500);
  box-shadow: var(--shadow-md);
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-4);
}
.card--quiet { background: #fff; }
.check-list { margin-top: var(--s-3); display: flex; flex-direction: column; gap: 6px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink-700);
}
.check-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green-600);
}

/* Callout */
.callout {
  margin-top: var(--s-8);
  background: linear-gradient(135deg, var(--teal-50), #fff);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.callout strong { display: block; font-size: 1.05rem; margin-bottom: 4px; color: var(--teal-900); }
.callout span { color: var(--ink-700); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  counter-reset: step;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
  list-style: none;
}
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--teal-700);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: var(--s-4);
  box-shadow: 0 6px 14px -4px rgba(12,94,110,0.4);
}

/* Trust cards */
.trust {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.trust__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--green-50);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-3);
}
.trust h3 { font-size: 1.05rem; margin-bottom: 6px; }
.trust p { font-size: 0.92rem; margin: 0; }

/* Service area */
.area {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-8);
  align-items: start;
}
.area__cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2) var(--s-4);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}
.area__cities li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area__cities li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal-600);
  border-radius: 999px;
  flex: none;
}
.area__aside {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}
.area__aside h3 { margin-bottom: var(--s-2); }
.area__aside p { font-size: 0.92rem; margin-bottom: var(--s-4); }
@media (max-width: 880px) {
  .area { grid-template-columns: 1fr; }
  .area__cities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .area__cities { grid-template-columns: 1fr; }
}

/* ============== Quote / Form ============== */
.quote {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-10);
  align-items: start;
}
@media (max-width: 940px) {
  .quote { grid-template-columns: 1fr; gap: var(--s-8); }
}
.quote__copy h2 { color: var(--teal-900); }
.quote__bullets {
  margin: var(--s-5) 0;
  display: grid;
  gap: 10px;
}
.quote__bullets li {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.quote__bullets strong { color: var(--teal-800); }
.quote__contact { display: flex; gap: var(--s-3); flex-wrap: wrap; }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-5), 3vw, var(--s-8));
  box-shadow: var(--shadow-md);
}
.form__row { margin-bottom: var(--s-4); }
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 540px) { .form__grid { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.form input[type="text"],
.form input[type="tel"],
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(21,160,179,0.15);
}
.form input.has-error,
.form textarea.has-error {
  border-color: #c43a2a;
  box-shadow: 0 0 0 3px rgba(196,58,42,0.12);
}
.form__error {
  display: block;
  color: #b03325;
  font-size: 0.82rem;
  margin-top: 4px;
  min-height: 0;
}
.form__error:not(:empty) { margin-top: 6px; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 540px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-700);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.checkbox:hover { border-color: var(--teal-500); }
.checkbox input[type="checkbox"] { accent-color: var(--teal-700); width: 18px; height: 18px; }
.checkbox--consent { background: var(--bg-alt); align-items: flex-start; }
.checkbox--consent span { font-size: 0.9rem; line-height: 1.45; }

.form__fineprint {
  font-size: 0.78rem;
  color: var(--ink-500);
  margin-top: var(--s-3);
}
.form__success {
  margin-top: var(--s-4);
  padding: var(--s-4);
  background: var(--green-50);
  border: 1px solid #b6e6cb;
  border-radius: var(--r-md);
  color: #14693f;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form__success strong { font-size: 1rem; }

/* ============== FAQ ============== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq details[open] {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 4px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal-700);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: var(--s-3) 0 0; color: var(--ink-700); font-size: 0.96rem; }

/* ============== Compliance ============== */
.compliance { background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%); }
.disclaimer {
  margin-top: var(--s-8);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--warn);
  border-radius: var(--r-md);
  padding: var(--s-6);
}
.disclaimer h3 { margin-bottom: var(--s-3); color: var(--warn); }
.disclaimer ul { display: flex; flex-direction: column; gap: 8px; }
.disclaimer li {
  font-size: 0.92rem;
  color: var(--ink-700);
  padding-left: 18px;
  position: relative;
}
.disclaimer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--warn);
  border-radius: 999px;
  opacity: 0.7;
}

/* ============== Footer ============== */
.footer {
  background: var(--teal-900);
  color: #d6e8ec;
  padding-top: var(--s-12);
  margin-top: var(--s-8);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--s-8);
  padding-bottom: var(--s-10);
}
@media (max-width: 920px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
}
.logo--footer .logo__title { color: #fff; }
.logo--footer .logo__sub { color: #9ec0c8; }
.footer__about { color: #b6d2d9; font-size: 0.9rem; margin-top: var(--s-3); }
.footer__col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-3);
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { color: #cbdfe4; }
.footer__col a:hover { color: #fff; }
.footer__col li { color: #b6d2d9; font-size: 0.92rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--s-5) 0;
  font-size: 0.82rem;
  color: #9ec0c8;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.footer__legal { max-width: 720px; }

/* ============== Mobile floating bar ============== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 70;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  gap: 6px;
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.mobile-bar__btn--call { background: var(--teal-700); color: #fff; }
.mobile-bar__btn--text { background: var(--green-600); color: #fff; }
.mobile-bar__btn--quote { background: #fff; color: var(--teal-800); border: 1.5px solid var(--teal-700); }

@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
  .top-bar__actions { display: none; }
}

/* ============== Reveal-on-scroll ============== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============== Focus visibility ============== */
:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============== Print ============== */
@media print {
  .top-bar, .header, .mobile-bar, .hero__ctas, .quote__contact, .nav-toggle, .footer__bottom { display: none !important; }
  body { color: #000; }
}
