/* ============================================================
   The Workstation — Formation Site Styles
   Includes the Formation Website Design System tokens and
   The Workstation brand overrides in a single file.
   ============================================================ */

/* ---------- Webfonts --------------------------------------- */
/* Primary delivery: Google Fonts (link tag in HTML head).
   Display face is Raleway (geometric, airy, confident).
   Body face is Inter (neutral, legible at small sizes).
   Both are Google-hosted variable fonts — no local fallback needed. */

:root {
  /* ---------- Brand accent (The Workstation green) ---------- */
  --brand-50:  #F4F9E6;
  --brand-100: #E5F1C0;
  --brand-200: #CEE68E;
  --brand-400: #AAD435;
  --brand-500: #96C11F;   /* primary green per brand guidelines */
  --brand-600: #80A619;   /* slightly darker for text/contrast */
  --brand-700: #638012;   /* hover */
  --brand-800: #45590C;

  /* ---------- Neutral ink ramp — derived from spec primaries -- */
  /* --color-dark-section: #1F1F1F  --color-primary: #3A3A3A    */
  --ink-950: #1F1F1F;  /* darkest — dark section bg             */
  --ink-900: #3A3A3A;  /* primary text, nav bg                  */
  --ink-700: #4A4A4A;  /* secondary text                        */
  --ink-600: #5A5A5A;  /* body copy                             */
  --ink-500: #7A7A7A;  /* muted / placeholders                  */
  --ink-400: #9A9A9A;  /* disabled / very muted                 */
  --ink-300: #C0C0C0;  /* borders on light bg                   */
  --ink-200: #E0E0E0;  /* hairline dividers                     */
  --ink-100: #F0F0F0;  /* subtle bg tint                        */
  --ink-50:  #F5F5F5;  /* light bg — spec --color-light-bg      */

  /* ---------- Surfaces -------------------------------------- */
  --surface:         #FFFFFF;
  --surface-tinted:  #F5F5F5;
  --surface-inverse: #1F1F1F;

  /* ---------- Status (never re-skinned) --------------------- */
  --status-green:        #059669;
  --status-green-bg:     #ECFDF5;
  --status-green-border: #6EE7B7;
  --status-green-ink:    #065F46;

  --status-amber:        #D97706;
  --status-amber-bg:     #FFFBEB;
  --status-amber-border: #FCD34D;
  --status-amber-ink:    #92400E;

  --status-red:          #DC2626;
  --status-red-bg:       #FEF2F2;
  --status-red-border:   #FCA5A5;
  --status-red-ink:      #991B1B;

  /* ---------- Typography ------------------------------------ */
  --font-sans:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Raleway", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif:   "Raleway", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-30: 1.875rem;
  --fs-36: 2.25rem;
  --fs-48: 3rem;
  --fs-60: 3.75rem;

  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-normal:  1.5;
  --lh-relaxed: 1.65;

  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.02em;
  --tracking-label:  0.08em;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  /* ---------- Spacing (4px base) ---------------------------- */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-8:  32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;

  --container-max:    1280px;
  --container-narrow: 720px;
  --section-y:        96px;
  --section-y-mobile: 64px;

  /* ---------- Radii ----------------------------------------- */
  --r-sm:   6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 999px;

  /* ---------- Elevation ------------------------------------- */
  --shadow-sm:    0 1px 2px rgba(11,15,25,0.04), 0 1px 3px rgba(11,15,25,0.06);
  --shadow-md:    0 4px 8px rgba(11,15,25,0.05), 0 8px 24px rgba(11,15,25,0.08);
  --shadow-focus: 0 0 0 3px rgba(150, 193, 31, 0.35);

  /* ---------- Motion ---------------------------------------- */
  --ease:     cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur-fast: 150ms;
  --dur-med:  200ms;
  --dur-slow: 250ms;
}

/* ---------- Base ------------------------------------------- */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-18);
  line-height: var(--lh-relaxed);
  color: var(--ink-950);
  background: var(--surface);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p { margin: 0 0 var(--s-4); text-wrap: pretty; font-weight: 300; }

.h1, h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-48), 5vw + 1rem, var(--fs-60));
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 var(--s-6);
  text-wrap: balance;
}
.h2, h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-36), 4vw + 0.5rem, var(--fs-48));
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
.h3, h3 {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-24), 2.5vw + 0.5rem, var(--fs-36));
  line-height: var(--lh-snug);
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 var(--s-3);
}
.h4, h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-24);
  font-weight: var(--fw-semibold);
  color: var(--ink-900);
  line-height: var(--lh-snug);
  margin: 0 0 var(--s-2);
}
.lead {
  font-size: clamp(var(--fs-18), 1.5vw + 0.5rem, var(--fs-20));
  line-height: var(--lh-relaxed);
  color: var(--ink-600);
  text-wrap: pretty;
}
.muted { color: var(--ink-500); }
.label-eyebrow {
  font-size: var(--fs-14);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--brand-600);
}
.price-numeral {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-tight);
}
code, .mono { font-family: var(--font-mono); font-size: 0.95em; }

/* Links that carry brand */
a { color: var(--brand-700); }
a:hover { color: var(--brand-800); }

/* ---------- eFiling engine constraints -------------------- */
body:not(.buy-page) #efAuthenticatedContent {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
body:not(.buy-page) {
  background: #F5F5F5;
}

