/* ============================================================
   The Value Architects — Webfonts
   Headings/titles/quotes: Lora (serif). Body/labels/captions: Open Sans.
   NEVER use Red Hat Display or Open Sauce One.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   Color tokens
   Brand rule: white is ALWAYS the background (pure #fff, never
   off-white). Teal is accent only — never a large fill. Grey is
   for text, used sparingly.
   ============================================================ */

:root {
  --tva-teal: #1d8d8d;
  --tva-deep-teal: #266060;
  --tva-grey: #595a5a;
  --tva-white: #ffffff;

  --teal-700: #155f5f;
  --teal-600: #1a7a7a;
  --teal-500: #1d8d8d;
  --teal-300: #6fb9b9;
  --teal-100: #d6eaea;
  --teal-50:  #f0f7f7;

  --ink-900: #2e2f2f;
  --ink-700: #595a5a;
  --ink-500: #7c7d7d;
  --ink-300: #b6b7b7;
  --ink-200: #d8d9d9;
  --ink-100: #ececec;

  --color-bg: var(--tva-white);
  --color-surface: var(--tva-white);
  --color-surface-sunken: #fafbfb;

  --color-accent: var(--tva-teal);
  --color-accent-hover: var(--teal-600);
  --color-accent-press: var(--teal-700);
  --color-accent-soft: var(--teal-100);
  --color-on-accent: var(--tva-white);

  --text-heading: var(--tva-teal);
  --text-body: var(--tva-grey);
  --text-muted: var(--ink-500);
  --text-on-dark: var(--tva-white);

  --border-default: var(--ink-200);
  --border-strong: var(--ink-300);
  --border-accent: var(--tva-teal);

  --bracket-color: var(--tva-teal);
  --icon-color: var(--tva-teal);

  --cover-bg: var(--tva-deep-teal);
}

/* ============================================================
   Typography tokens
   ============================================================ */

:root {
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: var(--font-serif);
  --font-body: var(--font-sans);

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

  --text-display: 64px;
  --text-h1: 48px;
  --text-h2: 36px;
  --text-h3: 28px;
  --text-h4: 22px;
  --text-lg: 20px;
  --text-base: 17px;
  --text-sm: 15px;
  --text-xs: 13px;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

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

/* ============================================================
   Spacing & layout tokens
   ============================================================ */

:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --content-max: 1120px;
  --content-narrow: 720px;
  --gutter: var(--space-6);
  --gutter-lg: var(--space-9);
}

/* ============================================================
   Effects: radius, borders, shadow, motion
   ============================================================ */

:root {
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --border-hairline: 1px;
  --border-thin: 1.5px;
  --border-medium: 2px;

  --shadow-sm: 0 1px 2px rgba(46, 47, 47, 0.06);
  --shadow-card: 0 2px 8px rgba(46, 47, 47, 0.07), 0 1px 2px rgba(46, 47, 47, 0.05);
  --shadow-md: 0 6px 20px rgba(46, 47, 47, 0.09);
  --shadow-lg: 0 16px 40px rgba(46, 47, 47, 0.12);
  --shadow-accent: 0 6px 18px rgba(29, 141, 141, 0.22);

  --focus-ring: 0 0 0 3px rgba(29, 141, 141, 0.30);

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 120ms;
  --duration-base: 200ms;
  --duration-slow: 320ms;
  --transition-base: all var(--duration-base) var(--ease-standard);
}

/* ============================================================
   Base / reset layer
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--text-heading);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); letter-spacing: var(--tracking-normal); }
h4 { font-size: var(--text-h4); letter-spacing: var(--tracking-normal); }

p { margin: 0 0 var(--space-4); text-wrap: pretty; }

a { color: var(--color-accent); text-decoration: none; transition: var(--transition-base); }
a:hover { color: var(--color-accent-hover); }

strong, b { font-weight: var(--weight-semibold); color: inherit; }

blockquote {
  font-family: var(--font-serif);
  font-weight: var(--weight-regular);
  font-size: var(--text-lg);
  color: var(--text-body);
  font-style: italic;
  margin: 0;
}

small { font-size: var(--text-sm); }

::selection { background: var(--teal-100); color: var(--teal-700); }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-xs); }

svg.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Eyebrow / kicker label utility */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--color-accent);
}
.eyebrow--center { justify-content: center; }

