/* =========================================================
   YourWebDesignAgency — components.css
   Header, navigation, buttons, cards, panels, footer, forms.
   Values follow DESIGN-SYSTEM.md — no new colours, no new radii.
   ========================================================= */

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg-header);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
/* Only once the page is scrolled does the header separate itself from the hero —
   at the top it stays invisible so the aura reads as one surface. */
.site-header.is-stuck { border-bottom-color: var(--line-hair); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: var(--head-y) var(--pad-x);
  max-width: var(--wrap-header);
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 14px; color: var(--text); flex: none; }
.brand:hover { color: var(--text); }
.brand-mark { width: 46px; height: 42px; flex: none; filter: drop-shadow(0 0 16px var(--accent-glow)); }
.brand-name { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; }
.brand-name em { font-style: normal; color: var(--accent); }
.brand-sub {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 2px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.nav a { color: var(--muted-2); white-space: nowrap; }
.nav a:hover { color: var(--text); }

/* Hover underline that grows out of the middle — same blue bar the active
   page already carries, so hovering previews the state you are heading for. */
@media (min-width: 901px) {
  .nav a:not(.nav-cta) { position: relative; }
  .nav a:not(.nav-cta)::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -7px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.22s ease;
  }
  .nav a:not(.nav-cta):hover::before { transform: scaleX(1); }
  .nav a[aria-current="page"]::before { display: none; }
}

.nav a[aria-current="page"] { color: var(--text); position: relative; }
.nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.nav-cta {
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  color: var(--pure);
  box-shadow: 0 0 20px var(--accent-glow);
  transition: background var(--t), transform var(--t);
}
.nav-cta:hover { background: var(--fill-5); transform: translateY(-1px); color: var(--pure); }
.nav .nav-cta[aria-current="page"]::after { display: none; }

.nav-toggle { display: none; }
.nav-overlay { display: none; }

/* Eight items plus a CTA get tight between the burger breakpoint and a wide
   desktop — tighten the rhythm rather than dropping links. */
@media (min-width: 901px) and (max-width: 1180px) {
  .header-inner { gap: 16px; }
  .nav { gap: 15px; font-size: 13px; }
  .nav-cta { padding: 8px 13px; }
  .brand-sub { letter-spacing: 0.22em; }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    flex: none;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-soft-2);
    background: transparent;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    font-family: var(--font);
  }
  .nav-toggle:hover { background: var(--fill-4); }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(6, 7, 10, 0.72);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }
  .nav-overlay.is-open { opacity: 1; visibility: visible; }

  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 80;
    width: min(340px, 86vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 84px 16px 24px;
    border-left: 1px solid var(--line-soft-2);
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-drop);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.26s ease, visibility 0.26s ease;
  }
  .nav.is-open { transform: none; visibility: visible; }

  .nav a { padding: 13px 14px; border-radius: var(--radius-xs); font-size: 16px; }
  .nav a:hover { background: var(--fill-4); }
  .nav a[aria-current="page"] { background: var(--fill-4); }
  .nav a[aria-current="page"]::after {
    left: 14px; right: auto; bottom: auto; top: 50%;
    width: 3px; height: 18px;
    transform: translate(-10px, -50%);
  }
  .nav .nav-cta { text-align: center; margin-top: 10px; }

  .nav-close {
    position: absolute;
    top: 18px; right: 16px;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-soft-2);
    background: transparent;
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    font-family: var(--font);
  }
  .nav-close:hover { background: var(--fill-4); }
}
@media (min-width: 901px) { .nav-close { display: none; } }

/* No-JS fallback: the header script never runs, so this list is the navigation. */
.noscript-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-alt);
  font-size: 14px;
}
.noscript-nav a { color: var(--muted-2); }

/* =========================================================
   BREADCRUMBS
   ========================================================= */
.breadcrumbs {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 22px var(--pad-x) 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li { display: flex; gap: 8px; align-items: center; }
.breadcrumbs li + li::before { content: '/'; color: var(--dim-2); }
.breadcrumbs a { color: var(--dim); }
.breadcrumbs a:hover { color: var(--text-2); }
.breadcrumbs [aria-current="page"] { color: var(--muted-2); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t);
}
.btn-primary {
  background: var(--pure);
  color: var(--on-light);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); color: var(--on-light); box-shadow: var(--shadow-btn-hover); }
