
:root {
  --brand-blue: #125ba9;
  --brand-orange: #ff8f02;
  --navy-950: #082642;
  --navy-900: #0b2f53;
  --navy-800: #123f6f;
  --navy-700: #175386;
  --text-strong: #163659;
  --text: #4f6377;
  --text-muted: #5b6f84;
  --header-top: #eaf4fb;
  --header-bottom: #dcecf8;
  --body: #f7fafd;
  --surface: #ffffff;
  --surface-soft: #eef5fa;
  --surface-blue: #e8f2f9;
  --border: #d4e2ee;
  --border-strong: #bfd4e4;
  --success: #18794e;
  --danger: #b42318;
  --shadow-sm: 0 8px 22px rgba(15, 47, 82, 0.08);
  --shadow-md: 0 18px 44px rgba(15, 47, 82, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --header-height: 86px;
  --max-width: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--text);
  background: var(--body);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand-blue); text-underline-offset: 3px; }
a:hover { color: var(--navy-800); }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
}

.site-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 24px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  background: linear-gradient(180deg, var(--header-top), var(--header-bottom));
  border-bottom: 1px solid rgba(18, 91, 169, 0.18);
  box-shadow: 0 7px 20px rgba(11, 47, 83, 0.08);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: 14px;
  color: var(--text-strong);
  text-decoration: none;
}
.brand-logo {
  width: 118px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-copy { min-width: 0; line-height: 1.1; }
.brand-name {
  display: block;
  color: var(--text-strong);
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand-slogan {
  display: block;
  margin-top: 5px;
  color: var(--navy-700);
  font-size: clamp(0.67rem, 0.82vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(18, 91, 169, 0.25);
  border-radius: 12px;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 11px;
  border-radius: 12px;
  color: var(--text-strong);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: transparent;
}
.nav-link:hover, .nav-link.is-active { color: var(--navy-900); background: rgba(255, 255, 255, 0.64); }
.nav-link.is-active::after { background: var(--brand-orange); }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; flex: 0 0 auto; }
.button-primary {
  color: var(--navy-950);
  background: var(--brand-orange);
  border-color: rgba(11, 47, 83, 0.08);
  box-shadow: 0 12px 26px rgba(255, 143, 2, 0.23);
}
.button-primary:hover { color: var(--navy-950); background: #ff9e24; box-shadow: 0 16px 30px rgba(255, 143, 2, 0.29); }
.button-secondary {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 10px 22px rgba(18, 91, 169, 0.22);
}
.button-secondary:hover { color: #fff; background: var(--navy-800); border-color: var(--navy-800); }
.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.38);
}
.button-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.55); }
.button-outline {
  color: var(--navy-800);
  background: #fff;
  border-color: var(--border-strong);
}
.button-outline:hover { color: var(--navy-900); background: var(--surface-soft); border-color: var(--brand-blue); }
.button-small { min-height: 44px; padding: 10px 17px; font-size: 0.94rem; }
.header-call { min-height: 50px; padding-inline: 18px; white-space: nowrap; }

/* Hero */
.hero {
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(75, 132, 183, 0.24), transparent 36%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(420px, 0.93fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
  min-height: 520px;
  padding-block: 66px;
}
.hero-title {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 5.1vw, 4.55rem);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.062em;
}
.hero-title span { display: block; }

.hero-tagline {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  font-weight: 850;
  letter-spacing: -0.015em;
}

