/* Printner — UK printer support
   Direction: deep ink navy + cyan ink, Outfit/Figtree */

:root {
  --ink: #07131f;
  --ink-2: #0b1d2e;
  --slate: #143049;
  --mist: #d7e3ee;
  --paper: #eef3f8;
  --paper-2: #f5f8fb;
  --cyan: #12b8c9;
  --cyan-deep: #0a8f9c;
  --cyan-soft: rgba(18, 184, 201, 0.14);
  --amber: #e8a03a;
  --text: #132433;
  --muted: #5a7083;
  --line: rgba(20, 48, 73, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(7, 19, 31, 0.14);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1120px;
  --gutter: clamp(1.25rem, 5vw, 2.75rem);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper-2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
img, svg, video, iframe { max-width: 100%; display: block; }
a { color: var(--cyan-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.15em; }
li + li { margin-top: 0.35em; }

.skip-link {
  position: absolute; left: 0.75rem; top: 0; z-index: 1000;
  transform: translateY(-120%);
  background: var(--cyan); color: var(--ink); padding: 0.6rem 1rem; font-weight: 700;
}
.skip-link:focus { transform: translateY(0.75rem); }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(238, 243, 248, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(7, 19, 31, 0.06);
}
.header-bar {
  display: flex; align-items: center; gap: 0.5rem;
  min-height: var(--header-h);
  min-width: 0;
  width: 100%;
}
.site-header .container {
  padding-inline: var(--gutter);
}
.logo {
  display: inline-flex; align-items: center; gap: 0.55rem;
  text-decoration: none; color: var(--ink); font-weight: 800;
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -0.03em;
  flex-shrink: 1; min-width: 0;
}
.logo__mark {
  width: 28px; height: 28px; border-radius: 8px;
  background:
    linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 55%, var(--slate) 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25), 0 6px 16px rgba(18,184,201,0.35);
  position: relative;
}
.logo__mark::after {
  content: ""; position: absolute; inset: 7px 6px 7px 6px;
  border: 2px solid rgba(255,255,255,0.85); border-radius: 3px;
  border-top-width: 3px;
}
.header-cta {
  display: flex; align-items: center; gap: 0.4rem;
  margin-left: auto; flex-shrink: 0;
}
.header-phone { display: none !important; }
@media (min-width: 1100px) {
  .header-phone { display: inline-flex !important; }
}
@media (max-width: 420px) {
  .header-cta .btn--primary { padding: 0.5rem 0.7rem; font-size: 0.82rem; }
  .logo { font-size: 1.05rem; }
}

.nav { display: none; }
@media (min-width: 980px) {
  .nav { display: block; margin-left: 1.25rem; }
  .nav__list {
    display: flex; align-items: center; gap: 0.15rem;
    list-style: none; margin: 0; padding: 0;
  }
  .nav__link {
    display: inline-flex; align-items: center;
    padding: 0.45rem 0.7rem; border-radius: 999px;
    color: var(--slate); text-decoration: none; font-weight: 600; font-size: 0.95rem;
    background: transparent; border: 0; cursor: pointer; font-family: inherit;
  }
  .nav__link:hover, .nav__link.is-active { background: var(--cyan-soft); color: var(--ink); }
  .nav__item--has-sub { position: relative; }
  .nav__sub {
    position: absolute; top: calc(100% + 0.4rem); left: 0;
    min-width: 230px; margin: 0; padding: 0.55rem;
    list-style: none; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: 0.2s var(--ease);
  }
  .nav__item--has-sub:hover .nav__sub,
  .nav__item--has-sub:focus-within .nav__sub,
  .nav__item--has-sub.is-open .nav__sub {
    opacity: 1; visibility: visible; transform: none;
  }
  .nav__sub a {
    display: block; padding: 0.55rem 0.7rem; border-radius: 8px;
    color: var(--text); text-decoration: none; font-weight: 500;
  }
  .nav__sub a:hover { background: var(--paper); color: var(--ink); }
}

.nav-burger {
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer;
}
.nav-burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s var(--ease); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 980px) { .nav-burger { display: none; } }

@media (max-width: 979px) {
  .nav {
    display: block; position: fixed; inset: var(--header-h) 0 auto 0;
    background: rgba(238,243,248,0.98); border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.25rem; transform: translateY(-120%);
    transition: transform 0.35s var(--ease); max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }
  .nav.is-open { transform: none; }
  .nav__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.25rem; }
  .nav__link {
    width: 100%; text-align: left; padding: 0.85rem 0.9rem; border-radius: 10px;
    border: 0; background: #fff; color: var(--ink); font-weight: 600; font-size: 1rem;
    font-family: inherit; cursor: pointer; text-decoration: none; display: block;
  }
  .nav__sub {
    list-style: none; margin: 0.25rem 0 0.5rem; padding: 0 0 0 0.75rem;
    display: none;
  }
  .nav__item--has-sub.is-open .nav__sub { display: grid; gap: 0.2rem; }
  .nav__sub a {
    display: block; padding: 0.65rem 0.8rem; border-radius: 8px;
    background: var(--paper); color: var(--text); text-decoration: none; font-weight: 500;
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.85rem 1.25rem; border-radius: 999px; font-weight: 700;
  font-family: var(--font-body); font-size: 0.98rem; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; transition: 0.25s var(--ease);
  white-space: nowrap;
  max-width: 100%;
}
.btn--primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
  color: #042029; box-shadow: 0 10px 28px rgba(18,184,201,0.28);
}
.btn--primary:hover { transform: translateY(-1px); color: #042029; filter: brightness(1.05); }
.btn--ghost {
  background: rgba(255,255,255,0.12); color: inherit; border-color: currentColor;
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); color: inherit; }
.btn--outline {
  background: #fff; color: var(--ink); border-color: var(--line);
}
.btn--outline:hover { border-color: var(--cyan); color: var(--ink); background: var(--cyan-soft); }
.btn--sm { padding: 0.55rem 0.95rem; font-size: 0.9rem; }
.btn--dark {
  background: var(--ink); color: #fff;
}
.btn--dark:hover { background: var(--slate); color: #fff; }

.cta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  max-width: 100%;
}
@media (max-width: 520px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: center;
  color: #e8f2f8;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background:
    radial-gradient(ellipse 80% 60% at 78% 28%, rgba(18,184,201,0.32), transparent 55%),
    radial-gradient(ellipse 50% 40% at 8% 85%, rgba(232,160,58,0.14), transparent 50%),
    linear-gradient(160deg, #061018 0%, #0b1d2e 42%, #12324a 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 35%, transparent 92%);
  animation: gridDrift 28s linear infinite;
}
.hero::after {
  content: ""; position: absolute; right: -6%; top: 12%;
  width: min(48vw, 480px); height: min(48vw, 480px);
  max-width: 90%;
  border-radius: 40% 60% 55% 45%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.16), transparent 45%),
    linear-gradient(145deg, rgba(18,184,201,0.45), rgba(10,143,156,0.05) 60%, transparent);
  filter: blur(2px);
  animation: inkFloat 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes gridDrift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-48px, -48px, 0); }
}
@keyframes inkFloat {
  from { transform: translate3d(0,0,0) rotate(0deg); }
  to { transform: translate3d(-18px, 22px, 0) rotate(8deg); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(2.75rem, 6vh, 4.5rem) var(--gutter);
  min-width: 0;
  box-sizing: border-box;
}
.hero .brand-signal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 7vw, 4.25rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 0.75rem;
  background: linear-gradient(120deg, #fff 20%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: riseIn 0.9s var(--ease) both;
  overflow-wrap: anywhere;
}
.hero h1 {
  color: #f3f8fc;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  font-weight: 600;
  max-width: 22ch;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
  animation: riseIn 0.9s 0.08s var(--ease) both;
  overflow-wrap: break-word;
}
.hero .lede {
  color: rgba(232,242,248,0.82);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  max-width: 40ch;
  margin-bottom: 1.35rem;
  line-height: 1.55;
  animation: riseIn 0.9s 0.16s var(--ease) both;
  overflow-wrap: break-word;
}
.hero .cta-row { animation: riseIn 0.9s 0.24s var(--ease) both; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
@media (max-width: 640px) {
  .hero { min-height: auto; }
  .hero__inner { padding-block: 2.5rem 2.75rem; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
main, .section, .page-hero, .site-footer, .site-header {
  max-width: 100%;
  min-width: 0;
}
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; overflow-x: clip; }
.section--alt {
  background:
    linear-gradient(180deg, rgba(18,184,201,0.06), transparent 40%),
    var(--paper);
}
.section--ink {
  background: linear-gradient(160deg, #07131f, #12324a);
  color: #d7e3ee;
}
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .muted { color: rgba(215,227,238,0.75); }
.section-head { max-width: 640px; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.45rem; }
.muted { color: var(--muted); }
.kicker {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cyan-deep); margin-bottom: 0.6rem;
}

/* Service / link grids — not cardy by default: open list rows */
.service-grid {
  display: grid; gap: 0.65rem;
  grid-template-columns: 1fr;
  min-width: 0;
}
@media (min-width: 720px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-link {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.15rem 1.2rem; border-radius: var(--radius);
  text-decoration: none; color: inherit;
  background: transparent; border: 1px solid transparent;
  transition: 0.25s var(--ease);
  position: relative; overflow: hidden;
}
.service-link::before {
  content: ""; position: absolute; left: 0; top: 0.9rem; bottom: 0.9rem; width: 3px;
  border-radius: 3px; background: var(--cyan); transform: scaleY(0.4);
  transition: 0.25s var(--ease);
}
.service-link:hover {
  background: #fff; border-color: var(--line); box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-link:hover::before { transform: scaleY(1); }
.service-link strong {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--ink);
  padding-left: 0.75rem;
}
.service-link span { color: var(--muted); font-size: 0.95rem; padding-left: 0.75rem; }

.brand-strip {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.brand-chip {
  display: inline-flex; align-items: center; padding: 0.7rem 1rem;
  border-radius: 999px; text-decoration: none; font-weight: 700;
  color: var(--ink); background: #fff; border: 1px solid var(--line);
  transition: 0.25s var(--ease);
}
.brand-chip:hover { border-color: var(--cyan); background: var(--cyan-soft); color: var(--ink); }

/* Wizard teaser / steps */
.wizard-teaser {
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 860px) {
  .wizard-teaser { grid-template-columns: 1.1fr 0.9fr; }
}
.flow-preview {
  display: grid; gap: 0.75rem;
}
.flow-step {
  display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start;
  padding: 1rem 1.1rem; border-left: 2px solid rgba(18,184,201,0.45);
  background: rgba(255,255,255,0.04);
  opacity: 0; transform: translateX(12px);
  animation: stepIn 0.7s var(--ease) forwards;
}
.flow-step:nth-child(1) { animation-delay: 0.1s; }
.flow-step:nth-child(2) { animation-delay: 0.25s; }
.flow-step:nth-child(3) { animation-delay: 0.4s; }
.flow-step:nth-child(4) { animation-delay: 0.55s; }
@keyframes stepIn {
  to { opacity: 1; transform: none; }
}
.flow-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 0.85rem;
  background: var(--cyan); color: var(--ink);
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 2rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(18,184,201,0.16), transparent 55%),
    linear-gradient(180deg, #e4edf5, var(--paper-2));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.85rem); max-width: 18ch; }
.page-hero .lede { max-width: 52ch; color: var(--muted); font-size: 1.08rem; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center;
  list-style: none; margin: 0 0 1rem; padding: 0;
  font-size: 0.88rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--cyan-deep); }
.breadcrumb li:not(:last-child)::after {
  content: "/"; margin-left: 0.35rem; opacity: 0.5;
}

.prose { max-width: 720px; }
.prose h2 { font-size: 1.55rem; margin-top: 2rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.prose .callout {
  margin: 1.5rem 0; padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, var(--cyan-soft), transparent);
}
.content-layout {
  display: grid; gap: 2.5rem;
}
@media (min-width: 960px) {
  .content-layout { grid-template-columns: minmax(0, 1fr) 280px; align-items: start; }
}
.side-panel {
  position: sticky; top: calc(var(--header-h) + 1rem);
  padding: 1.25rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
}
.side-panel h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.side-panel ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.side-panel a { text-decoration: none; font-weight: 600; color: var(--ink); }
.side-panel a:hover { color: var(--cyan-deep); }

/* Checklist steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.5rem 0; }
.steps > li {
  counter-increment: step;
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 3.5rem;
  margin-bottom: 0.75rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.steps > li::before {
  content: counter(step);
  position: absolute; left: 1rem; top: 1.1rem;
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; font-weight: 800; font-size: 0.85rem;
  font-family: var(--font-display);
}

/* Location / brand grids */
.link-grid {
  display: grid; gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.link-grid a {
  display: block; padding: 0.95rem 1rem; text-decoration: none; font-weight: 700;
  color: var(--ink); border-bottom: 1px solid var(--line);
  transition: 0.2s var(--ease);
}
.link-grid a:hover { color: var(--cyan-deep); padding-left: 1.15rem; }

/* Forms */
.form {
  display: grid; gap: 1rem; max-width: 560px;
}
.form label { display: grid; gap: 0.4rem; font-weight: 600; font-size: 0.95rem; }
.form input, .form select, .form textarea {
  width: 100%; padding: 0.8rem 0.95rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: #fff; font: inherit; color: var(--text);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--cyan); outline-offset: 1px; border-color: var(--cyan);
}
.form .hint { font-weight: 400; color: var(--muted); font-size: 0.88rem; }
.form .check {
  display: flex; gap: 0.65rem; align-items: flex-start; font-weight: 500;
}
.form .check input { width: auto; margin-top: 0.25rem; }
.form-success {
  padding: 1rem 1.1rem; border-radius: var(--radius); background: var(--cyan-soft);
  border: 1px solid rgba(18,184,201,0.35); color: var(--ink); font-weight: 600;
}

/* Wizard interactive */
.wizard {
  max-width: 720px;
  background: #fff; border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.wizard__progress {
  height: 4px; background: var(--paper); border-radius: 4px; margin-bottom: 1.5rem; overflow: hidden;
}
.wizard__bar {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--cyan), var(--cyan-deep));
  transition: width 0.4s var(--ease);
}
.wizard__question {
  font-family: var(--font-display); font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
}
.wizard__hint { color: var(--muted); margin-bottom: 1.25rem; }
.wizard__options { display: grid; gap: 0.65rem; }
.wizard-opt {
  text-align: left; width: 100%; padding: 1rem 1.1rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--paper-2); cursor: pointer;
  font: inherit; font-weight: 600; color: var(--ink);
  transition: 0.2s var(--ease);
}
.wizard-opt:hover, .wizard-opt:focus {
  border-color: var(--cyan); background: var(--cyan-soft); outline: none;
}
.wizard__result h3 { margin-top: 0; }
.wizard__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--ink); color: #d7e3ee; padding: 1rem;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.25);
  max-width: 100%;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner {
  width: min(100%, var(--max)); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  max-width: 100%;
}
.cookie-banner p { margin: 0; max-width: 58ch; font-size: 0.95rem; }
.cookie-banner a { color: var(--cyan); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Footer */
.site-footer {
  position: relative; margin-top: 2rem;
  background: var(--ink); color: rgba(215,227,238,0.82); padding: 3.5rem 0 2rem;
}
.footer-wave {
  position: absolute; top: -28px; left: 0; right: 0; height: 28px;
  background: radial-gradient(ellipse at center, rgba(18,184,201,0.35), transparent 70%);
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.footer-brand p { font-size: 0.95rem; }
.footer-meta { color: rgba(215,227,238,0.55); font-size: 0.9rem; }
.footer-heading {
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; margin-bottom: 0.85rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a {
  color: rgba(215,227,238,0.75); text-decoration: none; font-size: 0.95rem;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem; color: rgba(215,227,238,0.5);
}
.footer-legal-nav {
  margin: 0.75rem 0;
}
.footer-legal-nav a {
  color: rgba(215,227,238,0.75);
  text-decoration: none;
}
.footer-legal-nav a:hover { color: var(--cyan); }
.footer-bottom a { color: var(--cyan); }
.footer-disclaimer { max-width: 70ch; }

/* Pricing fee disclosure */
.fee-table {
  margin: 1.25rem 0 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.fee-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .fee-row {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}
.fee-label { font-weight: 600; color: var(--ink); }
.fee-value { color: var(--cyan-deep); }
.fee-note {
  margin: 0;
  padding: 0 1.15rem 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Utilities */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.two-col {
  display: grid; gap: 1.5rem;
}
@media (min-width: 760px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
.stat-inline {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem;
  padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.stat-inline strong {
  display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--ink);
}
.stat-inline span { font-size: 0.9rem; color: var(--muted); }

.legal-note {
  font-size: 0.9rem; color: var(--muted); margin-top: 2rem;
  padding-top: 1rem; border-top: 1px solid var(--line);
}