.btn-ghost {
  border-color: var(--line-med);
  background: var(--fill-3);
  backdrop-filter: blur(8px);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--line-bright); background: var(--fill-5); color: var(--text); }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* =========================================================
   BADGE / PILL LABELS
   ========================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft-2);
  background: var(--fill-4);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
}
.badge-dot {
  position: relative;
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent-bright);
}
/* A slow ping on the badge dot — the only motion above the fold besides the
   aura, and the one that signals "this offer is live". */
.badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-bright);
  animation: ping 3.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  background: var(--fill-1);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.tag-accent { color: var(--accent-bright); border-color: var(--line-soft-2); }

/* =========================================================
   PANELS
   ========================================================= */
.panel {
  position: relative;
  border-radius: var(--radius-panel-sm);
  border: 1px solid var(--panel-line);
  background: var(--glass-mid);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-panel);
  padding: 28px;
}
.panel-soft {
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-soft);
  background: var(--tint-fill);
  padding: 26px;
}
.glow::before {
  content: '';
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(74, 124, 214, 0.4), rgba(48, 74, 150, 0.28) 58%, transparent 76%);
  filter: blur(24px);
  animation: lick 6s ease-in-out infinite;
  pointer-events: none;
}
.panel > *, .panel-soft > * { position: relative; }

/* =========================================================
   CARDS
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.card {
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid var(--panel-line);
  background: var(--glass);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  padding: 26px;
  min-height: 216px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
/* The float animation is reserved for the four cards on the home page — on the
   long content pages a whole grid of drifting cards would be noise. */
.cards-float .card { animation: floatY 9s ease-in-out infinite; }
.cards-float .card:nth-child(2) { animation-duration: 10.5s; animation-delay: 0.5s; }
.cards-float .card:nth-child(3) { animation-duration: 8.4s; animation-delay: 1s; }
.cards-float .card:nth-child(4) { animation-duration: 9.8s; animation-delay: 1.5s; }
.card::before {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(80, 130, 220, 0.42), rgba(48, 74, 150, 0.3) 58%, transparent 76%);
  filter: blur(20px);
  animation: lick 4.6s ease-in-out infinite;
  pointer-events: none;
}
.card:nth-child(2)::before { animation-duration: 5.4s; }
.card:nth-child(3)::before { animation-duration: 3.8s; }
.card:nth-child(4)::before { animation-duration: 6.2s; }
.card-index {
  position: relative;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.card-body { position: relative; display: flex; flex-direction: column; gap: 8px; }
.card-body b { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; }
.card-body span, .card-body p { font-size: 14px; line-height: 1.6; color: var(--muted-2); }
/* Mono kicker above a bullet list inside a card — the label style from the
   design system, used to break long service copy into scannable blocks. */
.card-body .micro-head {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  line-height: 1.4;
}
.card-body ul { margin: 4px 0 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.card-body li { font-size: 14px; line-height: 1.55; color: var(--muted-2); }
.card-body li::marker { color: var(--accent); }

/* Quiet card variant for long lists of content — no glow, no float. */
.card-quiet {
  min-height: 0;
  border-color: var(--line-soft);
  background: var(--tint-fill);
  backdrop-filter: none;
  box-shadow: none;
  transition: transform var(--t), border-color var(--t), background var(--t), box-shadow var(--t);
}
.card-quiet::before { display: none; }

/* One shared hover for every quiet surface: a small lift and a blue edge. */
.card-quiet:hover, .step:hover, .problem:hover, .project:hover, .guide-card:hover {
  transform: translateY(-3px);
  border-color: var(--tint-line-strong);
  box-shadow: var(--shadow-lift);
}
@media (hover: none) {
  .card-quiet:hover, .step:hover, .problem:hover, .project:hover, .guide-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* =========================================================
   STEPS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); }
.step {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-soft);
  background: var(--tint-fill);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--t), border-color var(--t), background var(--t), box-shadow var(--t);
}
/* Scoped to .step so it outranks `.step span` below — the number is a span
   itself, and the looser selector was quietly winning the colour. */