/* ---------- Layout ---------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}
.section--tinted { background: var(--surface-tinted); }
.section--white { background: var(--surface); }
.section--dark { background: #1F1F1F; color: rgba(255,255,255,0.87); }
.section--dark h2, .section--dark h3 { color: #fff; }
@media (max-width: 768px) {
  .section { padding-top: var(--section-y-mobile); padding-bottom: var(--section-y-mobile); }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-12);
}
.section-head .label-eyebrow { display: block; margin-bottom: var(--s-3); color: var(--brand-600); }
.section-head p { color: var(--ink-600); font-size: var(--fs-20); }

/* ---------- Buttons ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  font-weight: var(--fw-semibold);
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn--primary { background: var(--brand-500); color: #FFFFFF; }
.btn--primary:hover { background: var(--brand-400); }
.btn--dark { background: #1F1F1F; color: #FFFFFF; }
.btn--dark:hover { background: #3A3A3A; }

.btn--secondary {
  background: var(--surface);
  color: var(--ink-900);
  border-color: var(--ink-200);
}
.btn--secondary:hover { border-color: var(--brand-500); background: var(--brand-50); color: var(--ink-900); }

.btn--ghost { background: transparent; color: var(--ink-700); padding: 10px 14px; }
.btn--ghost:hover { color: var(--ink-950); background: var(--ink-50); }

.btn--sm { padding: 10px 16px; font-size: var(--fs-14); }
.btn--lg { padding: 16px 28px; font-size: var(--fs-18); }

/* ---------- Nav -------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.nav--scrolled {
  background: #3A3A3A;
  border-bottom-color: rgba(255,255,255,0.12);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--s-6);
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 72px; width: auto; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: rgba(255,255,255,0.87);
  text-decoration: none;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  padding: var(--s-2) var(--s-1);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:hover { color: var(--brand-500); }
.nav__cta { display: flex; gap: var(--s-3); align-items: center; }
.nav__cta .btn--ghost { color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.3); }
.nav__cta .btn--ghost:hover { color: #fff; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.nav__cta .btn--primary { color: #fff !important; }
.nav__phone {
  color: rgba(255,255,255,0.87);
  text-decoration: none;
  font-size: var(--fs-14);
  font-weight: var(--fw-semibold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__phone small { display: block; font-weight: 400; font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; text-transform: uppercase; }
.nav__phone:hover { color: var(--brand-500); }
.nav__burger { display: none; }
@media (max-width: 1070px) {
  .nav__links { display: none; }
  .nav__phone small { display: none; }
  .nav__burger {
    display: inline-flex;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--r-sm);
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

/* ---------- Top strip (trust bar) ------------------------- */
.topstrip {
  background: rgba(15,15,15,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.87);
  font-size: var(--fs-12);
  padding: 8px 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 31;
}
.topstrip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.topstrip__items { display: inline-flex; gap: var(--s-5); flex-wrap: wrap; align-items: center; }
.topstrip__item { display: inline-flex; gap: 6px; align-items: center; color: #FFFFFF; }
.topstrip__item svg { color: var(--brand-500); }
.topstrip__right { color: rgba(255,255,255,0.6); display: inline-flex; gap: var(--s-4); align-items: center; }
.topstrip__right a { color: rgba(255,255,255,0.87); text-decoration: none; }
.topstrip__right a:hover { color: var(--brand-500); }
@media (max-width: 640px) {
  .topstrip__right { display: none; }
}

/* ---------- Hero core (shared) ---------------------------- */
.hero {
  position: relative;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 9px 18px;
  border: 1px solid var(--ink-200);
  background: var(--surface);
  border-radius: var(--r-full);
  font-size: var(--fs-14);
  color: var(--ink-700);
  margin-bottom: var(--s-5);
  font-weight: 500;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--status-green);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}
.hero .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero .h1 em {
  font-style: normal;
  color: var(--brand-700);
  background: linear-gradient(180deg, transparent 65%, var(--brand-200) 65%);
  padding: 0 2px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  margin-top: var(--s-6);
  color: var(--ink-700);
  font-size: var(--fs-16);
}
.hero__meta-item { display: inline-flex; gap: var(--s-2); align-items: center; font-weight: 500; }
.hero__meta-item svg { color: var(--brand-600); flex: none; width: 20px; height: 20px; }

.hero__google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
}
.hero__google-logo { flex-shrink: 0; }
.hero__google-stars { display: flex; align-items: center; gap: 2px; }
.hero__google-score {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero__google-label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.hero__cta-row { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-6); align-items: center; }
.hero__price-tag {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-size: var(--fs-14); color: var(--ink-700);
}
.hero__price-tag strong { color: var(--ink-900); font-family: var(--font-display); font-size: var(--fs-18); font-weight: 700; }

.hero__rating {
  display: inline-flex; gap: var(--s-3); align-items: center;
  margin-top: var(--s-6);
  color: var(--ink-700);
  font-size: var(--fs-14);
}
.hero__rating .stars { color: var(--brand-500); letter-spacing: 2px; font-size: 18px; }
.hero__rating .stars-wrap { display: inline-flex; flex-direction: column; gap: 2px; }
.hero__rating small { color: var(--ink-500); font-size: 12px; }

/* Hero A: Classic split */
.hero--split {
  padding-top: var(--s-16);
  padding-bottom: var(--s-20);
  background: linear-gradient(180deg, var(--surface-tinted) 0%, var(--surface) 80%);
}
.hero--split .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  align-items: center;
}
@media (min-width: 980px) {
  .hero--split .hero__grid { grid-template-columns: 1.08fr 0.92fr; gap: var(--s-16); }
}
.hero--split .h1 {
  font-size: clamp(2.5rem, 4.5vw + 1rem, 4rem);
  margin-bottom: var(--s-5);
}
.hero--split p.lead { max-width: 56ch; color: var(--ink-700); margin-top: 0; }

/* Hero B: Photo-led */
.hero--photo {
  padding: 0;
  margin-top: calc(-76px - 34px);
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #1F1F1F;
}
.hero--photo__bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  background: url('/assets/custom/images/hero-images/index-hero-img.png') center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}
.hero--order .hero--photo__bg {
  background-image: url('/assets/custom/images/hero-images/order-hero.png') !important;
}
.hero--buy .hero--photo__bg {
  background-image: url('/assets/custom/images/hero-images/buy-hero.png') !important;
}
#packages-hero .hero--photo__bg {
  background-image: url('/assets/custom/images/hero-images/packages-hero.png') !important;
}
.hero--photo__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(31,31,31,0.78) 0%, rgba(31,31,31,0.5) 45%, rgba(31,31,31,0.15) 100%);
  z-index: 1;
}
.hero--photo .container { z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .hero--photo__bg { transform: none !important; }
}
.hero--photo .container { position: relative; z-index: 1; width: 100%; padding-top: calc(76px + 34px + var(--s-16)); padding-bottom: var(--s-16); }

/* Staff emulation widget (prepended to <body> by the eFiling platform when
   emulating a customer). Keep it sticky at the very top so it stays in normal
   flow — that way it pushes the nav down rather than overlapping it, on every
   page type, and stays visible while scrolling. */
#efEmulationWidget {
  position: sticky !important;
  top: 0;
  z-index: 2000 !important;
  box-sizing: border-box;
}
/* On hero pages the hero uses a negative margin-top to tuck under the nav,
   which assumes it starts at the viewport top. With the emulation bar in flow
   above it, remove that pull so the hero isn't clipped. */