.hero-subtitle {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(92, 139, 181, 0.42), rgba(54, 103, 148, 0.38));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
.hero-panel h2 { margin: 0 0 20px; color: #fff; font-size: clamp(2rem, 3vw, 2.55rem); line-height: 1.05; letter-spacing: -0.04em; }
.hero-service-list { display: grid; gap: 14px; }
.hero-service {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 18px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}
.hero-service h3 { margin: 0 0 3px; color: var(--text-strong); font-size: 1.05rem; line-height: 1.25; }
.hero-service p { margin: 0; line-height: 1.38; }

/* What We Do cards: match the refined hover treatment used across the site. */
@media (hover: hover) and (pointer: fine) {
  .hero-service {
    border: 1px solid transparent;
    transition:
      transform 160ms ease,
      box-shadow 160ms ease,
      border-color 160ms ease,
      background-color 160ms ease;
  }

  .hero-service:hover {
    transform: translateY(-4px);
    border-color: #bcd4e7;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(6, 39, 72, 0.24);
  }

  .hero-service:hover .icon-tile {
    color: var(--navy-950);
    border-color: var(--brand-orange);
    background: var(--brand-orange);
    transform: translateY(-1px) scale(1.04);
  }
}
.icon-tile {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--brand-blue);
  border: 1px solid #b9dcf1;
  border-radius: 15px;
  background: #e6f4fc;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.icon-tile svg { width: 24px; height: 24px; }

/* General sections */
.section { padding-block: 82px; }
.section-white { background: #fff; }
.section-soft { background: var(--surface-soft); }
.section-blue { background: var(--surface-blue); }
.section-heading { max-width: 830px; margin: 0 auto 38px; text-align: center; }
.section-heading.align-left { max-width: none; margin-inline: 0; text-align: left; }
.section-kicker { margin: 0 0 8px; color: var(--brand-blue); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.section-title {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.section-intro { margin: 14px auto 0; color: var(--text-muted); font-size: clamp(1.03rem, 1.5vw, 1.18rem); line-height: 1.58; }
.section-heading.align-left .section-intro { margin-inline: 0; }
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.card-hover { transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.card-hover:hover { transform: translateY(-3px); border-color: #bcd4e7; box-shadow: var(--shadow-md); }
.card-hover:hover .icon-tile {
  color: var(--navy-950);
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  transform: translateY(-1px) scale(1.04);
}

/* Why */
.why-layout { display: block; }
.why-copy {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}
.why-copy .section-title { font-size: clamp(2.15rem, 4vw, 3.35rem); }
.why-copy .section-intro { max-width: 820px; }
.why-content {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}
.how-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  margin-top: 0;
  padding: 26px;
}
.how-card h3 { margin: 0 0 18px; color: var(--text-strong); font-size: 1.22rem; }
.check-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.check-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}
.check-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--navy-950);
  border-radius: 50%;
  background: var(--brand-orange);
  font-weight: 900;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.why-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  min-height: 150px;
  padding: 22px;
  align-items: center;
}
.why-card .icon-tile {
  width: 52px;
  height: 52px;
  min-width: 52px;
  flex: 0 0 52px;
}
.why-card h3 { margin: 0; color: var(--text-strong); font-size: 1.02rem; line-height: 1.42; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card { display: flex; flex-direction: column; min-height: 100%; padding: 25px; }
.service-card h3 { margin: 18px 0 10px; color: var(--text-strong); font-size: 1.22rem; line-height: 1.3; }
.service-card ul { margin: 0; padding-left: 20px; }
.service-card li + li { margin-top: 8px; }
.service-card.is-optional { border-style: dashed; }
.service-card .service-tag {
  align-self: flex-start;
  margin-top: 2px;
  padding: 4px 10px;
  color: var(--navy-800);
  border-radius: 999px;
  background: var(--surface-blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Plans */
.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.plan-card { display: flex; flex-direction: column; overflow: hidden; }
.plan-card.is-featured { border-color: #9dc5e3; box-shadow: 0 22px 54px rgba(18, 91, 169, 0.16); }
.plan-head { min-height: 240px; padding: 26px; border-bottom: 1px solid var(--border); }
.plan-card.is-featured .plan-head { background: linear-gradient(180deg, #f4faff, #fff); }
.plan-badge { display: inline-flex; margin-bottom: 12px; padding: 5px 10px; color: var(--navy-900); border-radius: 999px; background: #dceefa; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.plan-head h3 { margin: 0; color: var(--text-strong); font-size: 1.55rem; line-height: 1.2; }
.plan-price { margin: 8px 0 0; color: var(--brand-blue); font-weight: 900; }
.plan-description { min-height: 50px; margin: 8px 0 18px; }
.plan-rows { display: flex; flex: 1; flex-direction: column; }
.plan-row {
  display: grid;
  grid-template-columns: minmax(220px, 45%) minmax(0, 55%);
  min-height: 58px;
  border-bottom: 1px solid #e4ecf3;
}
.plan-row:nth-child(even) { background: #f8fbfd; }
.plan-row:last-child { border-bottom: 0; }
.plan-feature, .plan-value { display: flex; align-items: center; padding: 12px 17px; }
.plan-feature { color: var(--text-strong); font-weight: 800; }
.plan-value { gap: 8px; border-left: 1px solid #edf2f6; }
.plan-check { color: #d87300; font-size: 1.12rem; font-weight: 900; }
.plan-muted { color: var(--text-muted); }
.plan-footnote { max-width: 980px; margin: 20px auto 0; color: var(--text-muted); font-size: 0.89rem; text-align: center; }

/* Who we serve */
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.audience-card { padding: 26px; }
.audience-card h3 { margin: 18px 0 9px; color: var(--text-strong); font-size: 1.25rem; line-height: 1.3; }
.audience-card p { margin: 0; }
.service-area {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 26px;
  color: #fff;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  box-shadow: var(--shadow-md);
}
.service-area h3 { margin: 0 0 4px; color: #fff; }
.service-area p { margin: 0; color: rgba(255, 255, 255, 0.86); }
.service-area .icon-tile { color: var(--navy-950); border-color: transparent; background: var(--brand-orange); }

/* About */
.about-layout { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); gap: 32px; align-items: stretch; }
.about-lead { padding: 30px; color: #fff; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); box-shadow: var(--shadow-md); }
.about-lead .section-kicker { color: #a8d5f4; }
.about-lead .section-title { color: #fff; }
.about-lead p { color: rgba(255, 255, 255, 0.88); }
.about-points { display: grid; gap: 16px; }
.about-card { padding: 24px; }
.about-card h3 { margin: 0 0 8px; color: var(--text-strong); font-size: 1.2rem; }
.about-card ul { margin: 12px 0 0; padding-left: 20px; }
.about-card li + li { margin-top: 7px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr); gap: 28px; align-items: stretch; }
.contact-summary { margin-bottom: 20px; }
.response-pill { display: inline-flex; margin-top: 10px; padding: 5px 12px; color: var(--navy-800); border: 1px solid #bfd8ea; border-radius: 999px; background: #edf7fd; font-size: 0.87rem; font-weight: 900; }
.contact-card { padding: 26px; }
.contact-card h3 { margin: 0 0 10px; color: var(--text-strong); font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-item { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid #e3ebf2; }
.contact-item:last-child { border-bottom: 0; }
.contact-label { color: var(--text-muted); font-size: 0.91rem; font-weight: 700; }
.contact-value { color: var(--text-strong); font-size: 1.02rem; font-weight: 800; }
.phone-text-button,
.footer-phone-button {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.phone-text-button {
  color: var(--brand-blue);
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.phone-text-button:hover { color: var(--navy-800); }

.contact-card a.contact-value[href^="mailto:"] {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-card a.contact-value[href^="mailto:"]:hover {
  color: var(--navy-800);
}
.footer-phone-button { color: rgba(255, 255, 255, 0.84); }
.footer-phone-button:hover { color: var(--brand-orange); }

/* Block browser/extension-added phone decorations without changing the intended SVG icons. */
.contact-address { color: #111827; font-style: normal; line-height: 1.4; }
.contact-hours small { display: block; margin-top: 4px; color: var(--text-muted); font-weight: 600; }
.contact-card .button { margin-top: 18px; }
.contact-note { margin: 10px 0 0; color: var(--text-muted); font-size: 0.92rem; }
.form-card { display: flex; flex-direction: column; min-height: 100%; padding: 30px; }
.form-card h3 { margin: 0; color: var(--text-strong); font-size: 1.35rem; }
.form-helper { margin: 6px 0 20px; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; flex: 1; }
.form-field { display: flex; flex-direction: column; min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
.form-field.message { min-height: 250px; }
.form-label { margin-bottom: 6px; color: var(--text-strong); font-weight: 800; }
.required { color: var(--danger); }
.form-control {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--text-strong);
  border: 1px solid #b9cfe0;
  border-radius: 12px;
  background: #fff;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
textarea.form-control { min-height: 250px; resize: vertical; flex: 1; }
.form-control:focus { border-color: var(--brand-blue); outline: 0; box-shadow: 0 0 0 4px rgba(18, 91, 169, 0.12); }
.form-control[aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 1.2em; margin-top: 4px; color: var(--danger); font-size: 0.84rem; }
.phi-warning {
  grid-column: 1 / -1;
  margin: 0;
  padding: 11px 13px;
  color: #6d3a00;
  border: 1px solid #f1c27a;
  border-radius: 11px;
  background: #fff7e8;
  font-size: 0.9rem;
}
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; grid-column: 1 / -1; }
.form-status { min-height: 1.5em; margin: 0; color: var(--text-muted); font-size: 0.91rem; }
.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: var(--success); }

/* Footer */
.site-footer { color: rgba(255, 255, 255, 0.82); background: var(--navy-950); border-top: 4px solid var(--brand-orange); }
.footer-main { display: grid; grid-template-columns: 1.25fr 0.9fr 0.8fr; gap: 46px; padding-block: 52px 38px; }
.footer-brand-panel { display: inline-flex; align-items: center; width: fit-content; padding: 10px 14px; border-radius: 14px; background: #f5fbff; }
.footer-brand-panel img { width: 120px; height: 64px; object-fit: contain; }
.footer-title { margin: 18px 0 6px; color: #fff; font-size: 1.2rem; font-weight: 900; }
.footer-copy { max-width: 470px; margin: 0; }
.footer-heading { margin: 0 0 14px; color: #fff; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-list a { color: rgba(255, 255, 255, 0.84); text-decoration: none; }
.footer-list a:hover { color: var(--brand-orange); }
.footer-address { color: rgba(255, 255, 255, 0.84); font-style: normal; }
.google-business {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.google-business svg { width: 25px; height: 25px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 18px 24px; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.9rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.footer-legal a:hover { color: var(--brand-orange); }

/* Floating Back to Top */
.back-to-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1200;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(11, 47, 83, 0.14);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--brand-orange);
  box-shadow: 0 14px 30px rgba(11, 47, 83, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease,
              background-color 180ms ease, box-shadow 180ms ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #ff9e24;
  box-shadow: 0 18px 34px rgba(11, 47, 83, 0.3);
  transform: translateY(-2px);
}
.back-to-top svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 700px) {
  .back-to-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }
}

/* Secondary pages */
.page-hero { padding-block: 58px; color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.page-hero h1 { max-width: 820px; margin: 0; color: #fff; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.04; letter-spacing: -0.05em; }
.page-hero p { max-width: 760px; margin: 16px 0 0; color: rgba(255, 255, 255, 0.86); font-size: 1.1rem; }
.page-content { padding-block: 62px 82px; }
.prose { max-width: 880px; margin-inline: auto; }
.prose h2 { margin: 36px 0 10px; color: var(--text-strong); font-size: 1.55rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text); }
.prose ul { padding-left: 22px; }
.prose .meta { color: var(--text-muted); font-weight: 700; }
.callout { margin: 24px 0; padding: 18px 20px; border-left: 5px solid var(--brand-orange); border-radius: 0 14px 14px 0; background: #fff7e8; }
.booking-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.booking-card { padding: 28px; }
.booking-card h2 { margin-top: 0; color: var(--text-strong); }
.booking-card ul { padding-left: 20px; }
.error-page { display: grid; place-items: center; min-height: calc(100vh - var(--header-height)); padding: 40px 20px; text-align: center; background: linear-gradient(135deg, #edf6fc, #fff); }
.error-card { max-width: 680px; padding: 44px; }
.error-code { margin: 0; color: var(--brand-blue); font-size: 0.9rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.error-card h1 { margin: 8px 0 12px; color: var(--text-strong); font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.05; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }

@media (max-width: 1180px) {
  :root { --header-height: 80px; }
  .brand-logo { width: 96px; height: 56px; }
  .brand-name { font-size: 1.15rem; }
  .brand-slogan { font-size: 0.66rem; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(18, 91, 169, 0.2);
    border-radius: 18px;
    background: rgba(234, 244, 251, 0.98);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link { width: 100%; justify-content: flex-start; padding: 11px 13px; }
  .nav-link::after { display: none; }
  .header-actions { display: grid; grid-template-columns: 1fr; }
  .header-call { width: 100%; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { max-width: 830px; }
  .hero-panel { max-width: 900px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-head { min-height: 0; }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .section { padding-block: 68px; }
  .why-content, .about-layout, .contact-layout, .booking-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --header-height: 74px; }
  .site-shell { width: min(var(--max-width), calc(100% - 28px)); }
  .header-inner { gap: 10px; }
  .brand { gap: 9px; }
  .brand-logo { width: 76px; height: 50px; }
  .brand-name { font-size: 1rem; }
  .brand-slogan { font-size: 0.58rem; margin-top: 3px; }
  .primary-nav { right: 14px; left: 14px; }
  .header-actions { grid-template-columns: 1fr; }
  .hero-inner { padding-block: 50px; }
  .hero-title { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-service { grid-template-columns: 44px minmax(0, 1fr); min-height: 0; padding: 15px; gap: 13px; }
  .icon-tile { width: 44px; height: 44px; border-radius: 13px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .why-grid, .services-grid, .audience-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-rows: none; }
  .why-card {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
    align-items: center;
  }
  .why-card .icon-tile { width: 44px; height: 44px; min-width: 44px; flex-basis: 44px; }
  .audience-card:last-child { grid-column: auto; }
  .plan-row { grid-template-columns: 1fr; }
  .plan-feature { padding-bottom: 4px; }
  .plan-value { min-height: 42px; padding-top: 4px; border-left: 0; }
  .service-area { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field.full, .phi-warning, .form-actions { grid-column: 1; }
  .form-field.message, textarea.form-control { min-height: 220px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-main > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding-block: 46px; }
}

@media (max-width: 420px) {
  .site-shell { width: calc(100% - 20px); }
  .brand-logo { width: 68px; }
  .brand-copy { max-width: 170px; }
  .brand-name { font-size: 0.93rem; }
  .brand-slogan { font-size: 0.52rem; }
  .nav-toggle { width: 40px; height: 40px; padding: 8px; }
  .section { padding-block: 56px; }
  .hero-panel { padding: 18px; border-radius: 20px; }
  .hero-title { font-size: 2.65rem; }
  .eyebrow { padding-inline: 14px; font-size: 0.88rem; }
  .card, .how-card, .service-card, .audience-card, .about-card, .contact-card, .form-card { border-radius: 15px; }
  .form-card, .contact-card { padding: 20px; }
}

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

@media print {
  .site-header, .site-footer, .hero-actions, .nav-toggle, .button { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .page-content { padding-block: 24px; }
  .card { box-shadow: none; }
}

  
/* Booking modal — restored from the initial site behavior */
.nb-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  padding: 12px;
}
.nb-booking-modal.is-open {
  display: grid;
  place-items: center;
}
.nb-booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 23, 43, 0.76);
  backdrop-filter: blur(4px);
}
.nb-booking-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1040px, calc(100vw - 24px));
  height: min(850px, calc(100dvh - 24px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(3, 25, 49, 0.42);
}
.nb-booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding: 12px 14px 12px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #eef7fd 0%, #e2f0fa 100%);
}
.nb-booking-heading { min-width: 0; }
.nb-booking-title {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}
.nb-booking-subtitle {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}
.nb-booking-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
}
.nb-booking-external,
.nb-booking-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(11, 47, 83, 0.14);
  border-radius: 12px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.82);
}
.nb-booking-external {
  gap: 7px;
  padding: 0 13px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
}
.nb-booking-external svg { width: 17px; height: 17px; }
.nb-booking-close {
  width: 42px;
  padding: 0;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.nb-booking-external:hover,
.nb-booking-close:hover {
  border-color: rgba(18, 91, 169, 0.34);
  background: #fff;
}
.nb-booking-external:focus-visible,
.nb-booking-close:focus-visible {
  outline: 3px solid rgba(255, 143, 2, 0.45);
  outline-offset: 2px;
}
.nb-booking-body { min-height: 0; background: #fff; }
.nb-booking-body iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
html.nb-modal-open,
body.nb-modal-open {
  overflow: hidden !important;
}
@media (max-width: 700px) {
  .nb-booking-modal { padding: 8px; }
  .nb-booking-dialog {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    border-radius: 16px;
  }
  .nb-booking-header {
    min-height: 60px;
    padding: 10px 10px 10px 14px;
  }
  .nb-booking-subtitle,
  .nb-booking-external span { display: none; }
  .nb-booking-external { width: 42px; padding: 0; }
}

/* V17 shared page and form refinements */
.legal-phone-button {
  display: inline;
  padding: 0;
  color: var(--brand-blue);
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.legal-phone-button:hover { color: var(--navy-800); }

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.captcha-field { align-self: end; }
.captcha-wrap {
  min-height: 78px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f9fcfe;
}
.captcha-error {
  display: block;
  min-height: 1.2em;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 700;
}
.form-mail-link {
  min-height: 48px;
  padding-inline: 18px;
  color: var(--brand-blue);
  border: 1px solid #b8d3e8;
  background: #eff7fd;
}
.form-mail-link:hover {
  color: var(--navy-900);
  border-color: #94bfdc;
  background: #e4f2fb;
}
.form-status { flex: 1 1 100%; }
.form-status.is-sending { color: var(--navy-700); }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }

.form-success-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: none;
  padding: 18px;
}
.form-success-modal.is-open {
  display: grid;
  place-items: center;
}
.form-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 23, 43, 0.72);
  backdrop-filter: blur(4px);
}
.form-success-panel {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100vw - 36px));
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(3, 25, 49, 0.38);
  text-align: center;
}
.form-success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--brand-orange);
  font-size: 1.6rem;
  font-weight: 950;
}
.form-success-panel h3 { margin: 0 0 8px; color: var(--text-strong); font-size: 1.5rem; }
.form-success-panel p { margin: 0 0 20px; }
html.form-modal-open, body.form-modal-open { overflow: hidden !important; }

.nb-booking-phi {
  margin: 5px 0 0;
  color: #5f4a24;
  font-size: 0.76rem;
  line-height: 1.35;
}

.booking-embed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}
.booking-embed-card,
.booking-info-card { padding: 26px; }
.booking-frame-shell {
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.booking-frame-shell iframe {
  display: block;
  width: 100%;
  min-height: 690px;
  border: 0;
  background: #fff;
}
.booking-page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.booking-info-card ul { padding-left: 21px; }
.booking-info-card li + li { margin-top: 9px; }

.error-layout { min-height: 56vh; }
.error-card .brand-logo { width: 170px; height: 90px; margin: 0 auto 16px; }

@media (max-width: 900px) {
  .booking-embed-grid { grid-template-columns: 1fr; }
  .booking-frame-shell,
  .booking-frame-shell iframe { min-height: 760px; }
}
@media (max-width: 600px) {
  .captcha-wrap { overflow-x: auto; }
  .booking-embed-card,
  .booking-info-card { padding: 20px; }
  .booking-frame-shell,
  .booking-frame-shell iframe { min-height: 720px; }
}


/* v19-contact-balance-footer-google-2026-07-14 */

/* Footer: smaller Google Business icon beside the copyright line */
.footer-copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-copy-row .google-business {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin: 0;
}
.footer-copy-row .google-business svg {
  width: 16px;
  height: 16px;
}
.footer-copy-row .footer-copy {
  margin: 0;
}

/* Contact section: centered summary + balanced cards */
#contact .contact-summary-centered {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}
#contact .contact-summary-centered .section-intro {
  max-width: 780px;
  margin-inline: auto;
}
#contact .contact-layout-balanced {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 26px;
  align-items: stretch;
}
#contact .contact-layout-balanced > .card {
  height: 100%;
}
#contact .contact-layout-balanced .contact-card {
  display: flex;
  flex-direction: column;
}
#contact .contact-layout-balanced .contact-card-cta {
  margin-top: auto;
  padding-top: 18px;
}
#contact .contact-layout-balanced .contact-card-cta .button {
  margin-bottom: 12px;
}

/* Send a Message card: reduced gaps + compact collapsible note */
#contact .form-card-compact {
  padding: 28px;
}
#contact .form-card-compact h3 {
  margin-bottom: 8px;
}
#contact .form-card-compact > p {
  margin-bottom: 16px;
}
#contact .contact-form-v19 {
  display: grid;
  gap: 14px;
  align-content: start;
}
#contact .contact-form-v19 .form-grid {
  gap: 14px;
}
#contact .contact-form-v19 .form-field,
#contact .contact-form-v19 .field-group {
  margin: 0;
}
#contact .contact-form-v19 textarea.form-control {
  min-height: 140px;
  max-height: 260px;
  resize: vertical;
}
#contact .privacy-disclosure {
  border: 1px solid #e7c07a;
  border-radius: 14px;
  background: #fff8eb;
  color: #7d4d0b;
  padding: 12px 14px;
}
#contact .privacy-disclosure summary {
  cursor: pointer;
  font-weight: 900;
  color: #9b5d08;
  list-style: none;
}
#contact .privacy-disclosure summary::-webkit-details-marker {
  display: none;
}
#contact .privacy-disclosure summary::after {
  content: "+";
  float: right;
  font-size: 1.05rem;
  line-height: 1;
}
#contact .privacy-disclosure[open] summary::after {
  content: "−";
}
#contact .privacy-disclosure-body {
  margin-top: 8px;
  line-height: 1.45;
}
#contact .verification-heading-compact {
  margin-bottom: 6px;
}
#contact .captcha-compact {
  margin-top: 0;
}
#contact .captcha-compact,
#contact .contact-form-v19 .h-captcha,
#contact .contact-form-v19 .captcha-frame {
  padding-block: 0;
}
#contact .form-actions-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

