/* ==========================================================================
   Ravel Business Solutions LLP
   Palette derived from the logo: deep navy + signal green
   Display: Fraunces · Body: Karla · Data: IBM Plex Mono
   ========================================================================== */

:root {
  /* Core */
  --navy-900: #080E24;
  --navy-800: #0D1633;
  --navy-700: #131E45;
  --navy-600: #1D2B5C;
  --navy-500: #2C3D75;

  /* Signal green, from the logo mark */
  --green-600: #009342;
  --green-500: #00B454;
  --green-400: #16D96B;
  --green-050: #E6F8EE;

  /* Neutrals */
  --paper: #F3F5F8;
  --paper-2: #E8ECF3;
  --white: #FFFFFF;
  --ink: #0D1633;
  --muted: #5D6A87;
  --line: #D9DFEA;

  /* Functional only — deadline urgency */
  --urgent: #C1442E;
  --urgent-bg: #FBEDEA;
  --warn: #B07A12;
  --warn-bg: #FBF3E2;

  /* Type */
  --display: "Fraunces", Georgia, serif;
  --body: "Karla", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Rhythm */
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7.5rem);
  --maxw: 1200px;
  --radius: 4px;
}

/* -------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-700); color: #fff;
  padding: .75rem 1.25rem; z-index: 999;
}
.skip:focus { left: 0; }

/* -------------------------------------------------- Type scale */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-800);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; letter-spacing: 0; }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.eyebrow--light { color: var(--green-400); }

.lede { font-size: clamp(1.08rem, 1.9vw, 1.3rem); color: var(--muted); line-height: 1.6; }

/* -------------------------------------------------- Layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy-800); color: #C7D0E4; }
.section--navy h2, .section--navy h3 { color: #fff; }

.head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head p { margin-top: 1rem; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 700px)  { .g-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px)  { .g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .g-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px)  { .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .g-4 { grid-template-columns: repeat(4, 1fr); } }

/* -------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-weight: 700; font-size: .96rem;
  padding: .95rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green-500); color: #052210; border-color: var(--green-500); }
.btn--primary:hover { background: var(--green-400); border-color: var(--green-400); }
.btn--navy { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.btn--navy:hover { background: var(--navy-600); border-color: var(--navy-600); }
.btn--ghost { border-color: currentColor; color: var(--navy-700); }
.btn--ghost-light { border-color: rgba(255,255,255,.45); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* -------------------------------------------------- Header */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,14,36,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.hdr__in { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.hdr__logo img { height: 34px; width: auto; }
.hdr__nav { margin-left: auto; display: none; gap: 1.9rem; align-items: center; }
@media (min-width: 1000px) { .hdr__nav { display: flex; } }
.hdr__nav a {
  color: #D3DAEA; text-decoration: none; font-size: .95rem; font-weight: 500;
  padding-block: .4rem; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.hdr__nav a:hover, .hdr__nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--green-500); }
.hdr__cta { display: none; }
@media (min-width: 1000px) { .hdr__cta { display: inline-flex; } }

.burger {
  margin-left: auto; display: grid; place-items: center;
  width: 44px; height: 44px; background: none; border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius); cursor: pointer;
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span { display: block; width: 20px; height: 2px; background: #fff; position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff;
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

.mnav { display: none; background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.1); }
.mnav.is-open { display: block; }
.mnav a {
  display: block; padding: .95rem var(--gut); color: #D3DAEA;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.07); font-weight: 500;
}
.mnav a:hover { background: rgba(255,255,255,.05); color: #fff; }

/* -------------------------------------------------- Hero */
.hero {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 55%, #16295E 100%);
  color: #C7D0E4; position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero::after {
  content: ""; position: absolute; right: -18%; top: -30%;
  width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,84,.16) 0%, transparent 68%);
  pointer-events: none;
}
.hero__in { position: relative; z-index: 2; display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 1000px) { .hero__in { grid-template-columns: 1.05fr .95fr; align-items: center; } }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--green-400); }
.hero__lede { font-size: clamp(1.05rem, 1.8vw, 1.24rem); margin-top: 1.4rem; color: #B8C3DB; }

.hero__proof {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem;
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.14);
}
.hero__proof div strong {
  display: block; font-family: var(--display); font-size: 1.9rem; color: #fff; line-height: 1;
}
.hero__proof div span {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: #8494B5;
}