.step .step-num, .step-num {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--tint-line-strong);
  background: var(--tint-fill-2);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-bright);
  box-shadow: 0 0 18px -6px var(--accent-glow);
  transition: box-shadow var(--t), border-color var(--t);
}
.step:hover .step-num { box-shadow: 0 0 22px -4px var(--accent-glow); border-color: var(--accent); }
.step b { font-size: 17px; font-weight: 600; }
.step span, .step p { font-size: 14px; line-height: 1.6; color: var(--muted-2); }
.step ul { margin: 4px 0 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.step li { font-size: 14px; line-height: 1.55; color: var(--muted-2); }
.step li::marker { color: var(--accent); }

/* =========================================================
   TIMELINE (process page)
   ========================================================= */
.timeline { position: relative; display: flex; flex-direction: column; gap: 26px; padding-left: 46px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 17px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--line-soft-2), var(--line-soft) 60%, transparent);
}
.tl-item { position: relative; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--bg);
  box-shadow: 0 0 16px var(--accent-glow), inset 0 0 0 3px var(--tint-fill-2);
  transition: background var(--t), box-shadow var(--t);
}
.tl-item:hover::before { background: var(--accent); box-shadow: 0 0 22px var(--accent-glow); }
.tl-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.tl-head h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; }
.tl-time { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-bright); }
.tl-item p { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 660px; }
.tl-item p + p { margin-top: 10px; }
.tl-item ul { margin: 12px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; max-width: 660px; }
.tl-item li { font-size: 15px; line-height: 1.6; color: var(--muted); }
.tl-item li::marker { color: var(--accent); }

@media (max-width: 600px) {
  .timeline { padding-left: 30px; }
  .timeline::before { left: 7px; }
  .tl-item::before { left: -30px; width: 13px; height: 13px; }
}

/* =========================================================
   TABLES
   ========================================================= */
.table-scroll { overflow-x: auto; border-radius: var(--radius-card); border: 1px solid var(--line-soft); }
table.data {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--tint-fill);
}
table.data tbody tr { transition: background var(--t); }
table.data tbody tr:hover { background: var(--tint-fill-2); }
table.data caption {
  text-align: left;
  padding: 18px 22px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}
table.data th, table.data td {
  padding: 14px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-hair);
  vertical-align: top;
  line-height: 1.55;
}
table.data thead th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 400;
  border-bottom-color: var(--line-soft);
}
table.data tbody th { font-weight: 600; color: var(--text); }
table.data td { color: var(--muted); }
table.data tbody tr:last-child th, table.data tbody tr:last-child td { border-bottom: 0; }
.yes { color: var(--accent-bright); font-weight: 600; }
.no { color: var(--dim); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: var(--wrap-faq); }
.faq-wide { max-width: none; }
.faq details {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: var(--tint-fill);
  padding: 18px 22px;
  transition: border-color var(--t), background var(--t);
}
.faq details:hover { border-color: var(--tint-line); }
.faq details[open] { border-color: var(--tint-line-strong); }
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
/* The marker is two blue bars, not a character: that way the vertical bar can
   shrink away and the whole thing turn, so "+" becomes "–" as a movement. */
.faq summary::after {
  content: '';
  flex: none;
  width: 15px; height: 15px;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 15px 1.6px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 1.6px 15px no-repeat;
  transition: transform 0.28s ease, background-size 0.28s ease;
}
.faq details[open] summary::after {
  background-size: 15px 1.6px, 1.6px 0;
  transform: rotate(180deg);
}
.faq details[open] > *:not(summary) { animation: softIn 0.3s ease both; }
.faq p { margin-top: 12px; font-size: 15px; line-height: 1.65; color: var(--muted); }
.faq p + p { margin-top: 10px; }
.faq ul { margin: 12px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.faq li { font-size: 15px; line-height: 1.6; color: var(--muted); }
.faq li::marker { color: var(--accent); }

/* =========================================================
   FORMS
   ========================================================= */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--text-2); }
.field .hint { font-size: 12.5px; color: var(--dim); }
.req { color: var(--accent); }

.field input, .field select, .field textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--fill-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-btn);
  padding: 13px 15px;
  width: 100%;
  transition: border-color var(--t), background var(--t);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted-2) 50%),
                    linear-gradient(135deg, var(--muted-2) 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.field select option { background: var(--bg-alt); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--line-soft-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
  border-color: var(--line-soft-2);
  background: var(--fill-3);
}

.field .error-msg { font-size: 13px; color: var(--danger-bright); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field.has-error .error-msg { display: block; }
.field.has-error input:focus, .field.has-error select:focus, .field.has-error textarea:focus {
  outline-color: var(--danger-bright);
}

.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.6; color: var(--muted); }
.form-consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--accent); }
.form-consent a { text-decoration: underline; text-underline-offset: 3px; }

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-btn);
  border: 1px dashed var(--line-med);
  background: var(--fill-3);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  display: none;
}
.form-status.is-visible { display: block; }

