/* ============================================================
   Harmony Heights Home Health Services
   Brand palette derived from logo: gold + teal on cream/ink
   ============================================================ */

:root {
  --teal: #159c92;
  --teal-dark: #0e7a72;
  --teal-deep: #0c5f59;
  --teal-soft: #e7f3f1;
  --gold: #c9a24b;
  --gold-light: #ddbd6e;
  --gold-deep: #a9852f;
  --gold-soft: #f7efdc;
  --ink: #16302d;
  --ink-soft: #3a4a48;
  --cream: #fbf8f2;
  --cream-2: #f4efe4;
  --white: #ffffff;
  --muted: #6b7876;
  --line: #e6ded0;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(22, 48, 45, 0.06);
  --shadow-md: 0 10px 30px rgba(22, 48, 45, 0.10);
  --shadow-lg: 0 24px 60px rgba(22, 48, 45, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 100%; height: 100%; fill: currentColor; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--ink); box-shadow: 0 8px 22px rgba(201,162,75,0.35); }
.btn--gold:hover { transform: translateY(-2px); background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.btn--teal { background: var(--teal); color: var(--white); box-shadow: 0 8px 22px rgba(21,156,146,0.30); }
.btn--teal:hover { transform: translateY(-2px); background: var(--teal-dark); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.85); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--teal-dark); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--teal-deep), var(--teal-dark));
  color: var(--white);
  font-size: 14px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; opacity: 0.95; transition: opacity 0.2s var(--ease); }
.topbar__item:hover { opacity: 1; }
.topbar__item svg { width: 15px; height: 15px; flex: none; }
.topbar__item--phone { font-weight: 600; }
.topbar__item--emergency {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  opacity: 1;
  letter-spacing: 0.02em;
}
.topbar__item--emergency svg { width: 14px; height: 14px; }
.topbar__item--emergency:hover { background: var(--gold-light); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-md); background: rgba(251,248,242,0.97); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); letter-spacing: 0.01em; }
.brand__sub { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-dark); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); padding: 9px 12px; border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__link:hover { color: var(--teal-dark); background: var(--teal-soft); }
.nav__cta { margin-left: 6px; padding: 11px 22px; font-size: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { to { transform: scale(1.14); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,40,37,0.55) 0%, rgba(12,40,37,0.35) 40%, rgba(12,40,37,0.72) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(201,162,75,0.18), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; padding: 90px 24px; }
.hero__eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-light); margin-bottom: 18px; padding: 7px 18px;
  border: 1px solid rgba(221,189,110,0.55); border-radius: 999px; background: rgba(12,40,37,0.25); backdrop-filter: blur(4px);
}
.hero__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(2.1rem, 6vw, 4.2rem); line-height: 1.08; letter-spacing: 0.01em; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero__subtitle { font-size: clamp(1rem, 2.2vw, 1.35rem); margin-top: 18px; font-weight: 400; opacity: 0.95; text-shadow: 0 2px 14px rgba(0,0,0,0.4); }
.hero__actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px; display: flex; justify-content: center; padding-top: 8px; }
.hero__scroll span { width: 4px; height: 8px; background: var(--white); border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--alt { background: var(--cream-2); }
.eyebrow { display: inline-block; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); margin-bottom: 14px; position: relative; padding-left: 38px; }
.eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 28px; height: 2px; background: var(--gold); }
.section__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.15; color: var(--ink); }
.section__head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__head .eyebrow { padding-left: 0; }
.section__head .eyebrow::before { display: none; }
.section__lead { margin-top: 16px; font-size: 1.08rem; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 24px; }
.trust__item { display: flex; align-items: center; gap: 14px; }
.trust__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center; flex: none; }
.trust__icon svg { width: 26px; height: 26px; }
.trust__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.trust__text { font-size: 0.88rem; color: var(--muted); line-height: 1.4; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about__media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.about__badge { position: absolute; bottom: -26px; right: -10px; background: var(--white); border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow-lg); text-align: center; border-top: 4px solid var(--teal); }
.about__badge-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--teal-dark); line-height: 1; }
.about__badge-label { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-top: 4px; }
.about__body p { margin-top: 18px; color: var(--ink-soft); }
.about__body p:first-of-type { color: var(--ink); font-size: 1.12rem; }
.about__points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
.about__point { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; color: var(--teal-dark); }
.about__point svg { width: 18px; height: 18px; color: var(--gold-deep); }

/* ---------- Services ---------- */
.services { background: var(--cream-2); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; position: relative; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.service::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service:hover::before { transform: scaleX(1); }
.service__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-deep); display: grid; place-items: center; margin-bottom: 18px; }
.service__icon svg { width: 26px; height: 26px; }
.service__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; color: var(--ink); }
.service p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Feature rows ---------- */
.features { background: var(--white); padding: clamp(64px, 9vw, 110px) 0; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; margin-bottom: clamp(56px, 7vw, 90px); }
.feature:last-child { margin-bottom: 0; }
.feature--reverse .feature__media { order: 2; }
.feature__media { position: relative; }
.feature__media img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.feature__media::after { content: ""; position: absolute; inset: -14px -14px 14px 14px; border: 2px solid var(--teal); border-radius: var(--radius); z-index: -1; }
.feature--reverse .feature__media::after { inset: -14px 14px 14px -14px; }
.feature__body .section__title { margin-bottom: 8px; }
.feature__body > p { margin-top: 16px; color: var(--ink-soft); }
.feature__list { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.feature__list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--ink); }
.feature__list svg { width: 22px; height: 22px; color: var(--teal); flex: none; }