#efEmulationWidget ~ .hero--photo {
  margin-top: 0 !important;
}
.hero--photo .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  align-items: end;
  justify-items: start;
}
@media (min-width: 980px) {
  .hero--photo .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--s-10); align-items: center; }
}

/* Single-column layout (new inline search) */
.hero__grid--single {
  display: block !important;
  max-width: 820px;
}

/* Inline name check form inside hero */
.hero__nc-form {
  display: flex;
  gap: 0;
  margin: var(--s-7) 0 var(--s-6);
  max-width: 680px;
}
.hero__nc-input {
  flex: 1;
  border-radius: var(--r-md) 0 0 var(--r-md) !important;
  border-right: 0 !important;
  font-size: var(--fs-18) !important;
  padding: 19px 22px !important;
  min-width: 0;
}
.hero__nc-input:focus {
  border-color: var(--brand-500) !important;
  border-right: 0 !important;
  z-index: 1;
}
.hero__nc-btn {
  border-radius: 0 var(--r-md) var(--r-md) 0 !important;
  padding: 19px 28px !important;
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .hero__nc-form { flex-direction: column; gap: var(--s-3); }
  .hero__nc-input  { border-radius: var(--r-md) !important; border-right: 1.5px solid var(--ink-200) !important; }
  .hero__nc-btn    { border-radius: var(--r-md) !important; justify-content: center; }
}
@media (max-width: 750px) {
  .topstrip { display: none; }
}

/* Result state */
.hero__result {
  animation: ncIn var(--dur-slow) var(--ease);
}
.hero__result-header {
  margin-bottom: var(--s-6);
}
.hero__result .nc-card {
  max-width: 580px;
  min-width: 480px;
  min-height: 180px;
  padding: var(--s-8);
  box-sizing: border-box;
}
@media (max-width: 560px) {
  .hero__result .nc-card { min-width: 0; width: 100%; }
}
.hero__result .nc-card__name {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.hero__result .nc-proceed {
  margin-top: var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 28px;
  font-size: var(--fs-16);
  background: var(--brand-500) !important;
  color: #fff !important;
  border-color: var(--brand-500) !important;
}
.hero__result .nc-proceed:hover {
  background: var(--brand-600) !important;
  border-color: var(--brand-600) !important;
}
.hero__search-again {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-6);
  font-size: var(--fs-18);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.hero__search-again:hover { color: #fff; }
.hero__search-again svg { flex: none; }

.hero__formation-logo { height: clamp(88px, 10vw, 138px); width: auto; display: block; margin-bottom: var(--s-4); }

/* Mini-hero variant — packages page */
.hero--photo--sm {
  min-height: 32vh;
  margin-top: calc(-76px - 34px);
  align-items: flex-end;
}
.hero--photo--sm .container {
  padding-top: calc(76px + 34px + var(--s-12));
  padding-bottom: var(--s-12);
}
.packages-hero__content {
  max-width: 640px;
}
.packages-hero__content .h1 {
  font-size: clamp(1.75rem, 3vw + 0.6rem, 2.75rem) !important;
  margin-bottom: var(--s-3);
}
.packages-hero__content .lead {
  font-size: var(--fs-16);
  margin: 0;
}
.hero--photo .h1 { color: #fff !important; font-size: clamp(3.125rem, 5.25vw + 1.25rem, 4.6875rem); text-align: left !important; text-wrap: unset; }
.hero--photo .h1 em { color: var(--brand-500); background: none; }
.hero--photo p.lead { color: rgba(255,255,255,0.87); max-width: 54ch; font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem); }
.hero--photo .hero__eyebrow { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #FFFFFF; backdrop-filter: blur(8px); }
.hero--photo .hero__meta { color: rgba(255,255,255,0.87); }
.hero--photo .hero__meta-item svg { color: var(--brand-500); }
.hero--photo .hero__rating { color: rgba(255,255,255,0.87); }
.hero--photo .hero__rating small { color: rgba(255,255,255,0.6); }

/* Hero C: Centered */
.hero--centered {
  padding: var(--s-20) 0 var(--s-24);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--brand-50) 0%, transparent 70%),
    var(--surface);
  text-align: center;
}
.hero--centered .hero__eyebrow { margin: 0 auto var(--s-6); }
.hero--centered .h1 {
  font-size: clamp(2.75rem, 5.5vw + 1rem, 4.75rem);
  max-width: 18ch;
  margin: 0 auto var(--s-5);
}
.hero--centered p.lead {
  max-width: 58ch;
  margin: 0 auto var(--s-8);
  color: var(--ink-700);
}
.hero--centered .nc {
  margin-top: var(--s-10);
  max-width: 640px;
}
.hero--centered .hero__meta { justify-content: center; }
.hero--centered .hero__rating { justify-content: center; }

/* ---------- Name-check card ------------------------------- */
.nc {
  background: rgba(255,255,255,0.82) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255,255,255,0.6) !important;
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: 0 24px 64px rgba(31,31,31,0.18), 0 2px 8px rgba(31,31,31,0.06) !important;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.nc__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: var(--s-3);
}
.nc__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--brand-500);
}
.nc__title {
  font-family: var(--font-display);
  font-size: var(--fs-24);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 var(--s-2);
}
.nc__sub { color: var(--ink-600); font-size: var(--fs-14); margin: 0 0 var(--s-6); }
.nc__form { display: flex; gap: var(--s-3); }
@media (max-width: 520px) { .nc__form { flex-direction: column; } }
.nc__input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  color: var(--ink-950);
  outline: none;
  background: var(--surface);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  min-width: 0;
}
.nc__input::placeholder { color: var(--ink-400); }
.nc__input:focus { border-color: var(--brand-500); box-shadow: var(--shadow-focus); }
.nc__note {
  font-size: var(--fs-12);
  color: var(--ink-500);
  margin-top: var(--s-4);
  line-height: var(--lh-normal);
}
.nc__note strong { color: var(--ink-700); font-weight: 600; }
.nc__result { margin-top: var(--s-5); }

.nc-card {
  border-radius: var(--r-md);
  padding: var(--s-6);
  border: 1.5px solid;
  animation: ncIn var(--dur-slow) var(--ease);
}
@keyframes ncIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nc-card--green,
.nc-card--amber,
.nc-card--red {
  background: #fff;
  border-color: var(--brand-500);
  border-width: 2px;
}

