/* ==========================================================================
   PapeTax (St Fin Corp) - marketing + portal stylesheet
   Mobile-first, no framework, no web fonts (system stack loads instantly).
   Colour pairs below were chosen to meet WCAG AA contrast on their own
   backgrounds; check any replacement with a contrast checker before shipping.
   ========================================================================== */

:root {
  --navy-900: #0a1f3c;
  --navy-800: #0e2c53;
  --navy-700: #14406f;
  --navy-100: #e8eef6;
  --navy-50:  #f4f7fb;

  --ink:      #101828;
  --ink-2:    #475467;
  --ink-3:    #667085;
  --line:     #d9e0ea;
  --white:    #ffffff;

  /* Primary call to action. High-contrast against both the navy hero and the
     white page body, and used for nothing else on the page. */
  --cta:       #12805c;
  --cta-hover: #0d6449;
  --cta-ring:  rgba(18, 128, 92, 0.35);

  --warn-bg:   #fff6e6;
  --warn-line: #f0c674;
  --err-bg:    #fdeceb;
  --err-line:  #e5a3a0;
  --err-ink:   #93211d;
  --ok-bg:     #e9f6f0;
  --ok-line:   #9ed3bd;
  --ok-ink:    #0d5b41;

  --radius:    10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 31, 60, 0.16);

  --wrap: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::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(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.22; margin: 0 0 0.5em; font-weight: 700; }
h1 { font-size: 1.9rem; letter-spacing: -0.02em; }
h2 { font-size: 1.5rem; letter-spacing: -0.01em; }
h3 { font-size: 1.125rem; }
p  { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
img { max-width: 100%; height: auto; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 0; top: -60px; z-index: 100;
  background: var(--navy-900); color: var(--white); padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0; transition: top 0.15s ease;
}
.skip-link:focus { top: 0; color: var(--white); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.wrap--narrow { max-width: 760px; }

/* --------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font: inherit; font-weight: 600; text-align: center; text-decoration: none;
  border: 1px solid transparent; border-radius: var(--radius);
  padding: 0.7rem 1.15rem; cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--cta); color: var(--white); border-color: var(--cta);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.1);
}
.btn--primary:hover { background: var(--cta-hover); border-color: var(--cta-hover); color: var(--white); }

/* The single most important element on the page: oversized, high contrast,
   and given room to breathe so nothing competes with it. */
.btn--xl {
  font-size: 1.15rem;
  padding: 1.05rem 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 26rem;
  box-shadow: 0 8px 20px rgba(18, 128, 92, 0.28);
}
.btn--xl:hover { box-shadow: 0 10px 26px rgba(18, 128, 92, 0.34); }
.btn--xl:focus-visible { outline-color: var(--white); }

.btn--secondary { background: var(--navy-700); color: var(--white); border-color: var(--navy-700); }
.btn--secondary:hover { background: var(--navy-800); color: var(--white); }

.btn--ghost {
  background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }

.btn--sm {
  padding: 0.6rem 1.15rem;
  min-height: 40px;
  font-size: 0.92rem;
  background: var(--cta);
  color: var(--white);
}
.btn--sm:hover { background: var(--cta-hover); color: var(--white); }

.btn--block { width: 100%; }

.linkish {
  background: none; border: 0; padding: 0; font: inherit; color: var(--navy-700);
  text-decoration: underline; cursor: pointer;
}

/* ---------------------------------------------------------------- header -- */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 64px;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand__mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px;
  background: var(--navy-900); color: var(--white); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.brand__name { color: var(--ink); font-weight: 700; font-size: 1.02rem; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); cursor: pointer;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }

.site-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 0.5rem 1.25rem 1rem;
  box-shadow: var(--shadow-md);
}
.site-nav.is-open { display: block; }
/* :not(.btn) matters here - without it this rule's higher specificity
   (class+type vs. .btn--sm's single class) strips the button's own padding
   down to zero, leaving its green background hugging the bare text with no
   breathing room on any side. */
