/* =============================================================
   Britannia IT USA — Design System (v2)
   Modern minimal · light & airy · a focused nod to America's 250th.
   Clean white canvas, navy ink, a single confident red accent,
   a quiet blue for links. Patriotic cues kept subtle and tasteful.
   ============================================================= */

/* ----- Tokens ----- */
:root {
  /* Ink & neutrals */
  --ink: #0f1b2d;
  --navy: #0a2540;
  --navy-deep: #071a2f;
  --mut: #56617a;
  --mut-2: #8a93a6;
  --line: #e7ebf2;
  --line-2: #eef2f8;
  --bg: #ffffff;
  --soft: #f6f8fc;
  --soft-2: #eef3fb;

  /* Accents */
  --red: #d4263b;
  --red-press: #b11d2f;
  --red-tint: #fdebee;
  --blue: #2563eb;
  --blue-press: #1d4ed8;
  --blue-tint: #e9f0fe;

  /* Type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji";

  /* Scale (fluid) */
  --t--1: clamp(0.82rem, 0.8rem + 0.12vw, 0.9rem);
  --t-0: clamp(1rem, 0.97rem + 0.16vw, 1.07rem);
  --t-1: clamp(1.15rem, 1.08rem + 0.34vw, 1.32rem);
  --t-2: clamp(1.4rem, 1.26rem + 0.7vw, 1.85rem);
  --t-3: clamp(1.75rem, 1.5rem + 1.2vw, 2.5rem);
  --t-4: clamp(2.25rem, 1.85rem + 2vw, 3.4rem);
  --t-5: clamp(2.7rem, 2.05rem + 3.2vw, 4.5rem);

  /* Space */
  --gap: clamp(1rem, 0.7rem + 1.4vw, 1.6rem);
  --pad-section: clamp(3.5rem, 2.4rem + 4.5vw, 6.5rem);

  /* Radius / shadow */
  --r-sm: 9px;
  --r: 14px;
  --r-lg: 22px;
  --shadow-1: 0 1px 2px rgba(15, 27, 45, 0.04), 0 4px 14px rgba(15, 27, 45, 0.05);
  --shadow-2: 0 10px 34px rgba(15, 27, 45, 0.09);
  --shadow-3: 0 26px 70px rgba(15, 27, 45, 0.14);

  --container: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset / base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--t-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg,
picture {
  max-width: 100%;
  display: block;
}
a {
  color: var(--blue-press);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: var(--ink);
  font-weight: 750;
  text-wrap: balance;
}
h1 {
  font-size: var(--t-4);
  font-weight: 800;
}
h2 {
  font-size: var(--t-3);
}
h3 {
  font-size: var(--t-1);
  letter-spacing: -0.02em;
}
p {
  margin: 0 0 1rem;
}
ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
strong {
  font-weight: 700;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.1rem;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.section {
  padding-block: var(--pad-section);
}
.section--tight {
  padding-block: clamp(2rem, 4vw, 3.2rem);
}
.section--alt {
  background: var(--soft);
}
.section--feature {
  background:
    radial-gradient(900px 500px at 100% 0%, var(--blue-tint), transparent 60%),
    var(--soft-2);
}
.section-head {
  max-width: 680px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--t--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-press);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red) 0 55%, var(--blue) 55%);
}
.lede {
  font-size: var(--t-1);
  color: var(--mut);
  line-height: 1.55;
}
.muted {
  color: var(--mut);
}
.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: var(--gap);
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: center;
}
@media (max-width: 900px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ----- Buttons ----- */
.btn {
  --bg: var(--ink);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 650;
  font-size: var(--t-0);
  line-height: 1;
  padding: 0.85rem 1.4rem;
  border-radius: 11px;
  border: 1.5px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease),
    background 0.16s var(--ease), border-color 0.16s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.btn--primary {
  --bg: var(--red);
}
.btn--primary:hover {
  --bg: var(--red-press);
}
.btn--navy {
  --bg: var(--navy);
}
.btn--ghost {
  --bg: #fff;
  --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  box-shadow: none;
}
.btn--on-navy {
  --bg: rgba(255, 255, 255, 0.1);
  --fg: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--on-navy:hover {
  --bg: rgba(255, 255, 255, 0.18);
}
.btn--lg {
  padding: 1rem 1.7rem;
  font-size: var(--t-1);
  border-radius: 13px;
}
.btn--block {
  width: 100%;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ----- Commemorative 250 badge ----- */
.commem {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--red-press);
  background: var(--red-tint);
  border: 1px solid #f6d2d8;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
}
.commem svg {
  width: 15px;
  height: 15px;
  fill: var(--red);
}
.commem .sep {
  color: #d99aa3;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.flag-rule {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--red) 0 33.33%,
    #fff 33.33% 66.66%,
    var(--blue) 66.66%
  );
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}
/* Desktop: links + CTA sit in one horizontal row, pushed to the right. */
.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.6vw, 1.4rem);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand:hover {
  text-decoration: none;
}
.brand__logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
  flex: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--mut);
  font-weight: 550;
  font-size: 0.94rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ink);
  background: var(--soft);
}
.has-dropdown {
  position: relative;
}
.has-dropdown > button {
  font: inherit;
  font-weight: 550;
  font-size: 0.94rem;
  color: var(--mut);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.has-dropdown > button:hover {
  background: var(--soft);
  color: var(--ink);
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-3);
  padding: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.16s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  text-decoration: none;
}
.dropdown a:hover {
  background: var(--soft);
}
.dropdown a strong {
  display: block;
  color: var(--ink);
  font-size: 0.93rem;
}
.dropdown a small {
  color: var(--mut);
  font-size: 0.81rem;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: 0.2s var(--ease);
}
.nav__toggle span::before {
  position: absolute;
  top: -6px;
}
.nav__toggle span::after {
  position: absolute;
  top: 6px;
}
@media (max-width: 980px) {
  .nav__toggle {
    display: inline-flex;
  }
  .nav__menu {
    position: fixed;
    inset: 73px 0 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem clamp(1.1rem, 4vw, 2rem) 2rem;
    gap: 0.2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s var(--ease);
    border-top: 1px solid var(--line);
  }
  .nav__menu.is-open {
    transform: translateX(0);
  }
  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
  }
  .nav__links a,
  .has-dropdown > button {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.85rem 0.6rem;
  }
  .has-dropdown > button {
    justify-content: space-between;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 0 0 0.4rem 0.6rem;
    padding: 0.2rem 0;
    display: none;
  }
  .has-dropdown.is-open .dropdown {
    display: block;
  }
  .nav__actions .btn {
    margin-top: 0.6rem;
  }
}