/* =========================================================
   NOTICE
   ========================================================= */
/* Standing note for things like "these are demos, not client work".
   Written out in full rather than as a variant of a base .notice: it is always
   applied on its own, so it never inherited anything from one. That is also
   why border-width is now explicit — without it the browser default `medium`
   applied and these boxes rendered with a 3px frame while every other panel
   on the site uses a 1px hairline. */
.notice-static {
  display: block;
  margin: 0;
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--accent);
  background: var(--tint-fill);
  color: var(--muted);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.6;
}
.notice-static b { color: var(--text-2); }

/* Placeholder marker — every one of these has to be filled before go-live. */
.placeholder {
  font-family: var(--mono);
  font-size: 0.86em;
  color: var(--accent-bright);
  border-bottom: 1px dashed var(--line-med);
  padding-bottom: 1px;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  position: relative;
  border-radius: var(--radius-panel);
  border: 1px solid var(--line-strong);
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-panel-lg);
  padding: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(74, 124, 214, 0.42), rgba(44, 68, 140, 0.26) 58%, transparent 76%);
  filter: blur(28px);
  animation: lick 7s ease-in-out infinite;
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-copy { max-width: 560px; display: flex; flex-direction: column; gap: 12px; }
.cta-copy h2 { font-size: clamp(24px, 3.2vw, 30px); font-weight: 600; }
.cta-copy p { font-size: 16px; line-height: 1.65; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   CONTACT PANEL
   ========================================================= */
.contact-panel {
  border-radius: var(--radius-panel-sm);
  border: 1px solid var(--panel-line);
  background: var(--glass-mid);
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.contact-panel h2 { font-size: 26px; font-weight: 600; }
.contact-panel p { margin-top: 8px; color: var(--muted-2); font-size: 15px; }

/* =========================================================
   FACT LIST (the "what's included" pattern)
   ========================================================= */
.includes { position: relative; display: flex; flex-direction: column; gap: 14px; }
.includes > b { font-size: 15px; font-weight: 600; color: var(--text-2); }
.includes ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.includes li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--muted); line-height: 1.5; }
.includes li::before {
  content: ''; width: 8px; height: 8px; border-radius: 2px; flex: none; margin-top: 7px;
  background: var(--accent);
  transition: transform var(--t), box-shadow var(--t);
}
.includes li:hover::before { transform: scale(1.35) rotate(45deg); box-shadow: 0 0 10px var(--accent); }
.includes li.highlight { color: var(--text-2); }
.includes li.highlight::before { background: var(--pure); }
.includes li.excluded { color: var(--dim); }
.includes li.excluded::before { background: var(--dim-2); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: var(--sec-y);
  border-top: 1px solid var(--line-soft);
  background: var(--bg-alt);
  padding: var(--foot-yt) var(--pad-x) var(--foot-yb);
}
.footer-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; line-height: 1.65; color: var(--muted-2); }
.footer-col h3 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-2); font-weight: 400;
}
.footer-col p { max-width: 320px; color: var(--muted-4); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--muted-2); }
.footer-links a:hover { color: var(--text); }
.address { font-style: normal; display: flex; flex-direction: column; }

.footer-bottom {
  max-width: var(--wrap);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-hair);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--dim);
}
/* Legally relevant small print — kept at --dim (4.53:1) rather than --dim-2
   (2.7:1), which would fail WCAG AA on exactly the text that must be readable. */
.fineprint { font-size: 11px; color: var(--dim); max-width: 640px; line-height: 1.6; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .cards-float .card { animation: none; }
  .cta-band { padding: 30px; }
}

@media (max-width: 600px) {
  .btn { width: 100%; }
  .cta-actions { width: 100%; }
  .contact-panel { padding: 26px; }
  .cta-band { padding: 24px; }
  .panel { padding: 22px; }
  table.data th, table.data td { padding: 12px 16px; }
}

@media (max-width: 480px) {
  .brand-mark { width: 40px; height: 37px; }
  .brand-name { font-size: 16px; }
  .card, .step, .panel-soft { padding: 22px; }
}