@media (max-width: 960px) {
  #contact .contact-layout-balanced {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #contact .contact-layout-balanced > .card {
    height: auto;
  }
}
@media (max-width: 640px) {
  #contact .form-card-compact {
    padding: 22px;
  }
  #contact .contact-form-v19 {
    gap: 12px;
  }
  #contact .contact-form-v19 textarea.form-control {
    min-height: 150px;
  }
  .footer-copy-row {
    gap: 8px;
  }
}


/* Footer service-area Google Business placement */
.footer-service-area {
  display: grid;
  justify-items: start;
  gap: 10px;
}
.footer-service-area .footer-google-business {
  width: 34px;
  height: 34px;
  margin: 0;
  flex: 0 0 34px;
}
.footer-service-area .footer-google-business svg {
  width: 19px;
  height: 19px;
}






/* Production phone links: native tel action and real selectable text */
.phone-number-display {
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

a[data-call-phone] {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(18, 91, 169, 0.16);
}

a[data-call-phone]:focus-visible {
  outline: 3px solid rgba(255, 143, 2, 0.48);
  outline-offset: 3px;
}

a[data-call-phone] > svg {
  display: block;
  flex: 0 0 auto;
}

a[data-call-phone] > :not(svg):not(.phone-number-display),
a[data-call-phone] .phone-number-display > *,
a[data-call-phone] img,
a[data-call-phone] picture,
a[data-call-phone] object,
a[data-call-phone] embed {
  display: none !important;
}

a[data-call-phone]::before,
a[data-call-phone]::after,
a[data-call-phone] .phone-number-display::before,
a[data-call-phone] .phone-number-display::after {
  content: none !important;
  display: none !important;
}

a.phone-text-button,
a.legal-phone-button,
a.footer-phone-button {
  text-decoration-thickness: 1.5px;
  text-decoration-skip-ink: auto;
}

a.footer-phone-button {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a.footer-phone-button:hover {
  color: var(--brand-orange);
}


/* production-2026-07-18-v1: optional consent-aware analytics controls */
.analytics-consent {
  position: fixed;
  z-index: 2000;
  left: max(18px, env(safe-area-inset-left));
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1120px;
  margin-inline: auto;
  padding: 18px 60px 18px 20px;
  border: 1px solid rgba(18, 91, 169, 0.24);
  border-radius: 18px;
  background: rgba(247, 250, 253, 0.98);
  color: var(--text);
  box-shadow: 0 18px 48px rgba(2, 34, 64, 0.22);
  backdrop-filter: blur(10px);
}


.analytics-consent__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(18, 91, 169, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.analytics-consent__close:hover {
  background: var(--surface-blue);
  border-color: rgba(18, 91, 169, 0.38);
}

.analytics-consent__copy {
  display: grid;
  gap: 4px;
  line-height: 1.45;
}

.analytics-consent__copy strong {
  color: var(--navy-900);
  font-size: 1rem;
}

.analytics-consent__copy a {
  width: fit-content;
  color: var(--brand-blue);
  font-weight: 800;
}

.analytics-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.footer-settings-link {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-settings-link:hover,
.footer-settings-link:focus-visible {
  color: var(--brand-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .analytics-consent {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .analytics-consent__actions {
    width: 100%;
  }

  .analytics-consent__actions .button {
    flex: 1 1 0;
  }
}

@media (max-width: 420px) {
  .analytics-consent__actions {
    flex-direction: column-reverse;
  }
}


/* production-2026-07-18-v3: deferred hCaptcha and small performance refinements */
.h-captcha[data-hcaptcha-lazy] {
  display: grid;
  place-items: center;
  min-height: 74px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.h-captcha[data-hcaptcha-lazy][aria-busy="true"] .captcha-load-status::before {
  content: "";
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  margin-right: 8px;
  border: 2px solid rgba(18, 91, 169, 0.25);
  border-top-color: var(--brand-blue);
  border-radius: 50%;
  vertical-align: -0.1em;
  animation: nexgen-spin 800ms linear infinite;
}

@keyframes nexgen-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .h-captcha[data-hcaptcha-lazy][aria-busy="true"] .captcha-load-status::before {
    animation: none;
  }
}
