/* TopLTC — edit brand tokens here */
:root {
  --color-bg: #fdfcf8;
  --color-bg-elevated: #ffffff;
  --color-navy: #0d0d52;
  --color-accent: #1a2bc2;
  --color-sea: #a3d6fa;
  --color-text: #16162a;
  --color-muted: #5a5a72;
  --color-border: rgba(13, 13, 82, 0.08);
  --color-navy-soft: rgba(13, 13, 82, 0.06);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max-width: 1140px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 20px 60px rgba(13, 13, 82, 0.08);
  --shadow-hero: 0 40px 120px rgba(13, 13, 82, 0.35);

  --header-h: 72px;
  --section-pad: clamp(3.5rem, 8vw, 6rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-navy);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-label--on-dark {
  color: var(--color-sea);
}

.section-center {
  text-align: center;
}

.measure {
  max-width: 52ch;
}

.measure--center {
  margin-inline: auto;
}

.proof__title {
  color: #fff;
}

.heading-xl {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--color-navy);
}

.heading-lg {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--color-navy);
}

.text-muted {
  color: var(--color-muted);
  margin: 0;
}

.text-balance {
  text-wrap: balance;
}

.highlight {
  color: var(--color-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
    background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--color-sea);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 28px rgba(26, 43, 194, 0.35);
}

.btn--primary:hover {
  background: #1524a8;
  transform: translateY(-1px);
}

.btn--hero {
  background: #fff;
  color: var(--color-navy);
  box-shadow: var(--shadow-hero);
}

.btn--hero:hover {
  background: var(--color-sea);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-sea);
  border: 1px solid rgba(163, 214, 250, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn__icon {
  width: 1.125rem;
  height: 1.125rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(13, 13, 82, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.site-header--light {
  background: rgba(253, 252, 248, 0.92);
  border-bottom-color: var(--color-border);
}

.site-header--light .logo__text,
.site-header--light .nav__link {
  color: var(--color-navy);
}

.site-header--light .nav__link:hover {
  color: var(--color-accent);
}

.site-header--light .nav-toggle__bar {
  background: var(--color-navy);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent), var(--color-sea));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
}

.logo__text {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.nav__link:hover {
  color: var(--color-sea);
}

.nav__cta {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    background: var(--color-navy);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .nav__link {
    font-size: 1.125rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* Hero — photo background + readable type */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background-color: #06081c;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: #06081c;
  background-image: url("../assets/hero-background.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4, 6, 20, 0.88) 0%,
    rgba(4, 6, 20, 0.65) 42%,
    rgba(4, 6, 20, 0.72) 100%
  );
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  color: var(--color-bg);
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
    max-width: 40rem;
  }
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: #ffffff;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
}

.hero .highlight {
  color: #c8eaff;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  max-width: 42rem;
  margin: 0 0 1.75rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero__secondary {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.btn--cta-solid {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 32px rgba(26, 43, 194, 0.5);
}

.btn--cta-solid:hover {
  background: #2234d4;
  color: #fff;
  transform: translateY(-1px);
}

.hero__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero__social a {
  color: inherit;
  margin-left: 1rem;
  text-decoration: none;
}

.hero__social a:hover {
  color: var(--color-sea);
}

/* Stats */
.stats {
  padding: var(--section-pad) 0;
  background: var(--color-bg-elevated);
}

.stats__intro {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 3rem;
}

.stats__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.stat-card__value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.35rem;
}

.stats__visual {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stats__visual img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

@media (max-width: 640px) {
  .stats__visual img {
    aspect-ratio: 4 / 3;
  }
}

/* Problem */
.problem {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.problem__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  max-width: 48rem;
}

.problem__headline-line {
  display: block;
}

.problem__body p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.problem__body p:last-child {
  margin-bottom: 0;
}

.problem__pains-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  margin: 2rem 0 0.75rem;
}

.problem__pains {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.problem__pains li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-text);
  font-weight: 500;
}

.problem__pains li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.problem__close {
  margin: 2rem 0 0;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.0625rem;
}

.problem__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  background: var(--color-bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(13, 13, 82, 0.04);
}

.problem__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-navy-soft);
  color: var(--color-accent);
  display: grid;
  place-items: center;
}

.problem__item strong {
  display: block;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.problem__item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

/* Solution */
.solution {
  padding: var(--section-pad) 0;
  background: var(--color-bg-elevated);
}

.solution__wrap {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--color-navy);
  color: #fff;
  overflow: hidden;
}