.nc-card__head {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.nc-card__head svg { flex: none; margin-top: 2px; }
.nc-card--green .nc-card__head svg { color: var(--status-green); }
.nc-card--amber .nc-card__head svg { color: var(--status-amber); }
.nc-card--red   .nc-card__head svg { color: var(--status-red); }

.nc-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-20);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  line-height: var(--lh-snug);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.nc-card__msg {
  font-size: var(--fs-14);
  margin: 0;
  line-height: var(--lh-relaxed);
  color: var(--ink-600);
}

.nc-section-label {
  font-size: var(--fs-12);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-600);
  margin: var(--s-4) 0 var(--s-2);
}
.nc-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.nc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: #F5F5F5;
  color: var(--status-amber-ink);
  border-radius: var(--r-sm);
  font-size: var(--fs-12);
  font-weight: 600;
}
.nc-chip button {
  background: transparent;
  border: 1px solid var(--status-amber);
  border-radius: var(--r-sm);
  color: var(--status-amber-ink);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  cursor: pointer;
}

.nc-similar {
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
}
.nc-similar-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-14);
  padding: 6px 0;
  color: var(--ink-700);
}
.nc-similar-row .num { font-variant-numeric: tabular-nums; color: var(--ink-500); font-size: 12px; }

.nc-proceed { margin-top: var(--s-5); display: inline-flex; }

/* ---------- Logo strip ------------------------------------- */
.logostrip {
  background: #fff;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  padding: var(--s-6) 0;
}
.logostrip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.logostrip__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  flex-shrink: 0;
}
.logostrip__items {
  display: flex;
  gap: var(--s-8);
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.logostrip__items span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-400);
  letter-spacing: -0.01em;
}

/* ---------- Why choose us --------------------------------- */
.why-section {
  background: var(--surface);
  padding: var(--s-20) 0;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}

.why-split__image {
  align-self: stretch;
  display: flex;
}

.why-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

.why-split--reverse .why-split__image { order: 2; }

.why-split__content .section-head--left {
  text-align: left;
  max-width: none;
  margin-bottom: var(--s-8);
}
.why-split__content .section-head--left .label-eyebrow {
  color: var(--brand-600);
}
.why-split__content .section-head--left h2 {
  color: var(--ink-900);
}
.why-split__content .section-head--left p {
  color: var(--ink-600);
  font-size: var(--fs-18);
  line-height: var(--lh-relaxed);
  margin: var(--s-4) 0 0;
}

.why-bullets-label {
  font-family: var(--font-sans);
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin: 0 0 var(--s-3);
}

.why-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-6);
}
.why-bullets li {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  font-weight: 500;
  color: var(--ink-700);
}
.why-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background-color: var(--brand-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/60% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/60% no-repeat;
}

@media (max-width: 860px) {
  .why-split {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
  .why-split--reverse .why-split__image {
    order: 0;
  }
  .why-split__image {
    max-width: 420px;
    margin: 0 auto;
  }
  .why-bullets {
    grid-template-columns: 1fr;
  }
}

/* ---------- Packages -------------------------------------- */
.packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: stretch;
}
.packages[data-count="3"] { grid-template-columns: 1fr; }
.packages[data-count="4"] { grid-template-columns: 1fr; }
@media (min-width: 720px)  {
  .packages[data-count="3"] { grid-template-columns: repeat(2, 1fr); }
  .packages[data-count="4"] { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .packages[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
  .packages[data-count="4"] { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
}

.pkg {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-med) var(--ease);
}
.pkg:hover { border-color: var(--ink-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pkg--popular {
  border: 2px solid var(--brand-500);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--brand-50) 0%, #fff 18%);
}
.pkg__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-500);
  color: #1F1F1F;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pkg__name {
  font-family: var(--font-display);
  font-size: var(--fs-24);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 var(--s-2);
}
.pkg__lede { color: var(--ink-600); font-size: var(--fs-14); margin: 0 0 var(--s-5); min-height: 2.6em; }
.pkg__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--ink-200);
}
.pkg__price-num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}
.pkg__price-curr { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink-700); margin-right: 2px; }
.pkg__price-vat { color: var(--ink-500); font-size: 13px; margin-left: 2px; }
.pkg__price-meta { color: var(--ink-500); font-size: 12px; margin-top: 4px; display: block; }
.pkg__price-ch { color: var(--ink-600); font-size: 13px; font-weight: 500; margin-top: 6px; display: block; }

.pkg__features { list-style: none; padding: 0; margin: 0 0 var(--s-6); flex: 1; }
.pkg__features li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  padding: 6px 0;
  font-size: var(--fs-14);
  color: var(--ink-700);
  line-height: 1.5;
}
.pkg__features li svg { color: var(--brand-600); flex: none; margin-top: 2px; }
.pkg__features li.is-off { color: var(--ink-400); text-decoration: line-through; text-decoration-color: var(--ink-300); }
.pkg__features li.is-off svg { color: var(--ink-300); }
.pkg__features li.is-highlight {
  color: var(--ink-900);
  font-weight: 600;
}
.pkg__features li .meta { color: var(--ink-500); font-size: 12px; font-weight: 400; margin-left: 4px; }

.pkg__buybtn { width: 100%; }

.pkg__footnote { text-align: center; margin-top: var(--s-6); font-size: 12px; color: var(--ink-500); }