/* ---------- Why ---------- */
.why { background: var(--cream-2); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.card__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white); display: grid; place-items: center; margin-bottom: 20px; }
.card__icon svg { width: 28px; height: 28px; }
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; margin-bottom: 10px; color: var(--ink); }
.card__text { color: var(--muted); font-size: 0.98rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.faq__head { position: sticky; top: 110px; }
.faq__head .section__lead { margin-top: 16px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); }
.faq__item[open] { box-shadow: var(--shadow-md); border-color: var(--teal); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.02rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--teal); font-weight: 400; transition: transform 0.3s var(--ease); flex: none; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 24px 22px; color: var(--ink-soft); }
.faq__a a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; }

/* ---------- CTA band ---------- */
.ctaband { background: linear-gradient(135deg, var(--teal-deep), var(--teal-dark) 55%, var(--teal)); color: var(--white); position: relative; overflow: hidden; }
.ctaband::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(201,162,75,0.30), transparent 45%); }
.ctaband__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: clamp(50px, 7vw, 80px) 24px; flex-wrap: wrap; }
.ctaband__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; max-width: 620px; }
.ctaband__lead { margin-top: 14px; opacity: 0.92; max-width: 600px; }
.ctaband__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Careers ---------- */
.careers { background: var(--gold-soft); }
.careers__inner { display: flex; justify-content: center; }
.careers__body { max-width: 760px; text-align: center; }
.careers__body .eyebrow { padding-left: 0; }
.careers__body .eyebrow::before { display: none; }
.careers__body p { margin-top: 18px; color: var(--ink-soft); }
.careers__body .btn { margin-top: 26px; }

/* ---------- Contact ---------- */
.contact { background: var(--cream-2); }
.contact__layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.contact__form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form__field label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-soft); }
.form__field input, .form__field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: var(--cream);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.form__field input:focus, .form__field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(21,156,146,0.15); background: var(--white); }
.form__field textarea { resize: vertical; min-height: 110px; }
.form__note { margin-top: 16px; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.form__note a { color: var(--teal-dark); font-weight: 600; }
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact__card { background: var(--white); border-radius: var(--radius-sm); padding: 22px 18px; text-align: center; border: 1px solid var(--line); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.contact__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact__icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 4px; }
.contact__icon svg { width: 22px; height: 22px; }
.contact__card--teal .contact__icon { background: var(--teal-soft); color: var(--teal-dark); }
.contact__card--gold .contact__icon { background: var(--gold); color: var(--ink); }
.contact__card--ink .contact__icon { background: var(--ink); color: var(--white); }
.contact__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.contact__value { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); word-break: break-word; }
.contact__area { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--teal-dark); font-weight: 600; font-size: 0.92rem; margin-top: 6px; }
.contact__area svg { width: 18px; height: 18px; }

/* ---------- Nondiscrimination ---------- */
.nondiscrimination { background: var(--ink); color: rgba(255,255,255,0.78); padding: 56px 0; }
.nondiscrimination__title { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--white); margin-bottom: 14px; }
.nondiscrimination p { max-width: 900px; font-size: 0.95rem; line-height: 1.7; }

/* ---------- Footer ---------- */
.footer { background: var(--teal-deep); color: rgba(255,255,255,0.85); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding: 64px 24px 48px; }
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__sub { color: var(--gold-light); }
.footer__tagline { margin-top: 18px; font-size: 0.95rem; max-width: 360px; opacity: 0.85; }
.footer__heading { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--gold-light); margin-bottom: 18px; }
.footer__links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { opacity: 0.85; transition: opacity 0.2s var(--ease), color 0.2s var(--ease); }
.footer__links a:hover { opacity: 1; color: var(--gold-light); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.14); }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 12px; padding: 20px 24px; font-size: 13px; opacity: 0.8; flex-wrap: wrap; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__bg { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .why__grid, .services__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .feature { grid-template-columns: 1fr; }
  .about__media { order: 2; }
  .about__media img { height: 380px; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media img { height: 340px; }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .contact__layout { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 90px 24px 32px; gap: 6px; transform: translateX(100%);
    transition: transform 0.35s var(--ease); box-shadow: var(--shadow-lg); z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { padding: 14px 12px; font-size: 15px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta { margin: 14px 0 0; text-align: center; }
  .nav-toggle { display: flex; z-index: 101; position: relative; }
  .topbar__right { width: 100%; justify-content: center; }
  .topbar__left { width: 100%; justify-content: center; }
  .topbar__inner { gap: 6px; }
  .topbar__item span { font-size: 13px; }
  .ctaband__inner { flex-direction: column; text-align: center; align-items: center; }
  .contact__cards { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .why__grid, .services__grid, .trust__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .brand__sub { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .about__badge { right: 10px; }
}