.site-nav a:not(.btn) {
  display: block; padding: 0.65rem 0; color: var(--ink); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--navy-100);
}
.site-nav a:last-child { border-bottom: 0; }
.site-nav .btn { display: inline-flex; margin-top: 0.6rem; color: var(--white); }

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex; align-items: center; gap: 1.5rem;
    position: static; padding: 0; border: 0; box-shadow: none; background: none;
  }
  .site-nav a:not(.btn) { border: 0; padding: 0; font-size: 0.95rem; }
  .site-nav .btn { margin-top: 0; }
}

/* ------------------------------------------------------------------ hero -- */

.hero {
  background:
    radial-gradient(1100px 420px at 80% -10%, rgba(18, 128, 92, 0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.75rem 0 3rem;
}
.hero__inner { max-width: 820px; }
.hero__eyebrow {
  display: inline-block; margin: 0 0 1rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #a8d5c4;
  border: 1px solid rgba(168, 213, 196, 0.4); border-radius: 999px;
  padding: 0.3rem 0.8rem;
}
.hero__headline {
  color: var(--white); font-size: 2rem; line-height: 1.15; letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.hero__sub { font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 46rem; }

.hero__cta { margin: 0 0 1.5rem; }
.hero__cta-note {
  margin: 0.75rem 0 1.25rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.72);
}
.hero__cta .btn--ghost { width: 100%; max-width: 26rem; }

.trustline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  margin: 0; font-size: 0.9rem; font-weight: 600; color: rgba(255, 255, 255, 0.82);
}
.trustline span[aria-hidden] { color: rgba(255, 255, 255, 0.35); }

@media (min-width: 720px) {
  .hero { padding: 4rem 0 4.25rem; }
  .hero__headline { font-size: 2.75rem; }
  .hero__sub { font-size: 1.15rem; }
  .hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem; }
  .hero__cta .btn--xl { width: auto; }
  .hero__cta .btn--ghost { width: auto; order: 3; }
  .hero__cta-note { width: 100%; order: 4; margin: 0.25rem 0 0; }
}

/* ------------------------------------------------------------- countdown -- */