/* ---------- How it works ---------------------------------- */
.ws-how {
  font-family: var(--font-sans);
  background: var(--surface-tinted);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ws-how__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.ws-how .h2 em {
  font-style: normal;
  color: var(--brand-500);
}
.ws-how__connector { display: none; }
.ws-how__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 720px) {
  .ws-how__list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1100px) {
  .ws-how__list { grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr; gap: 12px; }
  .ws-how__connector { display: flex; align-items: center; justify-content: center; color: var(--ink-300); }
}
.ws-how__step {
  background: #FFFFFF;
  border-radius: var(--r-xl);
  padding: var(--s-10);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ink-100);
  box-shadow: 0 1px 3px rgba(15,20,17,0.06), 0 8px 24px -12px rgba(15,20,17,0.10);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  position: relative;
  isolation: isolate;
  min-height: 280px;
}
.ws-how__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 3px rgba(15,20,17,0.06), 0 20px 40px -16px rgba(15,20,17,0.16);
  border-color: var(--ink-200);
}
.ws-how__step::before {
  content: "";
  position: absolute;
  top: 0; left: var(--s-10); right: var(--s-10);
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--brand-500);
  opacity: 0.6;
}
.ws-how__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw + 0.4rem, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  line-height: 1;
  display: inline-block;
  margin-bottom: var(--s-5);
}
.ws-how__num::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-500);
  margin-left: 5px;
  vertical-align: 10%;
}
.ws-how__step-title {
  font-family: var(--font-display);
  font-size: var(--fs-20);
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.015em;
}
.ws-how__step-body {
  color: var(--ink-600);
  font-size: var(--fs-14);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.ws-how__cta {
  margin-top: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-900);
  font-weight: 600;
  font-size: var(--fs-14);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: gap var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.ws-how__cta:hover { gap: 10px; border-bottom-color: var(--ink-900); }
.ws-how__arrow { display: block; color: var(--brand-500) !important; }
@media (max-width: 719px) {
  .ws-how { padding: 56px 0; }
  .ws-how__head { margin-bottom: 40px; }
  .ws-how__step { padding: var(--s-6); }
}

/* ---------- Testimonials --------------------------------- */
.testimonials {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.testimonial__stars {
  color: #00B67A;
  font-size: 18px;
  letter-spacing: 1px;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.testimonial__who {
  display: flex; align-items: center; gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--ink-200);
}
.testimonial__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-500);
  color: #1F1F1F;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
}
.testimonial__who-name { font-weight: 600; font-size: 14px; color: var(--ink-900); }
.testimonial__who-meta { font-size: 12px; color: var(--ink-500); }

.trustpilot-hdr {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  justify-content: center;
  padding-bottom: var(--s-8);
  flex-wrap: wrap;
}
.trustpilot-hdr__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-900);
}
.trustpilot-hdr__badge .tp-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.trustpilot-hdr__badge .tp-logo::before {
  content: "★";
  color: #00B67A;
  font-size: 20px;
  margin-right: 4px;
}
.trustpilot-hdr__rating {
  display: inline-flex;
  gap: 2px;
}
.trustpilot-hdr__rating span {
  width: 20px; height: 20px;
  background: #00B67A;
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.trustpilot-hdr__meta { color: var(--ink-600); font-size: 14px; }
.trustpilot-hdr__meta strong { color: var(--ink-900); }

/* ---------- Banking grid ---------------------------------- */
#banking .section-head {
  margin-bottom: var(--s-10);
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (min-width: 640px)  { .bank-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px)  { .bank-grid { grid-template-columns: repeat(4, 1fr); } }

.bank-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2.2 / 1;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--ink-500);
  padding: 16px;
  transition: border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.bank-card:hover {
  border-color: var(--brand-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.bank-card img {
  max-width: 70%;
  max-height: 50%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.bank-card__placeholder {
  font-family: var(--font-display);
  font-size: var(--fs-14);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bank-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-10);
}
@media (min-width: 820px) { .bank-info { grid-template-columns: repeat(3, 1fr); } }

.bank-info__card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}
.bank-info__card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-20);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 var(--s-3);
}
.bank-info__card p {
  font-size: var(--fs-14);
  color: var(--ink-600);
  line-height: var(--lh-relaxed);
  margin: 0;
}
.bank-info__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--brand-50);
  color: var(--brand-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
}

.bank-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (min-width: 640px)  { .bank-tiles { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .bank-tiles { grid-template-columns: repeat(8, 1fr); } }

.bank-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: var(--s-5);
  height: 72px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter var(--dur-med) var(--ease),
              opacity var(--dur-med) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.bank-tile:hover {
  filter: grayscale(0);
  opacity: 1;
  border-color: var(--brand-500);
}
.bank-tile img { max-height: 28px; max-width: 100%; display: block; }

.bank-cashback {
  display: flex;
  justify-content: center;
  margin-top: var(--s-8);
}
.bank-cashback__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 10px 20px;
  background: #1F1F1F;
  color: #FFFFFF;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
}
.bank-cashback__pill strong { color: var(--brand-500); font-weight: 700; }

/* ---------- FAQ ------------------------------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--ink-200);
}
.faq-item {
  border-bottom: 1px solid var(--ink-200);
}
.faq-item__q {
  width: 100%;
  background: transparent;
  border: none;
  padding: var(--s-5) 0;
  font-family: var(--font-sans);
  font-size: var(--fs-20);
  font-weight: 600;
  color: var(--ink-900);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--brand-700); }
.faq-item__q svg {
  transition: transform var(--dur-med) var(--ease);
  flex: none;
  width: 28px; height: 28px;
  padding: 6px;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  stroke: #fff;
}
.faq-item[open] .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a {
  color: var(--ink-600);
  padding: 0 0 var(--s-5);
  font-size: var(--fs-18);
  line-height: var(--lh-relaxed);
  max-width: 72ch;
}

/* FAQ white background on home page */
#faq {
  background: var(--surface);
}
/* FAQ white background on packages page */
#efPageContent ~ #faq {
  background: var(--surface) !important;
}

/* ---------- Map ------------------------------------------- */
.map-section {
  background: var(--surface-tinted);
  padding: 80px 0 0;
}
.map-section__inner {
  text-align: center;
}

#wrkstn-map {
  width: 100%;
  height: 460px;
}
.map-section__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.map-pill {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--ink-700);
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 100px;
  padding: 8px 18px;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
  white-space: nowrap;
}
.map-pill:hover {
  border-color: var(--brand-500);
  color: var(--brand-700);
  background: var(--brand-50);
}
.map-pill.is-active {
  border-color: var(--brand-500);
  background: var(--brand-500);
  color: #fff;
  box-shadow: 0 2px 8px rgba(150,193,31,0.3);
}
.wrkstn-marker {
  width: 32px;
  height: 32px;
  background: var(--brand-500, #96c11f);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(15,20,17,0.25);
}
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  box-shadow: 0 4px 20px rgba(15,20,17,0.15) !important;
  padding: 0 !important;
  overflow: hidden;
}
.leaflet-popup-content {
  margin: 0 !important;
  font-family: var(--font-sans, 'Inter', sans-serif) !important;
}
.wrkstn-popup__img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.wrkstn-popup {
  padding: 18px 22px;
  min-width: 300px;
}
.wrkstn-popup strong {
  display: block;
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.wrkstn-popup span {
  font-size: var(--fs-16);
  color: var(--ink-600);
  line-height: 1.6;
}
.leaflet-popup-tip {
  box-shadow: none !important;
}
@media (max-width: 560px) {
  .map-section__pills { gap: 8px; }
  .map-pill { font-size: var(--fs-13); padding: 6px 14px; }
  .leaflet-popup-content-wrapper { max-width: calc(100vw - 80px) !important; }
  .wrkstn-popup__img { height: 160px; }
  .wrkstn-popup { padding: 14px 16px; min-width: 0; }
  .wrkstn-popup strong { font-size: var(--fs-15); }
  .wrkstn-popup span { font-size: var(--fs-14); }
  #wrkstn-map { height: 320px; }
}

/* ---------- CTA band ------------------------------------- */
.ctaband {
  background: #1F1F1F;
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-16) var(--s-10);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--s-12);
}
.ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(150,193,31,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 80%, rgba(150,193,31,0.15) 0%, transparent 60%);
  z-index: 0;
}
.ctaband > * { position: relative; z-index: 1; }
.ctaband h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
.ctaband p { color: rgba(255,255,255,0.7); font-size: var(--fs-18); margin: 0 auto var(--s-8); max-width: 56ch; }
.ctaband__buttons { display: inline-flex; gap: var(--s-3); flex-wrap: wrap; justify-content: center; }