/* ---- Layout primitives ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--color-surface-sunken); }

.section-title {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
}
.section-lead {
  font-size: 19px;
  color: var(--text-muted);
  margin: 18px 0 0;
  max-width: 54ch;
  line-height: 1.6;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; stroke-width: 2; }
.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-accent-hover); color: #fff; }
.btn--primary:active { background: var(--color-accent-press); transform: translateY(1px); }
.btn--outline { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn--outline:hover { background: var(--teal-50); color: var(--color-accent); }
.btn--sm { padding: 11px 18px; font-size: 15px; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-accent);
}
.textlink svg { width: 16px; height: 16px; stroke-width: 2; transition: transform var(--duration-base) var(--ease-standard); }
.textlink:hover svg { transform: translateX(3px); }

/* ---- Bracket motif (signature corner frame) ---- */
.bracket { position: relative; display: inline-block; }
.bracket::before,
.bracket::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--bracket-color);
  pointer-events: none;
}
.bracket::before { top: -14px; left: -14px; border-right: 0; border-bottom: 0; }
.bracket::after { right: -14px; bottom: -14px; border-left: 0; border-top: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-100);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 40px; display: block; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-700);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--color-accent); }
.nav__right { display: flex; align-items: center; gap: 14px; }

.langtoggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: #fff;
}
.langtoggle button {
  border: 0;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--ink-500);
  transition: var(--transition-base);
}
.langtoggle button.is-active { background: var(--color-accent); color: #fff; }

.nav__burger {
  display: none;
  border: 1px solid var(--border-default);
  background: #fff;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__burger svg { width: 22px; height: 22px; color: var(--ink-700); }

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero { padding: 84px 0 0; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
}
.hero__lead {
  font-size: 19px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 46ch;
}
.hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__photo-wrap { display: flex; justify-content: center; }
.hero__photo {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  display: block;
}
.hero__namecard {
  position: absolute;
  bottom: -18px;
  left: -16px;
  background: #fff;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 12px 16px;
}
.hero__namecard .n { font-family: var(--font-serif); font-weight: 700; color: var(--text-heading); font-size: 17px; }
.hero__namecard .r { font-family: var(--font-sans); font-size: 12.5px; color: var(--text-muted); }

.trust {
  margin-top: 72px;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-700);
  justify-content: center;
  text-align: center;
  border-left: 1px solid var(--ink-100);
}
.trust__item:nth-child(4n+1) { border-left: 0; }
.trust__item svg { width: 18px; height: 18px; color: var(--icon-color); stroke-width: 2; flex-shrink: 0; }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero { padding: 64px 0 16px; }
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 48px);
  line-height: 1.1;
  margin: 0;
  max-width: 26ch;
}
.page-hero__lead { font-size: 19px; color: var(--ink-700); line-height: 1.6; margin: 20px 0 0; max-width: 56ch; }

/* ============================================================
   LOGOBAR (klantlogo's, trust bar)
   ============================================================ */
.logobar { padding: 44px 0; border-bottom: 1px solid var(--ink-100); }
.logobar__title {
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted);
  text-align: center; margin: 0 0 28px;
}
.logobar__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px; }
.logobar__item { width: 120px; height: 40px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.logobar__item img {
  display: block; max-height: 36px; max-width: 100%; width: auto; height: auto;
  object-fit: contain; filter: grayscale(1); opacity: 0.55; transition: var(--transition-base);
}
.logobar__item img:hover { filter: grayscale(0); opacity: 1; }
.logobar__item--lg img { max-height: 48px; }
.logobar__item--invert img { filter: invert(1) grayscale(1); opacity: 0.55; }
.logobar__item--invert img:hover { filter: invert(1) grayscale(0); opacity: 1; }
.logobar__item--text span {
  font-family: var(--font-sans); font-weight: 700; font-size: 17px;
  color: var(--ink-300); letter-spacing: 0.01em; transition: var(--transition-base);
}
.logobar__item--text:hover span { color: var(--color-accent); }
@media (max-width: 680px) {
  .logobar__row { gap: 20px; }
  .logobar__item { width: 90px; height: 30px; }
  .logobar__item img { max-height: 28px; }
  .logobar__item--lg img { max-height: 36px; }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 8px;
}
.problem__body { font-size: 19px; line-height: 1.65; color: var(--ink-700); max-width: 40ch; }
.painlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.painlist li {
  border-left: 3px solid var(--color-accent);
  background: #fff;
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  box-shadow: var(--shadow-card);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
  color: var(--ink-900);
  text-wrap: pretty;
}

/* ============================================================
   METHOD (5 numbered cards)
   ============================================================ */
.method__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.method__card {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-base);
}
.method__card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--teal-300); }
.method__num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-accent);
  line-height: 1;
}
.method__card h3 { font-size: 19px; margin: 0; line-height: 1.25; min-height: 2.5em; }
.method__card p { font-size: 14.5px; color: var(--text-body); line-height: 1.55; margin: 0; }