.countdown {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem 0.9rem;
  margin: 0 0 1.75rem;
  max-width: 26rem;
}
.countdown__label {
  margin: 0 0 0.6rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.68);
}
.countdown__units { display: flex; gap: 0.5rem; }
.countdown__unit {
  flex: 1; text-align: center; background: rgba(255, 255, 255, 0.07);
  border-radius: 8px; padding: 0.5rem 0.25rem;
}
.countdown__num {
  display: block; font-size: 1.5rem; font-weight: 700; color: var(--white);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.countdown__cap {
  display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}
.countdown__note {
  margin: 0.7rem 0 0; font-size: 0.78rem; line-height: 1.45; color: rgba(255, 255, 255, 0.65);
}

/* -------------------------------------------------------------- sections -- */

.section { padding: 3rem 0; }
.section--alt { background: var(--navy-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__title { font-size: 1.6rem; margin-bottom: 0.75rem; }
.section__lede { font-size: 1.05rem; max-width: 44rem; margin-bottom: 2rem; }

@media (min-width: 720px) {
  .section { padding: 4.25rem 0; }
  .section__title { font-size: 2rem; }
}

/* ----------------------------------------------------------------- cards -- */

.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
@media (min-width: 620px) { .cards--4, .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.35rem; box-shadow: var(--shadow-sm);
}
.card__title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card p { margin: 0; font-size: 0.95rem; }
.card--service { border-top: 3px solid var(--navy-700); }
.card--quote blockquote { margin: 0 0 0.75rem; }
.card--quote blockquote p {
  font-style: italic; color: var(--ink-3);
  border-left: 3px solid var(--navy-100); padding-left: 0.9rem;
}
.card__cite { font-size: 0.85rem; font-weight: 600; color: var(--ink-3); }

/* ----------------------------------------------------------------- steps -- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { position: relative; padding-top: 0.25rem; }
.step__num {
  display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 0.75rem;
  border-radius: 50%; background: var(--navy-900); color: var(--white);
  font-weight: 700; font-size: 0.95rem;
}
.step__title { font-size: 1.02rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.95rem; margin: 0; }

/* -------------------------------------------------------------- deadline -- */

.deadline { display: grid; gap: 2rem; }
@media (min-width: 940px) { .deadline { grid-template-columns: 1.25fr 1fr; align-items: start; gap: 3rem; } }

.deadline__copy p { max-width: 40rem; }
.fine { font-size: 0.85rem; color: var(--ink-3); }

.estimator {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-md);
}
.estimator__title { font-size: 1.1rem; margin-bottom: 1rem; }
.estimator__form { display: grid; gap: 1rem; }
.estimator__out { margin-top: 1.25rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.estimator__rows { margin: 0 0 0.75rem; }
.estimator__rows > div {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0;
  border-bottom: 1px solid var(--navy-100);
}
.estimator__rows dt { color: var(--ink-2); font-size: 0.95rem; }
.estimator__rows dd { margin: 0; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.estimator__total { border-bottom: 0 !important; padding-top: 0.6rem !important; }
.estimator__total dt { font-weight: 700; color: var(--ink); }
.estimator__total dd { font-size: 1.15rem; }
.estimator__disclaimer { margin-top: 1rem; margin-bottom: 0; }

/* ---------------------------------------------------------------- fields -- */

.field { display: block; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: 0.92rem; margin-bottom: 0.35rem; }
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field input[type="number"] {
  width: 100%; font: inherit; color: var(--ink);
  padding: 0.65rem 0.75rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white);
}
.field input:focus { border-color: var(--cta); outline: 3px solid var(--cta-ring); outline-offset: 0; }
.field input[aria-invalid="true"] { border-color: var(--err-line); }

.input-prefix { position: relative; }
.input-prefix span { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--ink-3); }
.input-prefix input { padding-left: 1.6rem !important; }

.help { font-size: 0.85rem; color: var(--ink-3); margin: 0.4rem 0 0; }

/* ------------------------------------------------------------------ about -- */

.about { display: grid; gap: 2rem; }
@media (min-width: 860px) { .about { grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; } }

.portrait-placeholder {
  display: grid; place-items: center; aspect-ratio: 1 / 1; max-width: 260px;
  background: var(--navy-100); border: 2px dashed var(--navy-700); border-radius: var(--radius-lg);
  color: var(--navy-700); font-weight: 700; letter-spacing: 0.06em;
}
.about__bio { font-size: 1.02rem; }
.credentials { list-style: none; margin: 0 0 1rem; padding: 0; border-top: 1px solid var(--line); }
.credentials li {
  display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid var(--line);
}
.credentials__key { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.credentials__val { color: var(--ink-2); font-size: 0.92rem; }

/* -------------------------------------------------------------- accordion -- */

.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__heading { margin: 0; font-size: 1rem; }
.accordion__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.1rem 0; background: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 600; font-size: 1.02rem; color: var(--ink); text-align: left;
}
.accordion__trigger:hover { color: var(--navy-700); }
.accordion__icon {
  position: relative; flex: 0 0 20px; width: 20px; height: 20px;
}
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; background: var(--navy-700); border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.accordion__icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.accordion__icon::after  { top: 2px; left: 9px; width: 2px; height: 16px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); opacity: 0; }
.accordion__panel { padding: 0 0 1.25rem; max-width: 62ch; }
.accordion__panel p { margin: 0 0 0.75rem; font-size: 0.98rem; }
.accordion__panel p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- calendly -- */

.calendly {
  background: var(--white); border: 2px dashed var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.25rem; text-align: center;
}
.calendly__fallback { margin: 0; color: var(--ink-3); font-size: 0.95rem; }

/* ------------------------------------------------------------ final CTA -- */

.final-cta {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0;
}
.final-cta__inner { max-width: 720px; }
.final-cta h2 { color: var(--white); font-size: 1.7rem; }
.final-cta p { font-size: 1.02rem; }
.final-cta .countdown { margin-top: 1.5rem; }
.final-cta .trustline { margin-top: 1.25rem; }
@media (min-width: 720px) {
  .final-cta { padding: 4rem 0; }
  .final-cta h2 { font-size: 2rem; }
  .final-cta .btn--xl { width: auto; }
}

/* ---------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--navy-900); color: rgba(255, 255, 255, 0.72);
  padding: 2.5rem 0 2rem; font-size: 0.92rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.86); }
.site-footer a:hover { color: var(--white); }
.site-footer__inner { display: grid; gap: 1.75rem; margin-bottom: 1.75rem; }
@media (min-width: 760px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem; } }
.site-footer__brand { color: var(--white); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.site-footer__tagline { color: rgba(255, 255, 255, 0.6); }
.site-footer__head {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55); margin-bottom: 0.6rem;
}
.site-footer ul { list-style: none; margin: 0 0 0.75rem; padding: 0; }
.site-footer li { padding: 0.2rem 0; }
.site-footer__licence { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.25rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); max-width: 60rem;
}
.copyright { font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); margin: 0; }

/* ----------------------------------------------------------------- legal -- */

.legal { padding: 2.5rem 0 3.5rem; }
.legal h1 { font-size: 1.8rem; }
.legal h2 { font-size: 1.2rem; margin-top: 2rem; }
.legal p, .legal li { max-width: 68ch; }
.legal-meta { color: var(--ink-3); font-size: 0.9rem; }
.legal-banner {
  background: var(--warn-bg); border: 1px solid var(--warn-line); border-left-width: 4px;
  border-radius: var(--radius); padding: 1rem 1.15rem; margin: 1.5rem 0 2rem;
}
.legal-banner p:last-child { margin-bottom: 0; }
.legal .disclaimer { border-top-color: rgba(255, 255, 255, 0.14); }

/* ==========================================================================
   Production components
   ========================================================================== */

/* ---------------------------------------------------------- header phone -- */

.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  margin-right: 0.75rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--cta-hover); }
.header-phone .icon { width: 18px; height: 18px; color: var(--cta); }
@media (min-width: 460px) { .header-phone { display: inline-flex; } }
@media (min-width: 880px) { .header-phone { margin-right: 1.5rem; } }