/* ---------- Footer --------------------------------------- */
.footer {
  background: #1F1F1F;
  color: rgba(255,255,255,0.7);
  padding: var(--s-20) 0 var(--s-8);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid #3A3A3A;
}
@media (min-width: 720px) { .footer__top { grid-template-columns: 1.8fr 1fr 1fr 1fr; } }
.footer__brand img { height: 48px; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 36ch; margin-top: var(--s-4); line-height: 1.6; }
.footer__social { display: flex; gap: 12px; margin-top: var(--s-4); }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #3A3A3A;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--dur-fast) var(--ease);
}
.footer__social a:hover { border-color: var(--brand-500); color: var(--brand-500); }
.footer__col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--s-4);
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--dur-fast) var(--ease);
}
.footer__col a:hover { color: var(--brand-500); }
.footer__address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.footer__bottom {
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: rgba(255,255,255,0.6); margin-right: 16px; text-decoration: none; }
.footer__bottom a:hover { color: #FFFFFF; }
.footer__disclaimer {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  line-height: var(--lh-relaxed);
  max-width: 90ch;
  margin: var(--s-6) 0 0;
}

/* ---------- Modal ---------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31,31,31,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: var(--s-6);
  animation: modalIn var(--dur-med) var(--ease);
}
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5) var(--s-6);
  border-bottom: 1px solid var(--ink-200);
}
.modal__title { font-weight: 600; color: var(--ink-900); }
.modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-500);
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
}
.modal__close:hover { background: var(--ink-100); color: var(--ink-900); }
.modal__body {
  padding: var(--s-5) var(--s-6);
  overflow-y: auto;
  color: var(--ink-700);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-14);
}
.modal__body p { margin: 0 0 var(--s-3); }

/* ============================================================
   Mobile drawer + responsive polish
   ============================================================ */

.nav__burger { color: #FFFFFF; }
.nav__burger .nav__burger-close { display: none; }
.nav--open .nav__burger .nav__burger-open { display: none; }
.nav--open .nav__burger .nav__burger-close { display: block; }

.nav__drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #3A3A3A;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: var(--s-5) var(--s-5) var(--s-6);
  z-index: 29;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.18);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  animation: drawerIn 180ms var(--ease);
}
@keyframes drawerIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.nav--open .nav__drawer { display: block; }

.nav__drawer::before {
  content: '';
  position: fixed;
  inset: 0;
  top: 76px;
  background: rgba(31, 31, 31, 0.45);
  z-index: -1;
  pointer-events: none;
}

.nav__drawer-links {
  list-style: none;
  margin: 0 0 var(--s-4);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav__drawer-links li + li { border-top: 1px solid rgba(255,255,255,0.12); }
.nav__drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  color: rgba(255,255,255,0.87);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}
.nav__drawer-links a::after {
  content: '›';
  color: var(--ink-400);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
}
.nav__drawer-links a:hover { color: var(--brand-500); }
.nav__drawer-cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.nav__drawer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.87);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-16);
  padding: 10px 0;
}
.nav__drawer-cta .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: var(--fs-16); }

.nav--open .nav__burger { position: relative; z-index: 30; }

/* ---------- Responsive polish ----------------------------- */
@media (max-width: 640px) {
  .container { padding-left: var(--s-4); padding-right: var(--s-4); }
  .nav__inner { height: 64px; gap: var(--s-3); }
  .nav__logo img { height: 44px; }
  .nav__drawer { top: 64px; }
  .nav__phone { display: none; }
  .nav__cta .btn { padding: 8px 12px; font-size: var(--fs-12); }
  .hero__meta { gap: var(--s-2) var(--s-4); }
  .hero__meta-item { font-size: var(--fs-14); }
  .hero--photo .h1 { font-size: clamp(2.375rem, 7vw + 0.75rem, 3.25rem); }
  .hero .lead { font-size: var(--fs-18); }
  .topstrip__items .topstrip__item:nth-child(n+2) { display: none; }
  .section-head .h2 { font-size: clamp(1.5rem, 5vw + 0.6rem, 2rem); }
  #banking .h2 { font-size: clamp(1.5rem, 5.5vw + 0.6rem, 2rem); }
  .pkg { padding: var(--s-5); }
  .footer__brand img { height: 40px; }
  .footer__bottom { flex-direction: column; gap: var(--s-2); align-items: flex-start; }
}

@media (max-width: 420px) {
  .bank-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .bank-card { aspect-ratio: 1.4 / 1; }
}

/* ============================================================
   Legal pages (/terms, /privacy-policy)
   ============================================================ */

/* Force nav dark — no hero to scroll past */
.page--legal .nav {
  background: #3A3A3A;
  border-bottom-color: rgba(255,255,255,0.12);
}

/* Prose content — scoped away from nav, topstrip and footer */
.page--legal :is(h1, h2, h3, p, ul, ol, table):not(.nav *):not(.topstrip *):not(.footer *) {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.page--legal h1:not(.nav *):not(.topstrip *):not(.footer *) {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 56px;
  margin-bottom: 24px;
}

.page--legal h2:not(.nav *):not(.topstrip *):not(.footer *) {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 12px;
}

.page--legal h3:not(.nav *):not(.topstrip *):not(.footer *) {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
  margin-top: 28px;
  margin-bottom: 8px;
}

.page--legal p:not(.nav *):not(.topstrip *):not(.footer *) {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-700);
  margin-top: 0;
  margin-bottom: 20px;
}