/* ============================================================
   SERVICES (3 cards)
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.scard {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-base);
}
.scard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--teal-300); }
.scard__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--teal-50);
  display: inline-flex; align-items: center; justify-content: center;
}
.scard__icon svg { width: 26px; height: 26px; color: var(--icon-color); stroke-width: 2; }
.scard h3 { font-size: 23px; margin: 0; }
.scard__body { font-size: 16px; color: var(--text-body); line-height: 1.6; margin: 0; flex: 1; }
.scard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }

.badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 5px 11px; border-radius: 999px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about__photo { width: 100%; max-width: 440px; border-radius: 18px; display: block; }
.creds { list-style: none; margin: 26px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.creds li { display: flex; align-items: center; gap: 12px; font-family: var(--font-sans); font-size: 16px; color: var(--ink-700); }
.creds svg { width: 20px; height: 20px; color: var(--icon-color); stroke-width: 2.5; flex-shrink: 0; }
.about__body { font-size: 18px; line-height: 1.65; color: var(--ink-700); margin: 16px 0 0; max-width: 52ch; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tcard__mark { font-family: var(--font-serif); font-weight: 700; font-size: 56px; line-height: 0.6; color: var(--teal-300); height: 28px; }
.tcard__quote { font-family: var(--font-serif); font-size: 21px; font-style: italic; line-height: 1.5; color: var(--ink-900); margin: 0; }
.tcard__who { font-family: var(--font-sans); font-size: 14.5px; color: var(--text-muted); }
.tcard__who strong { color: var(--text-heading); font-weight: 700; }

.quotewall { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.quotewall__item {
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 32px; display: flex; flex-direction: column;
}
.quotewall__mark { font-family: var(--font-serif); font-weight: 700; font-size: 44px; line-height: 0.6; color: var(--teal-300); display: block; margin-bottom: 8px; }
.quotewall__quote { font-family: var(--font-serif); font-size: 19px; font-style: italic; line-height: 1.55; color: var(--ink-900); margin: 0 0 16px; }
.quotewall__who { font-family: var(--font-sans); font-size: 14.5px; color: var(--text-muted); margin-top: auto; }
.quotewall__who strong { color: var(--text-heading); font-weight: 700; }
.quotewall__item:last-child { grid-column: 1 / -1; width: calc((100% - 28px) / 2); margin: 0 auto; }
@media (max-width: 680px) {
  .quotewall { grid-template-columns: 1fr; }
  .quotewall__item:last-child { max-width: none; margin: 0; }
}

/* ============================================================
   CTA (bracket-framed, white)
   ============================================================ */
.cta { padding: 104px 0; }
.cta__panel { max-width: 760px; margin: 0 auto; text-align: center; padding: 56px 56px; }
.cta h2 { font-size: clamp(30px, 4.4vw, 42px); line-height: 1.1; margin: 14px 0 0; }
.cta__sub { font-size: 19px; color: var(--ink-700); margin: 18px auto 0; max-width: 42ch; }
.cta__btnrow { display: flex; justify-content: center; margin-top: 32px; }
.cta__mail { margin-top: 18px; font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); }
.cta__mail a { font-weight: 600; }

/* ============================================================
   FOOTER (light, on-brand white)
   ============================================================ */
.footer { background: var(--color-surface-sunken); border-top: 1px solid var(--ink-100); padding: 64px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; align-items: start; }
.footer__logo { height: 40px; display: block; }
.footer__tagline { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: var(--ink-700); margin: 16px 0 0; }
.footer__col h4 {
  font-family: var(--font-sans); font-weight: 700; font-size: 13px; color: var(--text-heading);
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 16px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 15px; color: var(--ink-700); display: inline-flex; align-items: center; gap: 9px; }
.footer__col a:hover { color: var(--color-accent); }
.footer__col a svg { width: 16px; height: 16px; color: var(--icon-color); stroke-width: 2; }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--ink-100); font-size: 13.5px; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .method__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--ink-100);
    padding: 16px 24px 22px; box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__links a { padding: 10px 0; font-size: 17px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__photo-wrap { order: -1; }
  .problem__grid, .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .services__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(4n+1) { border-left: 1px solid var(--ink-100); }
  .trust__item:nth-child(odd) { border-left: 0; }
}
@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .method__grid { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr; }
  .trust__item { justify-content: flex-start; border-left: 0 !important; border-top: 1px solid var(--ink-100); }
  .trust__item:first-child { border-top: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .cta__panel { padding: 40px 24px; }
  .hero__namecard { left: 0; }
}
@media (max-width: 420px) {
  .method__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .method__card:hover, .scard:hover { transform: none; }
}

/* ============================================================
   NAV TOGGLE SCRIPT HOOK (mobile burger menu)
   ============================================================ */