/* -------------------------------------------------- SIGNATURE: Deadline Board */
.board {
  background: var(--white); border-radius: 6px; overflow: hidden;
  box-shadow: 0 30px 70px -18px rgba(0,0,0,.55);
  color: var(--ink);
}
.board__top {
  background: var(--navy-800); padding: 1.15rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.board__top h2, .board__top p { color: #fff; }
.board__title {
  font-family: var(--display); font-size: 1.08rem; font-weight: 600; color: #fff; letter-spacing: -.01em;
}
.board__live {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-400); display: inline-flex; align-items: center; gap: .45rem;
}
.board__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-400);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.board__list { list-style: none; padding: 0; margin: 0; }
.board__list li {
  display: grid; grid-template-columns: 3.6rem 1fr auto;
  gap: .9rem; align-items: center;
  padding: .85rem 1.4rem; border-bottom: 1px solid var(--line);
}
.board__list li:last-child { border-bottom: 0; }
.board__day {
  font-family: var(--mono); font-weight: 600; font-size: 1.32rem;
  color: var(--navy-700); text-align: center; line-height: 1;
}
.board__day small {
  display: block; font-size: .6rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-top: .25rem; font-weight: 500;
}
.board__what { font-size: .93rem; font-weight: 600; color: var(--navy-800); line-height: 1.3; }
.board__what span { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); margin-top: .1rem; }
.board__in {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  padding: .3rem .55rem; border-radius: 3px; white-space: nowrap;
  background: var(--paper-2); color: var(--muted);
}
.board__in.is-soon { background: var(--warn-bg); color: var(--warn); }
.board__in.is-urgent { background: var(--urgent-bg); color: var(--urgent); font-weight: 600; }
.board__foot {
  padding: .95rem 1.4rem; background: var(--paper);
  font-size: .78rem; color: var(--muted); border-top: 1px solid var(--line);
}
.board__foot a { color: var(--green-600); font-weight: 600; }

/* -------------------------------------------------- Cards */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--green-500); transform: translateY(-3px); box-shadow: 0 14px 34px -14px rgba(13,22,51,.22); }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .95rem; color: var(--muted); }
.card__num {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  color: var(--green-600); display: block; margin-bottom: .9rem; font-weight: 600;
}
.card ul { margin: 1rem 0 0; padding-left: 1.05rem; font-size: .9rem; color: var(--muted); }
.card ul li { margin-bottom: .35rem; }
.card__link {
  display: inline-block; margin-top: 1.15rem; font-weight: 700; font-size: .9rem;
  color: var(--green-600); text-decoration: none;
}
.card__link:hover { text-decoration: underline; }