.page--legal :is(ul, ol):not(.nav *):not(.topstrip *):not(.footer *) {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-700);
  margin-bottom: 20px;
  padding-left: 44px;
}

.page--legal li:not(.nav *):not(.topstrip *):not(.footer *) { margin-bottom: 6px; }

.page--legal a:not(.nav *):not(.topstrip *):not(.footer *) {
  color: var(--brand-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page--legal a:not(.nav *):not(.topstrip *):not(.footer *):hover { color: var(--brand-800); }

/* Bottom breathing room before footer */
.page--legal .footer { margin-top: 80px; }

/* ============================================================
   Cart page (/cart)
   ============================================================ */

/* Force nav dark */
.page--cart .nav {
  background: #3A3A3A;
  border-bottom-color: rgba(255,255,255,0.12);
}

/* Page title h2 */
.page--cart #efAuthenticatedContent > h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 32px 0 20px;
}

/* Table header row */
.page--cart #efCartProductsTable tr.ui-widget-header td {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* Company name subheader row */
.page--cart .efCartCompanyHeader td {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

/* Product rows */
.page--cart #efCartProductsTable tr.efOdd td {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-800);
}

/* Net/VAT/Total rows */
.page--cart .efCartNetTotalLabel,
.page--cart .efCartVatLabel,
.page--cart .efCartTotalLabel {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
}
.page--cart .efCartNetTotalVal,
.page--cart .efCartVatVal {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
}
.page--cart .efCartTotalVal {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

/* Panel section headers (Delivery Details / Your Details / KYC) */
.page--cart .efPanelHeader {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
}

/* Form labels */
.page--cart .ef-form-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
}

/* Body/intro text */
.page--cart .efCartMlcIntro {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
}

/* Checkout button */
.page--cart .efCartCheckoutButton {
  background: var(--ink-900) !important;
  color: #fff !important;
  border: 1px solid var(--ink-900) !important;
  border-radius: 10px !important;
  padding: 14px 32px !important;
  font-family: var(--font-sans) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease !important;
}
.page--cart .efCartCheckoutButton:hover {
  background: var(--brand-500) !important;
  border-color: var(--brand-500) !important;
  color: var(--ink-900) !important;
}

/* Bottom padding before footer */
.page--cart .efCartCheckoutButtonWrapper {
  padding-bottom: 64px !important;
}

/* ============================================================
   Payment gateway (/payment-gateway)
   ============================================================ */

/* Force nav dark */
.page--payment .nav {
  background: #3A3A3A;
  border-bottom-color: rgba(255,255,255,0.12);
}

/* Page layout — flex 50/50 split */
.page--payment #efPageContent {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 48px 24px 80px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 48px !important;
}
.page--payment .efPaymentDetailsWrapper {
  flex: 1 1 50% !important;
  min-width: 0 !important;
  float: none !important;
  width: auto !important;
  box-sizing: border-box !important;
}
.page--payment .efOrderContentsWrapper {
  flex: 1 1 50% !important;
  min-width: 0 !important;
  float: none !important;
  width: auto !important;
  background: #fff !important;
  border: 1px solid var(--ink-200) !important;
  border-radius: 16px !important;
  padding: 28px 32px 24px !important;
  box-shadow: 0 1px 3px rgba(11,15,25,0.06) !important;
  box-sizing: border-box !important;
}

/* Customer toggle — hide the radio inputs, labels are the visible controls */
.page--payment .ef-toggle {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}
.page--payment .efCustomerTypeWrapper {
  margin-bottom: 28px !important;
  display: flex !important;
  width: 100% !important;
}
.page--payment .efCustomerType {
  flex: 1 1 50% !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

/* Section headings (Account Details, Billing Details, Payment Methods) */
.page--payment h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-top: 28px;
  margin-bottom: 16px;
}

/* Login h1 inside existing customer tab */
.page--payment .efExistingCustomer h1,
.page--payment .efBillingDetails h1,
.page--payment #efPageContent h1:not(.efPaymentGatewayTitle) {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--ink-900) !important;
  letter-spacing: -0.01em !important;
  margin-top: 24px !important;
  margin-bottom: 16px !important;
}

/* Form fields */
.page--payment .efPaymentGatewayField {
  margin-bottom: 16px !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}
.page--payment .efNewCustomerWrapper .efTextInput,
.page--payment .efExistingCustomer .efTextInput {
  width: 100% !important;
  display: block !important;
  padding: 10px 14px !important;
  border: 1px solid var(--ink-200) !important;
  border-radius: 8px !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  color: var(--ink-900) !important;
  background: #fff !important;
  box-sizing: border-box !important;
  transition: border-color 150ms ease, box-shadow 150ms ease !important;
}
.page--payment .efNewCustomerWrapper .efTextInput:focus,
.page--payment .efExistingCustomer .efTextInput:focus {
  border-color: var(--brand-500) !important;
  box-shadow: 0 0 0 3px rgba(150,193,31,0.2) !important;
  outline: none !important;
}

/* Eye icon — below the input with a text label */
.page--payment .efPasswordEyeOpenIcon,
.page--payment .efPasswordEyeClosedIcon {
  position: static !important;
  display: none !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 6px !important;
  color: var(--ink-500) !important;
  cursor: pointer !important;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
}
.page--payment .efPasswordEyeOpenIcon:not(.efHide),
.page--payment .efPasswordEyeClosedIcon:not(.efHide) {
  display: inline-flex !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.page--payment .efPasswordEyeOpenIcon svg,
.page--payment .efPasswordEyeClosedIcon svg {
  flex-shrink: 0 !important;
}
.page--payment .efPasswordEyeOpenIcon:not(.efHide)::after {
  content: 'Show password' !important;
}
.page--payment .efPasswordEyeClosedIcon:not(.efHide)::after {
  content: 'Hide password' !important;
}
.page--payment .efPasswordEyeOpenIcon:hover,
.page--payment .efPasswordEyeClosedIcon:hover {
  color: var(--ink-900) !important;
}

/* Overview heading */
.page--payment h1.efPaymentGatewayTitle {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 16px;
}

/* Order ref */
.page--payment .efPaymentGatewayOrderId {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-600);
  margin-bottom: 16px;
}
.page--payment .efPaymentGatewayOrderId span {
  font-weight: 700;
  color: var(--ink-900);
}

/* Order contents list */
.page--payment .efOrderContentsListItem {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-700);
  padding: 8px 0;
}