.site-nav--static {
  display: flex; align-items: center; gap: 1.25rem;
  position: static; padding: 0; border: 0; box-shadow: none; background: none;
}
.site-nav--static a { border: 0; padding: 0; font-size: 0.95rem; }

/* --------------------------------------------------------- pricing band -- */

.pricing-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cta);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pricing-band__figure {
  margin: 0;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cta);
  letter-spacing: -0.03em;
}
.pricing-band__copy h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.pricing-band__copy p { margin: 0 0 0.5rem; font-size: 0.95rem; }
.pricing-band__copy p:last-child { margin-bottom: 0; }
@media (min-width: 620px) {
  .pricing-band { grid-template-columns: auto 1fr; gap: 1.75rem; padding: 1.75rem 2rem; }
  .pricing-band__figure { font-size: 3.5rem; }
}

/* -------------------------------------------------------------- contact -- */

.contact-grid { display: grid; gap: 1rem; margin: 0 0 1.5rem; }
@media (min-width: 560px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-card:hover { border-color: var(--cta); box-shadow: var(--shadow-md); }
.contact-card__icon { width: 26px; height: 26px; color: var(--cta); margin-bottom: 0.35rem; }
.contact-card__label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3);
}
.contact-card__value { font-size: 1.1rem; font-weight: 700; color: var(--ink); overflow-wrap: anywhere; }

/* ---------------------------------------------------------- final CTA ---- */

.final-cta__price {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------------------------------------------------------------- about -- */

.about__bio { font-size: 1.08rem; color: var(--ink-2); }
.about .credentials { margin-top: 1.5rem; }

/* ---------------------------------------------------- legal page extras -- */

.legal-summary {
  background: var(--navy-50);
  border-left: 4px solid var(--navy-700);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.15rem;
  margin: 1.5rem 0 2rem;
  font-size: 1rem;
  color: var(--ink-2);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
  display: block;
  overflow-x: auto;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-table th { color: var(--ink); font-weight: 600; background: var(--navy-50); white-space: nowrap; }
.legal-table code { font-size: 0.88em; background: var(--navy-100); padding: 0.1rem 0.3rem; border-radius: 4px; }

.consent-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  margin: 1.25rem 0 1rem;
  box-shadow: var(--shadow-sm);
}
.consent-box__status { font-weight: 600; color: var(--ink); margin-bottom: 0.9rem; }
.consent-box__status:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; }
.consent-box .fine { margin: 0.9rem 0 0; }