/* Service stage cards */
.stage { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stage__hd { background: var(--navy-800); padding: 1.15rem 1.5rem; }
.stage__hd h3 { color: #fff; font-size: 1.15rem; }
.stage__hd p { color: #93A2C2; font-size: .82rem; margin-top: .25rem; font-family: var(--mono); letter-spacing: .04em; }
.stage__bd { padding: 1.4rem 1.5rem; }
.stage__bd ul { list-style: none; padding: 0; margin: 0; }
.stage__bd li { padding: .5rem 0 .5rem 1.5rem; position: relative; font-size: .93rem; border-bottom: 1px solid var(--paper-2); }
.stage__bd li:last-child { border-bottom: 0; }
.stage__bd li::before {
  content: ""; position: absolute; left: 0; top: 1.08em;
  width: 7px; height: 7px; background: var(--green-500); border-radius: 1px;
}

/* -------------------------------------------------- Locations */
.loc { display: grid; gap: clamp(1.5rem, 3vw, 2rem); }
@media (min-width: 900px) { .loc { grid-template-columns: 1.4fr 1fr 1fr; } }
.loc__card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem); background: var(--white);
  display: flex; flex-direction: column;
}
.loc__card--lead { background: var(--navy-800); border-color: var(--navy-800); color: #B8C3DB; }
.loc__card--lead h3 { color: #fff; }
.loc__flag {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--green-600); font-weight: 600; margin-bottom: .7rem; display: block;
}
.loc__card--lead .loc__flag { color: var(--green-400); }
.loc__card p { font-size: .93rem; color: inherit; }
.loc__card--lead p { color: #A9B6D2; }
.loc__meta { margin-top: auto; padding-top: 1.4rem; font-size: .88rem; }
.loc__meta a { color: var(--green-600); font-weight: 600; text-decoration: none; }
.loc__card--lead .loc__meta a { color: var(--green-400); }

/* -------------------------------------------------- Team */
.person { text-align: left; }
.person img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top center;
  border-radius: var(--radius); filter: grayscale(1); transition: filter .3s ease;
}
.person:hover img { filter: grayscale(0); }
.person h4 { margin-top: 1rem; font-size: 1.08rem; }
.person span { font-family: var(--mono); font-size: .74rem; color: var(--muted); letter-spacing: .05em; }

/* -------------------------------------------------- Testimonials */
.quote {
  background: var(--white); border-left: 3px solid var(--green-500);
  padding: clamp(1.5rem, 3vw, 2rem); border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 18px -8px rgba(13,22,51,.14);
}
.quote p { font-family: var(--display); font-size: 1.1rem; line-height: 1.5; color: var(--navy-800); }
.quote footer { margin-top: 1.2rem; font-family: var(--mono); font-size: .78rem; color: var(--muted); letter-spacing: .04em; }

/* -------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  padding: 1.35rem 2.5rem 1.35rem 0; cursor: pointer; position: relative;
  font-weight: 700; font-size: 1.02rem; color: var(--navy-800); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.4rem; color: var(--green-600); font-weight: 400;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 1.35rem; color: var(--muted); font-size: .97rem; }

/* -------------------------------------------------- Brand strip */
.brands { display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem; align-items: center; justify-content: center; }
.brands img { height: 34px; width: auto; opacity: .45; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.brands img:hover { opacity: 1; filter: grayscale(0); }

/* -------------------------------------------------- CTA band */
.band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: #fff; border-radius: 6px; padding: clamp(2.2rem, 5vw, 3.5rem);
  display: grid; gap: 1.75rem; align-items: center;
}
@media (min-width: 900px) { .band { grid-template-columns: 1.5fr auto; } }
.band h2 { color: #fff; }
.band p { color: #B8C3DB; margin-top: .8rem; }
.band .btn-row { margin-top: 0; }

/* -------------------------------------------------- Forms */
.form { display: grid; gap: 1.1rem; }
@media (min-width: 700px) { .form .form__half { grid-template-columns: 1fr 1fr; display: grid; gap: 1.1rem; } }
.field label {
  display: block; font-size: .82rem; font-weight: 700; margin-bottom: .4rem;
  color: var(--navy-800); letter-spacing: .01em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; font-family: var(--body); font-size: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-500); outline: none; box-shadow: 0 0 0 3px var(--green-050); }
.form__note { font-size: .82rem; color: var(--muted); }

/* -------------------------------------------------- WhatsApp float */
.wa {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #04310F;
  padding: .8rem 1.15rem; border-radius: 50px; text-decoration: none;
  font-weight: 700; font-size: .9rem; box-shadow: 0 8px 26px -6px rgba(0,0,0,.4);
  transition: transform .2s ease;
}
.wa:hover { transform: translateY(-3px); }
.wa svg { width: 20px; height: 20px; flex: none; }
.wa span { display: none; }
@media (min-width: 700px) { .wa span { display: inline; } }

/* -------------------------------------------------- Footer */
.ftr { background: var(--navy-900); color: #8FA0C0; padding-block: clamp(3rem, 6vw, 4.5rem) 0; font-size: .93rem; }
.ftr__grid { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .ftr__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.ftr img.ftr__logo { height: 36px; margin-bottom: 1.2rem; }
.ftr h4 { color: #fff; font-family: var(--body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: .6rem; }
.ftr a { color: #8FA0C0; text-decoration: none; }
.ftr a:hover { color: var(--green-400); }
.ftr__social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.ftr__social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius);
}
.ftr__social a:hover { background: var(--green-500); border-color: var(--green-500); color: #04310F; }
.ftr__social svg { width: 17px; height: 17px; }
.ftr__base {
  margin-top: 3rem; padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: #6C7C9C;
}

/* -------------------------------------------------- Page hero (inner) */
.phero { background: var(--navy-800); color: #B8C3DB; padding-block: clamp(3rem, 6vw, 4.75rem); }
.phero h1 { color: #fff; }
.phero p { margin-top: 1.1rem; color: #A9B6D2; }
.crumb { font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; color: #7C8DAF; margin-bottom: 1.1rem; }
.crumb a { color: var(--green-400); text-decoration: none; }

/* -------------------------------------------------- Utility */
.fill {
  background: var(--warn-bg); color: var(--warn);
  border-bottom: 1px dashed var(--warn); font-family: var(--mono); font-size: .9em; padding: 0 .2em;
}
.prose h3 { margin-top: 2.5rem; margin-bottom: .8rem; }
.prose p + p { margin-top: 1rem; }
.prose ul { margin: 1rem 0; padding-left: 1.2rem; color: var(--muted); }
.prose li { margin-bottom: .45rem; }
.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .split { grid-template-columns: 1.25fr .75fr; align-items: start; } }
.aside { background: var(--paper); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem); position: sticky; top: 100px; }
.aside h3 { font-size: 1.15rem; margin-bottom: .9rem; }
.aside ul { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.aside li { padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.aside li:last-child { border-bottom: 0; }
.aside a { color: var(--navy-700); text-decoration: none; font-weight: 600; }
.aside a:hover { color: var(--green-600); }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag {
  font-family: var(--mono); font-size: .74rem; padding: .35rem .7rem;
  background: var(--paper-2); border-radius: 3px; color: var(--muted);
}

/* ==========================================================================
   v2 — static hero, service process pages, pricing
   ========================================================================== */

/* -------------------------------------------------- Static hero */
.shero {
  background: var(--navy-800);
  color: #C7D0E4;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--green-500);
}
.shero__in {
  position: relative; z-index: 2;
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
@media (min-width: 980px) { .shero__in { grid-template-columns: 1.15fr .85fr; align-items: center; } }
.shero h1 { color: #fff; }
.shero h1 em { font-style: normal; color: var(--green-400); }
.shero__lede { font-size: clamp(1.05rem, 1.8vw, 1.24rem); margin-top: 1.4rem; color: #B0BCD6; }
.shero__img { border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); }
.shero__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Static credential bar */
.creds {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.09);
}
.creds__in {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(255,255,255,.09);
}
@media (min-width: 800px) { .creds__in { grid-template-columns: repeat(4, 1fr); } }
.creds__i { background: var(--navy-900); padding: 1.5rem clamp(1rem, 2.5vw, 1.75rem); }
.creds__i strong {
  display: block; font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff; line-height: 1; margin-bottom: .45rem;
}
.creds__i span {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .11em;
  text-transform: uppercase; color: #7F90B2;
}

/* -------------------------------------------------- Service index cards */
.svc {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  height: 100%;
}
.svc:hover { border-color: var(--green-500); transform: translateY(-3px); box-shadow: 0 16px 36px -16px rgba(13,22,51,.24); }
.svc h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.svc p { font-size: .92rem; color: var(--muted); }
.svc__fee {
  display: inline-block; margin-top: 1.1rem;
  font-family: var(--mono); font-size: .82rem; font-weight: 600;
  color: var(--green-600); background: var(--green-050);
  padding: .35rem .7rem; border-radius: 3px;
}
.svc__go {
  display: block; margin-top: 1rem; font-size: .88rem;
  font-weight: 700; color: var(--navy-700);
}
.svc:hover .svc__go { color: var(--green-600); }

/* -------------------------------------------------- Process steps */
.steps { counter-reset: st; list-style: none; padding: 0; margin: 2rem 0 0; }
.steps li {
  counter-increment: st; position: relative;
  padding: 0 0 2rem 3.75rem; border-left: 2px solid var(--line); margin-left: 1.15rem;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(st, decimal-leading-zero);
  position: absolute; left: -1.2rem; top: -.15rem;
  width: 2.35rem; height: 2.35rem; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  font-family: var(--mono); font-size: .78rem; font-weight: 600;
  display: grid; place-items: center;
}
.steps h4 { font-family: var(--body); font-size: 1.02rem; font-weight: 700; margin-bottom: .35rem; color: var(--navy-800); }
.steps p { font-size: .94rem; color: var(--muted); margin: 0; }
.steps__when {
  display: inline-block; margin-top: .5rem;
  font-family: var(--mono); font-size: .72rem; color: var(--muted);
  background: var(--paper-2); padding: .22rem .5rem; border-radius: 3px;
}

/* -------------------------------------------------- Checklist */
.check {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem);
}
.check h3 { font-size: 1.2rem; margin-bottom: 1.1rem; }
.check__grp { margin-bottom: 1.5rem; }
.check__grp:last-child { margin-bottom: 0; }
.check__grp h4 {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: .7rem; font-weight: 600;
}
.check ul { list-style: none; padding: 0; margin: 0; }
.check li {
  position: relative; padding: .42rem 0 .42rem 1.75rem;
  font-size: .94rem; border-bottom: 1px solid var(--line);
}
.check li:last-child { border-bottom: 0; }
.check li::before {
  content: ""; position: absolute; left: .1rem; top: .95em;
  width: 9px; height: 5px; border-left: 2px solid var(--green-500);
  border-bottom: 2px solid var(--green-500); transform: rotate(-45deg);
}

/* -------------------------------------------------- Fee box */
.fee {
  background: var(--navy-800); color: #B8C3DB;
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem);
}
.fee h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.fee__amt {
  font-family: var(--display); font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--green-400); line-height: 1; font-weight: 600;
}
.fee__unit { font-family: var(--mono); font-size: .78rem; color: #93A2C2; display: block; margin-top: .55rem; }
.fee__note { font-size: .86rem; color: #93A2C2; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.14); }
.fee .btn { margin-top: 1.4rem; width: 100%; justify-content: center; }

/* -------------------------------------------------- Pricing table */
.ptable { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: .95rem; }
.ptable th, .ptable td { text-align: left; padding: .95rem 1rem; border-bottom: 1px solid var(--line); }
.ptable th {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.ptable td:last-child, .ptable th:last-child { text-align: right; }
.ptable tbody tr:hover { background: var(--paper); }
.ptable .amt { font-family: var(--mono); font-weight: 600; color: var(--navy-800); white-space: nowrap; }
.ptable a { color: var(--navy-700); text-decoration: none; font-weight: 600; }
.ptable a:hover { color: var(--green-600); }

/* -------------------------------------------------- Locations inline */
.where { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.where span {
  font-family: var(--mono); font-size: .82rem; font-weight: 500;
  padding: .5rem .9rem; border: 1px solid var(--line);
  border-radius: 3px; color: var(--navy-700); background: var(--white);
}
.section--navy .where span { border-color: rgba(255,255,255,.2); background: transparent; color: #C7D0E4; }

/* -------------------------------------------------- Compliance strip (static) */
.cal { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 700px) { .cal { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1000px) { .cal { grid-template-columns: repeat(6,1fr); } }
.cal__i { background: var(--white); padding: 1.15rem 1rem; text-align: center; }
.cal__d { font-family: var(--mono); font-size: 1.5rem; font-weight: 600; color: var(--navy-700); line-height: 1; }
.cal__l { font-size: .8rem; font-weight: 700; color: var(--navy-800); margin-top: .5rem; }
.cal__s { font-size: .74rem; color: var(--muted); margin-top: .15rem; }

/* Fix: .aside a was overriding button colours inside the fee box */
.aside .btn--primary,
.fee .btn--primary { color: #052210; }
.aside .btn--ghost-light,
.fee .btn--ghost-light { color: #fff; }
.aside .btn--navy,
.fee .btn--navy { color: #fff; }
.fee a.btn:hover { text-decoration: none; }

/* ==========================================================================
   v3 — bigger logo, intro loader, animated hero
   ========================================================================== */

/* -------------------------------------------------- Bigger logo */
.hdr__logo img { height: 46px; }
@media (max-width: 560px) { .hdr__logo img { height: 38px; } }
.ftr img.ftr__logo { height: 52px; margin-bottom: 1.4rem; }

/* -------------------------------------------------- Intro loader */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-900);
  display: grid; place-items: center;
  overflow: hidden;
}
#loader.is-gone { pointer-events: none; }

.ld__inner {
  position: relative; z-index: 3;
  display: grid; place-items: center; gap: 1.6rem;
  transition: opacity .45s ease, transform .45s ease;
}
#loader.is-gone .ld__inner { opacity: 0; transform: translateY(-14px); }

.ld__mark {
  width: clamp(78px, 12vw, 116px);
  opacity: 0;
  animation: markIn .85s cubic-bezier(.2,.8,.25,1) .1s forwards;
}
@keyframes markIn {
  0%   { opacity: 0; transform: scale(.68) rotate(-9deg); }
  60%  { opacity: 1; transform: scale(1.06) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.ld__word {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .34em;
  text-transform: uppercase; color: #6E80A6;
  opacity: 0; animation: fadeUp .6s ease .62s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }

.ld__bar {
  width: clamp(150px, 26vw, 240px); height: 2px;
  background: rgba(255,255,255,.13); overflow: hidden; border-radius: 2px;
}
.ld__bar i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  animation: barFill 1.55s cubic-bezier(.4,0,.2,1) .35s forwards;
}
@keyframes barFill { to { width: 100%; } }

/* curtain reveal */
.ld__half {
  position: absolute; left: 0; width: 100%; height: 50.5%;
  background: var(--navy-900); z-index: 2;
  transition: transform .75s cubic-bezier(.76,0,.24,1);
}
.ld__half--t { top: 0; }
.ld__half--b { bottom: 0; }
#loader.is-gone .ld__half--t { transform: translateY(-100%); }
#loader.is-gone .ld__half--b { transform: translateY(100%); }
#loader.is-gone { background: transparent; transition: background .1s .2s; }

body.is-loading { overflow: hidden; }

/* -------------------------------------------------- Hero entrance */
.reveal > * { opacity: 0; transform: translateY(18px); }
body.ready .reveal > * { animation: revIn .7s cubic-bezier(.2,.8,.25,1) forwards; }
body.ready .reveal > *:nth-child(1) { animation-delay: .05s; }
body.ready .reveal > *:nth-child(2) { animation-delay: .15s; }
body.ready .reveal > *:nth-child(3) { animation-delay: .25s; }
body.ready .reveal > *:nth-child(4) { animation-delay: .35s; }
@keyframes revIn { to { opacity: 1; transform: none; } }

/* -------------------------------------------------- Animated hero panel */
.stage-wrap {
  position: relative;
  min-height: clamp(320px, 38vw, 430px);
  display: grid; place-items: center;
  opacity: 0;
}
body.ready .stage-wrap { animation: revIn .8s cubic-bezier(.2,.8,.25,1) .4s forwards; }

/* faint rotating monogram behind */
.stage-wrap::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/logo/mark-white.png") center/58% no-repeat;
  opacity: .05; animation: slowSpin 34s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

/* orbit rings */
.stage-wrap::after {
  content: ""; position: absolute;
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 0 0 clamp(18px, 4vw, 40px) rgba(255,255,255,.028);
}

.deck { position: relative; z-index: 2; width: min(370px, 88%); }
.deck__card {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(9px);
  border-radius: 8px; padding: 1.6rem 1.5rem;
  opacity: 0; transform: translateY(16px) scale(.97);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.25,1);
}
.deck__card.is-on { opacity: 1; transform: none; }
.deck__k {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green-400);
}
.deck__t {
  font-family: var(--display); font-size: 1.45rem; font-weight: 600;
  color: #fff; line-height: 1.15; margin: .7rem 0 .55rem; letter-spacing: -.01em;
}
.deck__d { font-size: .88rem; color: #A9B6D2; line-height: 1.5; }
.deck__f {
  margin-top: 1.15rem; padding-top: 1.05rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: baseline; justify-content: space-between; gap: .8rem;
}
.deck__f b { font-family: var(--mono); font-size: 1.18rem; color: var(--green-400); font-weight: 600; }
.deck__f span { font-family: var(--mono); font-size: .68rem; color: #7F90B2; letter-spacing: .06em; }

.deck__dots { display: flex; gap: .4rem; justify-content: center; margin-top: 1.1rem; position: relative; z-index: 2; }
.deck__dots b {
  width: 22px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.18); transition: background .35s ease;
}
.deck__dots b.is-on { background: var(--green-400); }

/* -------------------------------------------------- Counters */
.creds__i strong { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  #loader { display: none !important; }
  .reveal > *, .stage-wrap { opacity: 1 !important; transform: none !important; animation: none !important; }
  .stage-wrap::before { animation: none; }
}

/* Fix: stack deck cards in one grid cell so the container sizes to the tallest */
.deck { display: grid; }
.deck__card {
  position: relative; inset: auto;
  grid-area: 1 / 1;
  visibility: hidden;
}
.deck__card.is-on { visibility: visible; }
.deck__dots { margin-top: 1.4rem; }