/* ----- Hero (light, the 250 moment) ----- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 380px at 88% -8%, var(--blue-tint), transparent 62%),
    radial-gradient(540px 320px at 4% 8%, var(--red-tint), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 27, 45, 0.07) 1px, transparent 1.5px);
  background-size: 30px 30px;
  mask-image: radial-gradient(680px 420px at 78% 4%, #000, transparent 72%);
  opacity: 0.6;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  font-size: var(--t-5);
  margin-bottom: 1rem;
}
.hero h1 .accent {
  color: var(--red);
}
.hero__lede {
  font-size: var(--t-1);
  color: var(--mut);
  max-width: 40ch;
  margin-bottom: 1.6rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.hero__trust {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--mut);
  font-size: 0.9rem;
}
.hero__trust b {
  color: var(--ink);
}

/* Hero pricing card */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-3);
}
.price-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-tint);
  color: var(--blue-press);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}
.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.9rem 0 0.2rem;
}
.price-card__amount b {
  font-size: clamp(2.6rem, 6vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.price-card__amount span {
  color: var(--mut);
  font-weight: 600;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.3rem;
  display: grid;
  gap: 0.5rem;
}
.price-card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink);
}
.tick {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-press);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

/* ----- Pills & badges ----- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  box-shadow: var(--shadow-1);
}
.pill svg {
  color: var(--red);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--blue-tint);
  color: var(--blue-press);
}
.badge--red {
  background: var(--red-tint);
  color: var(--red-press);
}

/* ----- Cards ----- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.3rem, 2.4vw, 1.7rem);
  box-shadow: var(--shadow-1);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
a.card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: #d5deec;
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--navy);
  color: #fff;
}
.card__icon svg {
  width: 24px;
  height: 24px;
}
.card h3 {
  margin-bottom: 0.45rem;
}
.card p {
  color: var(--mut);
  margin-bottom: 0.9rem;
  font-size: 0.96rem;
}
.card__link {
  margin-top: auto;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ----- Checklist ----- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.checklist li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.checklist li::before {
  content: "";
  flex: none;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ----- Stats ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 700px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.3rem 0.8rem;
  box-shadow: var(--shadow-1);
}
.stat__num {
  font-size: var(--t-3);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.stat__label {
  color: var(--mut);
  font-size: 0.9rem;
}

/* ----- Pricing plans ----- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}
@media (max-width: 940px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
}
.plan--featured {
  border: 1.5px solid var(--navy);
  box-shadow: var(--shadow-3);
  position: relative;
}
.plan--featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.plan__name {
  font-weight: 800;
  font-size: var(--t-1);
  color: var(--navy);
}
.plan__desc {
  color: var(--mut);
  font-size: 0.91rem;
  min-height: 2.6em;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0.8rem 0 0.2rem;
}
.plan__price b {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.plan__price span {
  color: var(--mut);
  font-weight: 600;
  font-size: 0.88rem;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  display: grid;
  gap: 0.6rem;
}
.plan li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink);
}
.plan li::before {
  content: "✓";
  flex: none;
  color: var(--blue-press);
  font-weight: 900;
}
.plan li.is-muted {
  color: var(--mut-2);
}
.plan li.is-muted::before {
  content: "–";
  color: var(--mut-2);
}
.plan .btn {
  margin-top: auto;
}

/* ----- CTA band (dark anchor) ----- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 88% 0%, rgba(47, 109, 230, 0.4), transparent 62%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(420px 260px at 80% 0%, #000, transparent 72%);
  opacity: 0.5;
}
.cta-band > * {
  position: relative;
}
.cta-band h2 {
  color: #fff;
  max-width: 18ch;
  margin-inline: auto;
}
.cta-band p {
  color: #b9c6dc;
  max-width: 52ch;
  margin: 0 auto 1.6rem;
}
.cta-band .btn-row {
  justify-content: center;
}

/* ----- FAQ ----- */
.faq {
  display: grid;
  gap: 0.7rem;
  max-width: 820px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
}
.faq__q {
  list-style: none;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--navy);
  background: none;
  border: 0;
  padding: 1.05rem 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q::after {
  content: "+";
  font-size: 1.45rem;
  color: var(--red);
  transition: transform 0.2s var(--ease);
  line-height: 1;
}
.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 1.25rem 1.2rem;
  color: var(--mut);
}
.faq__a > :last-child {
  margin-bottom: 0;
}