.solution__watermark {
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-size: clamp(4rem, 18vw, 12rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

.solution__content {
  position: relative;
  max-width: 560px;
}

.solution__content .section-label {
  color: var(--color-sea);
}

.solution__title {
  color: #fff;
  margin-bottom: 1rem;
}

.solution__content p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.5rem;
}

.solution__subhead {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.45;
}

.solution__intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1rem;
}

.solution__journey-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-sea);
  margin: 1.5rem 0 0.75rem;
}

.solution__pillar p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.solution__pillar strong {
  display: block;
  color: var(--color-sea);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.solution__close {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.solution__pillars {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .solution__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution__pillar {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
}


/* How it works */
.how {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.how__steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .how__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  height: 100%;
}

.step-card__num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  color: var(--color-navy);
}

.step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.how__cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* Services */
.services {
  padding: var(--section-pad) 0;
  background: var(--color-bg-elevated);
}

.services__head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 2.5rem;
}

.services__goal {
  font-weight: 600;
  color: var(--color-navy);
}

.offer__included-label {
  color: var(--color-navy);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.services__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.service-card--dark {
  background: var(--color-navy);
  color: #fff;
}

.service-card--dark .service-card__title {
  color: #fff;
}

.service-card--dark ul {
  color: rgba(255, 255, 255, 0.85);
}

.service-card--light {
  background: rgba(163, 214, 250, 0.25);
  border: 1px solid rgba(13, 13, 82, 0.08);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.service-card--dark .service-card__icon {
  color: var(--color-sea);
}

.service-card__title {
  font-size: 1.125rem;
  margin: 0;
  color: var(--color-navy);
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.service-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.service-card--dark .service-card__text {
  color: rgba(255, 255, 255, 0.88);
}

/* Results */
.results {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.results__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.results__intro p {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
}

.results__intro p:last-child {
  margin-bottom: 0;
}

.results__close {
  margin: 2.5rem 0 0;
  text-align: center;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.0625rem;
  max-width: 40rem;
  margin-inline: auto;
}

.case-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.case-card__body {
  padding: 1.5rem;
}

.case-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.case-card h3 {
  font-size: 1.125rem;
  margin: 0.35rem 0 0.75rem;
  color: var(--color-navy);
}

.case-card__metric {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.case-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Social proof */
.proof {
  padding: var(--section-pad) 0;
  background: var(--color-navy);
  color: #fff;
}

.proof__testimonials {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .proof__testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-card footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-card cite {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  display: block;
}

.testimonial-card .testimonial-card__company {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-sea);
  margin-top: 0.25rem;
}

/* Why TopLTC */
.why {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.why__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card {
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(13, 13, 82, 0.04);
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.why-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* Offer */
.offer {
  padding: var(--section-pad) 0;
  background: var(--color-bg-elevated);
}

.offer__box {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(26, 43, 194, 0.2);
  background: linear-gradient(180deg, rgba(163, 214, 250, 0.2) 0%, #fff 40%);
}

.offer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offer__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
}

.offer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.offer__list--left {
  text-align: left;
}

.offer__cta {
  margin-top: 1rem;
}

.offer__body {
  text-align: left;
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}

.offer__close {
  text-align: left;
  margin: 1.5rem 0 0;
  font-weight: 600;
  color: var(--color-navy);
}

/* CTA band */
.cta-band {
  padding: var(--section-pad) 0;
  background: var(--color-navy);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-band .cta-band__lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.cta-band__micro {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 40ch;
  margin-inline: auto;
  line-height: 1.5;
}

/* FAQ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.faq__list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq details {
  border-bottom: 1px solid var(--color-border);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding-bottom: 1.25rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  background: #07071f;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-sea);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.site-footer__brand .logo__text {
  color: #fff;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__tagline {
  margin-top: 1rem;
  max-width: 36ch;
}

.site-footer__note {
  margin: 0.5rem 0 0;
}

.site-footer__heading {
  color: #fff;
  margin-bottom: 0.25rem;
}

.site-footer__heading--spaced {
  display: block;
  margin-bottom: 0.5rem;
}

.site-footer__contact p {
  margin: 0.35rem 0 0;
}

.site-footer__cta {
  margin-top: 1rem;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