/* Totals */
.page--payment .efPaymentGatewayVATPrice,
.page--payment .efPaymentGatewayNetPrice {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-600);
}
.page--payment .efPaymentGatewayGrossPrice {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
}
.page--payment .efPaymentGatewayTotals span {
  font-weight: 700;
  color: var(--ink-900);
}

/* Hide empty labels that cause layout gaps */
.page--payment .efPaymentGatewayLabel:empty {
  display: none !important;
}

/* Form labels */
.page--payment .efPaymentGatewayLabel {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--ink-700) !important;
  display: block !important;
  margin-bottom: 4px !important;
}

/* Customer type toggle */
.page--payment .efCustomerTypeWrapper {
  display: flex !important;
  gap: 0 !important;
  margin-bottom: 28px !important;
  border: 1px solid var(--ink-200) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  width: fit-content !important;
}
.page--payment .efCustomerType {
  padding: 10px 20px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ink-600) !important;
  background: #fff !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 150ms ease, color 150ms ease !important;
}
.page--payment .efCustomerType.ui-state-active,
.page--payment .efCustomerType.ui-tabs-active {
  background: var(--ink-900) !important;
  color: #fff !important;
}

/* Address field layout */
.page--payment .efPaymentGatewayAddressWrapper {
  flex-direction: column !important;
  gap: 8px !important;
}
.page--payment .efPaymentGatewayAddress {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}
.page--payment .efPaymentGatewayAddressText {
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  color: var(--ink-700) !important;
  line-height: 1.5 !important;
}

/* Choose Address button */
.page--payment .efBillingAddressBtn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--brand-500) !important;
  color: var(--ink-900) !important;
  border: 1px solid var(--brand-500) !important;
  border-radius: 8px !important;
  padding: 10px 18px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-shadow: none !important;
  box-shadow: none !important;
}
.page--payment .efBillingAddressBtn img {
  display: none !important;
}
.page--payment .efBillingAddressBtn:hover {
  background: var(--brand-400) !important;
  border-color: var(--brand-400) !important;
}

/* Pay Now button */
.page--payment #payment-btn,
.page--payment .efPayButton {
  background: var(--ink-900) !important;
  color: #fff !important;
  border: 1px solid var(--ink-900) !important;
  border-radius: 10px !important;
  padding: 14px 32px !important;
  font-family: var(--font-sans) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-shadow: none !important;
  box-shadow: none !important;
  margin-top: 16px !important;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease !important;
}
.page--payment #payment-btn:hover,
.page--payment .efPayButton:hover {
  background: var(--brand-500) !important;
  border-color: var(--brand-500) !important;
  color: var(--ink-900) !important;
}

/* Login / Choose Address buttons */
.page--payment .efPaymentGatewayLoginButton,
.page--payment .efBillingAddressBtn {
  background: var(--ink-900) !important;
  color: #fff !important;
  border: 1px solid var(--ink-900) !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-shadow: none !important;
}
.page--payment .efPaymentGatewayLoginButton:hover {
  background: var(--brand-500) !important;
  border-color: var(--brand-500) !important;
  color: var(--ink-900) !important;
}

/* Password constraints list */
.page--payment #password-constraints {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  color: var(--ink-600) !important;
  padding: 10px 14px !important;
  background: var(--ink-50) !important;
  border: 1px solid var(--ink-200) !important;
  border-radius: 8px !important;
}
.page--payment #password-constraints ul {
  margin: 0 !important;
  padding-left: 16px !important;
}
.page--payment #password-constraints li {
  margin-bottom: 4px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Bottom padding */
.page--payment .efNewCustomerWrapper,
.page--payment .efExistingCustomer {
  padding-bottom: 48px;
}

/* Mobile */
@media (max-width: 768px) {
  .page--payment #efPageContent {
    flex-direction: column !important;
    gap: 32px !important;
    padding: 24px 16px 64px !important;
  }
  .page--payment .efPaymentDetailsWrapper,
  .page--payment .efOrderContentsWrapper {
    flex: 1 1 auto !important;
    width: 100% !important;
  }
}

/* ============================================================
   Account / dashboard pages (no hero image)
   Covers: /account, /my-details, /companies, /order-history,
   /services, /payments, /invoices, /transaction-history etc.
   ============================================================ */

/* Force nav dark — no hero to scroll past */
.page--account .nav {
  background: #3A3A3A;
  border-bottom-color: rgba(255,255,255,0.12);
}

/* Stretch page to full viewport height so footer sits at the bottom */
.page--account {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page--account #efPageContent {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}
.page--account #efAuthenticatedContent {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 40px var(--s-6) 64px;
  box-sizing: border-box;
}
.page--account .footer {
  margin-top: auto;
}

/* All h1/h2 headings */
.page--account #efAuthenticatedContent h1,
.page--account #efAuthenticatedContent h2 {
  font-family: var(--font-display) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--ink-900) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  margin: 32px 0 16px !important;
}

/* Panel headers are smaller — sub-section level */
.page--account .efPanelHeader {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--ink-900) !important;
  letter-spacing: -0.01em !important;
  line-height: 1.3 !important;
}

/* Sub-headings (h3) */
.page--account #efAuthenticatedContent h3 {
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--ink-900) !important;
  line-height: 1.4 !important;
}

/* Body paragraphs */
.page--account #efAuthenticatedContent p {
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--ink-700) !important;
  line-height: 1.6 !important;
}

/* ============================================================
   404 / Page not found
   ============================================================ */

/* Force nav dark — no hero */
.page--404 .nav {
  background: #3A3A3A;
  border-bottom-color: rgba(255,255,255,0.12);
}

/* Full-height column so the footer pins to the bottom. The card's margin:auto
   centres it in the free space between nav and footer, so the footer needs no
   margin-top:auto here. */
.page--404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Centred card holding the heading + link.
   margin: auto on a flex child centres it both vertically and horizontally in
   the remaining space between nav and footer. */
.page--404 .error-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--s-5);
  max-width: 560px;
  width: calc(100% - 48px);
  margin: auto;
  padding: var(--s-12) var(--s-10);
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.page--404 .error-card br { display: none; }
.page--404 .error-card h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.page--404 .error-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-500);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--r-full);
  transition: background var(--dur-fast) var(--ease);
}
.page--404 .error-card a:hover {
  background: var(--brand-400);
  color: #fff;
}

/* ============================================================
   Motion preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