/* ----- Breadcrumbs ----- */
.breadcrumbs {
  font-size: 0.84rem;
  color: var(--mut);
  padding-block: 1rem 0;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
}
.breadcrumbs li::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--mut-2);
}
.breadcrumbs li:last-child::after {
  content: "";
}
.breadcrumbs a {
  color: var(--mut);
}

/* ----- Page hero (interior, light) ----- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 320px at 92% -20%, var(--blue-tint), transparent 60%),
    linear-gradient(180deg, #fff, var(--soft));
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  position: relative;
  padding-block: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 760px;
}
.page-hero p {
  color: var(--mut);
  font-size: var(--t-1);
  margin-bottom: 0;
}

/* ----- Prose / article ----- */
.prose {
  max-width: 760px;
}
.prose h2 {
  margin-top: 2.2rem;
}
.prose h3 {
  margin-top: 1.6rem;
}
.prose ul li,
.prose ol li {
  margin-bottom: 0.4rem;
}
.callout {
  border-left: 3px solid var(--red);
  background: var(--soft);
  padding: 1.1rem 1.3rem;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 1.5rem 0;
}
.callout p:last-child {
  margin-bottom: 0;
}

/* ----- Location strip ----- */
.loc-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.5rem;
  align-items: center;
}
.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink);
}
.loc-chip span {
  font-size: 1.15rem;
}

/* ----- Forms ----- */
.form {
  display: grid;
  gap: 1rem;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .form .row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: grid;
  gap: 0.35rem;
}
.field label {
  font-weight: 600;
  font-size: 0.89rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.contact-aside {
  display: grid;
  gap: 1.1rem;
}
.contact-aside .card {
  padding: 1.2rem 1.3rem;
}
.contact-aside .card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-aside .card h3 svg {
  color: var(--red);
}
.contact-aside .card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--mut);
}

/* ----- Testimonials ----- */
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.5;
  color: var(--red);
  height: 1.1rem;
}
.quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.03rem;
  color: var(--ink);
  line-height: 1.55;
}
.quote figcaption {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
.quote figcaption strong {
  color: var(--navy);
}
.quote figcaption span {
  color: var(--mut);
  font-size: 0.87rem;
}
.logos-label {
  text-align: center;
  margin: 2.4rem 0 1rem;
  color: var(--mut);
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.3rem;
}
.logo-ph {
  border: 1.5px dashed var(--line);
  color: var(--mut-2);
  border-radius: 10px;
  padding: 0.7rem 1.3rem;
  font-weight: 700;
  font-size: 0.88rem;
}

/* ----- Blog ----- */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--mut);
  font-size: 0.9rem;
  margin-top: 0.6rem;
}
.article {
  max-width: 740px;
  margin-inline: auto;
}
.article h2 {
  margin-top: 2rem;
  font-size: var(--t-2);
}
.article h3 {
  margin-top: 1.5rem;
}
.article p,
.article li {
  color: var(--mut);
}
.article > ul li,
.article > ol li {
  margin-bottom: 0.5rem;
}
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
a.post-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.post-card .badge {
  align-self: flex-start;
  margin-bottom: 0.7rem;
}
.post-card h3 {
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.post-card p {
  color: var(--mut);
  font-size: 0.94rem;
}
.post-card .post-meta {
  margin-top: auto;
  color: var(--mut-2);
  font-size: 0.81rem;
}

/* ----- Footer (dark anchor) ----- */
.site-footer {
  background: var(--navy-deep);
  color: #97a6bf;
  padding-block: clamp(2.6rem, 5vw, 4rem) 1.5rem;
  font-size: 0.93rem;
}
.site-footer .brand {
  color: #fff;
}
/* Logo sits on a light chip so it stays legible on the dark footer,
   whatever colours the artwork uses. */
.brand--footer .brand__logo {
  background: #fff;
  padding: 7px 11px;
  border-radius: 10px;
  box-sizing: content-box;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 860px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
.footer__brand p {
  margin-top: 0.9rem;
  max-width: 34ch;
  color: #8493ad;
}
.footer__col h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.footer__col a {
  color: #aab8cf;
}
.footer__col a:hover {
  color: #fff;
}
.footer__locations {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.footer__locations div {
  color: #8493ad;
}
.footer__locations strong {
  color: #d7dfee;
  display: block;
  font-size: 0.84rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: #74829c;
  font-size: 0.85rem;
}
.footer__bottom a {
  color: #aab8cf;
}

/* ----- Utilities ----- */
.flow > * + * {
  margin-top: 1rem;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tag-list li {
  background: var(--soft-2);
  color: var(--ink);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================
   WOW layer — motion, depth & signature interactions.
   Everything below is progressive enhancement and fully
   disabled under prefers-reduced-motion.
   ============================================================= */

/* ----- Header elevation ----- */
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(6, 26, 48, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

/* ----- Scroll reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ----- Animated gradient accent on the hero headline ----- */
.hero h1 .accent {
  background: linear-gradient(100deg, #d4263b 0%, #ff5e6c 45%, #d4263b 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--red);
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .accent {
    animation: shine 7s linear infinite;
  }
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* ----- Aurora background blobs ----- */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
}
.aurora span:nth-child(1) {
  width: 440px;
  height: 440px;
  background: rgba(37, 99, 235, 0.32);
  top: -130px;
  right: -70px;
  animation: drift1 19s ease-in-out infinite alternate;
}
.aurora span:nth-child(2) {
  width: 380px;
  height: 380px;
  background: rgba(212, 38, 59, 0.2);
  bottom: -150px;
  left: -60px;
  animation: drift2 23s ease-in-out infinite alternate;
}
@keyframes drift1 {
  to {
    transform: translate(-44px, 42px) scale(1.12);
  }
}
@keyframes drift2 {
  to {
    transform: translate(46px, -32px) scale(1.06);
  }
}
@media (prefers-reduced-motion: reduce) {
  .aurora span {
    animation: none;
  }
}
.hero__inner {
  z-index: 1;
}

/* ----- Live follow-the-sun panel ----- */
.livepanel {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.78)
  );
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 2.6vw, 1.7rem);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.livepanel__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.livepanel__live {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.livepanel__live .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 38, 59, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(212, 38, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 38, 59, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .livepanel__live .dot {
    animation: none;
  }
}
.livepanel__title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.sun-arc {
  position: relative;
  height: 58px;
  margin: 0.3rem 0 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #eaf2ff 0%, #fbfdff 100%);
  overflow: hidden;
}
.sun-arc__line {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  border-bottom: 2px dashed #cdd9ee;
}
.sun-dot {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: 0 0 -12px -12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe08a, #ff9f1c);
  box-shadow: 0 0 22px 5px rgba(255, 178, 56, 0.55);
  transition: left 0.9s linear, bottom 0.9s linear;
}
.clocks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.clock {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.clock--active {
  border-color: #cfe0ff;
  background: linear-gradient(90deg, var(--blue-tint), #fff);
}
.clock__flag {
  font-size: 1.15rem;
}
.clock__place {
  font-weight: 650;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.2;
}
.clock__place small {
  display: block;
  color: var(--mut-2);
  font-weight: 600;
  font-size: 0.72rem;
  margin-top: 2px;
}
.clock--active .clock__place small {
  color: var(--blue-press);
}
.clock__time {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
}
.livepanel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line);
}
.livepanel__foot b {
  font-size: 1.55rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ----- Card spotlight ----- */
.card,
.plan {
  position: relative;
}
.card::after,
.plan::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, -20%),
    rgba(37, 99, 235, 0.1),
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.card:hover::after,
.plan:hover::after {
  opacity: 1;
}
.card > *,
.plan > * {
  position: relative;
  z-index: 1;
}

/* ----- Primary button sheen ----- */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn--primary:hover::after {
  left: 150%;
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary::after {
    display: none;
  }
}

/* ----- Capabilities marquee ----- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 0.95rem 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__track span {
  color: var(--navy);
  font-weight: 650;
  font-size: 0.95rem;
}
.marquee__sep {
  color: var(--red) !important;
  font-weight: 400 !important;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ----- Pricing estimator ----- */
.estimator {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  max-width: 560px;
  margin-inline: auto;
}
.estimator__plans {
  display: flex;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  flex-wrap: wrap;
}
.estimator__plan {
  flex: 1;
  min-width: 150px;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--mut);
  transition: 0.2s var(--ease);
}
.estimator__plan.is-active {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--soft);
}
.estimator__slider {
  display: block;
  margin-bottom: 1.3rem;
  font-weight: 600;
}
.estimator__slider b {
  color: var(--navy);
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--soft-2);
  margin-top: 0.8rem;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid #fff;
  box-shadow: var(--shadow-2);
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: var(--shadow-2);
}
.estimator__result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}
.estimator__big {
  font-size: clamp(2.3rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

/* ----- Hero stacked aside: price card + live panel ----- */
.hero__aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.price-card--compact {
  padding: clamp(1.2rem, 2.4vw, 1.5rem);
}
.price-card--compact ul {
  margin: 0.9rem 0 1.1rem;
}
.livepanel__foot--status {
  justify-content: flex-start;
  gap: 0.55rem;
  color: var(--mut);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.livepanel__foot--status svg {
  color: var(--red);
  flex: none;
}
