/* =========================================================================
   VistaFront — design system
   Aesthetic: deep navy ink, electric blue accent, off-white field,
   editorial type pairing (Manrope display + Geist body),
   conversion-focused, "Made in Germany" professional.
   ========================================================================= */

:root {
  --ink: #0A1628;
  --ink-2: #16243B;
  --ink-soft: #2A3A56;
  --accent: #1F6FEB;
  --accent-2: #0E5BD0;
  --accent-soft: #E8F0FE;
  --paper: #F4F6FA;
  --paper-2: #E7ECF4;
  --paper-3: #FAFBFD;
  --line: #D8DFEA;
  --line-soft: #E5EAF2;
  --muted: #5B6478;
  --muted-2: #8A93A6;
  --white: #FFFFFF;

  --font-display: 'Manrope', 'Helvetica Neue', Helvetica, sans-serif;
  --font-body: 'Geist', 'Helvetica Neue', Helvetica, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-1: 0 1px 2px rgba(10,22,40,.06), 0 4px 16px rgba(10,22,40,.04);
  --shadow-2: 0 12px 36px -12px rgba(10,22,40,.18), 0 2px 6px rgba(10,22,40,.06);
  --shadow-ink: 0 24px 60px -20px rgba(10,22,40,.4);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
  --sticky-top: clamp(88px, 9vh, 112px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
html { scroll-behavior: smooth; }
section[id],
#top,
#main-content {
  scroll-margin-top: 110px;
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--ink); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- shared sections ---- */
.vf-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 140px) var(--gutter);
}
.vf-section__head {
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.vf-section__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.vf-section__lede {
  margin-top: 22px;
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

/* ---- typography ---- */
.vf-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-size: clamp(44px, 6.4vw, 88px);
  margin: 24px 0;
  color: var(--ink);
  text-wrap: balance;
}
.vf-display em {
  font-style: italic;
  font-family: 'Source Serif 4', 'Iowan Old Style', Georgia, serif;
  font-weight: 400;
  color: var(--accent);
}
.vf-display__line {
  white-space: nowrap;
}

.vf-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.vf-h2__accent {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.02em;
}

.vf-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 24px 0;
}
.vf-lede--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- pills ---- */
.vf-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.vf-pill--accent {
  background: var(--accent-soft);
  color: var(--accent-2);
  border-color: rgba(31,111,235,.18);
}
.vf-pill--popular {
  position: relative;
  padding: 6px 11px 6px 10px;
  background: linear-gradient(180deg, #0A1628, #14233c);
  color: var(--paper);
  border-color: rgba(31,111,235,.36);
  box-shadow: 0 10px 24px -18px rgba(10,22,40,.8);
}
.vf-pill--popular::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,111,235,.16);
}
.vf-pill--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.vf-pulse {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: vf-pulse 2s ease-out infinite;
}
@keyframes vf-pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,111,235,.5); }
  100% { box-shadow: 0 0 0 8px rgba(31,111,235,0); }
}

/* ---- buttons ---- */
.vf-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  border: 1px solid transparent;
  transition:
    transform .35s cubic-bezier(0.32, 0.72, 0, 1),
    background .3s cubic-bezier(0.32, 0.72, 0, 1),
    color .3s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow .35s cubic-bezier(0.32, 0.72, 0, 1),
    border-color .3s cubic-bezier(0.32, 0.72, 0, 1);
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-body);
}
.vf-btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.vf-btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(31,111,235,.5);
}
.vf-btn--primary:active { transform: scale(0.98) translateY(0); }
.vf-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.vf-btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 8px 24px -8px rgba(10,22,40,.12);
}
.vf-btn--ghost:active { transform: scale(0.98) translateY(0); }
.vf-btn--sm { padding: 9px 15px; font-size: 13.5px; }
.vf-btn--lg { padding: 17px 26px; font-size: 17px; }
.vf-btn--block { width: 100%; justify-content: center; }
.vf-btn:disabled { opacity: .35; cursor: not-allowed; transform: none !important; }

/* Button-in-button: SVG icon gets its own nested circular shell */
.vf-btn svg, .vf-btn__icon {
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-btn__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
  flex-shrink: 0;
}
.vf-btn--ghost .vf-btn__icon {
  background: var(--paper-2);
  box-shadow: none;
}
.vf-btn svg:not(.vf-btn__icon svg) {
  background: rgba(255,255,255,.13);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
  width: 12px; height: 12px;
}
.vf-btn--ghost svg:not(.vf-btn__icon svg) {
  background: var(--paper-2);
}
.vf-btn:hover svg:not(.vf-btn__icon svg),
.vf-btn:hover .vf-btn__icon {
  transform: translate(2px, -1px) scale(1.06);
}

/* ---- ribbon ---- */
.vf-ribbon {
  background: var(--ink);
  color: var(--paper);
  font-size: 13.5px;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  padding: 10px 20px;
  text-align: center;
}
.vf-ribbon strong { color: var(--accent); font-weight: 500; }
.vf-ribbon a,
.vf-ribbon__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 1px;
}
.vf-ribbon__link {
  appearance: none;
  background: none;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  font: inherit;
  cursor: pointer;
}
.vf-ribbon__link:hover { border-bottom-color: rgba(255,255,255,.72); }

/* ---- nav ---- */
.vf-nav {
  position: sticky; top: 0; z-index: 40;
  padding: 14px var(--gutter);
  pointer-events: none;
  background: transparent;
  transition: padding .5s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-nav.is-scrolled { padding: 8px var(--gutter); }
.vf-nav__inner {
  pointer-events: auto;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 9px 12px 9px 20px;
  background: rgba(244,246,250,.9);
  backdrop-filter: saturate(200%) blur(22px);
  -webkit-backdrop-filter: saturate(200%) blur(22px);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 2px 8px rgba(10,22,40,.05),
    0 12px 36px -12px rgba(10,22,40,.14);
  transition:
    background .5s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow .5s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-nav.is-scrolled .vf-nav__inner {
  background: rgba(244,246,250,.97);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 2px 8px rgba(10,22,40,.09),
    0 20px 52px -16px rgba(10,22,40,.22);
}
.vf-nav__links {
  display: flex; gap: 24px;
  justify-content: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.vf-nav__links a { transition: color .2s cubic-bezier(0.32, 0.72, 0, 1); }
.vf-nav__links a:hover { color: var(--ink); }
.vf-nav__actions { display: flex; align-items: center; gap: 10px; }
.vf-nav__phone { font-size: 12.5px; color: var(--muted); font-family: var(--font-mono); }
.vf-nav__hamburger {
  display: none;
  width: 36px; height: 36px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
/* Invisible hit-area extension: 36px visual circle, 48px touch target */
.vf-nav__hamburger::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
}
.vf-nav__hamburger span {
  display: block;
  width: 14px; height: 1.5px;
  background: var(--ink);
  border-radius: 999px;
  position: absolute;
  transition: transform .45s cubic-bezier(0.32, 0.72, 0, 1), opacity .3s;
}
.vf-nav__hamburger span:nth-child(1) { transform: translateY(-4px); }
.vf-nav__hamburger span:nth-child(2) { transform: translateY(4px); }
.vf-nav.is-menu-open .vf-nav__hamburger span:nth-child(1) { transform: rotate(45deg); }
.vf-nav.is-menu-open .vf-nav__hamburger span:nth-child(2) { transform: rotate(-45deg); }
.vf-nav.is-menu-open .vf-nav__hamburger { background: var(--ink); border-color: var(--ink); }
.vf-nav.is-menu-open .vf-nav__hamburger span { background: var(--paper); }

.vf-logo { display: inline-flex; align-items: center; gap: 10px; }
.vf-logo__img { height: 38px; width: auto; display: block; }

/* =========================================================================
   HERO — Split
   ========================================================================= */
.vf-hero { position: relative; overflow: visible; }
.vf-hero__orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.vf-hero--split .vf-hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.vf-hero__copy,
.vf-hero__viz {
  min-width: 0;
}
.vf-hero__copy {
  max-width: 620px;
}
.vf-hero__viz {
  justify-self: end;
  width: min(100%, 560px);
}
.vf-hero__copy .vf-display { margin: 28px 0 24px; }
.vf-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 44px; }
.vf-hero__proof {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.vf-hero__proof li { display: flex; flex-direction: column; gap: 4px; }
.vf-hero__proof strong {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vf-hero__proof span { font-size: 12.5px; color: var(--muted); }

/* ---- typewriter ---- */
.vf-type {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  line-height: 1.24;
  overflow: visible;
  vertical-align: baseline;
  padding-top: .08em;
  padding-bottom: .08em;
  padding-right: .18em;
}
.vf-type__sizer {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  font-style: italic;
  font-weight: 700;
  line-height: inherit;
  white-space: pre;
}
.vf-type__overlay {
  position: absolute;
  left: 0; top: .08em;
  display: inline-flex;
  align-items: baseline;
  line-height: inherit;
  min-width: max-content;
  overflow: visible;
}
.vf-type__text {
  display: inline-block;
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
  line-height: inherit;
  white-space: pre;
  padding-right: 0.18em;
}
.vf-type__caret {
  display: inline-block;
  width: 3px; height: 0.8em;
  background: var(--accent);
  margin-left: 4px;
  animation: vf-caret 1s steps(1) infinite;
  align-self: center;
  transform: translateY(0.05em);
}
@keyframes vf-caret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ---- browser mock ---- */
.vf-browser {
  width: 100%;
  max-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.vf-browser__chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-2);
}
.vf-browser__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d1d5dd;
}
.vf-browser__dot:nth-child(1) { background: #ff5f57; }
.vf-browser__dot:nth-child(2) { background: #febc2e; }
.vf-browser__dot:nth-child(3) { background: #28c840; }
.vf-browser__url {
  min-width: 0;
  flex: 1; margin: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; overflow: hidden;
}
.vf-browser__url #browser-url {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vf-browser__lock { font-size: 10px; }
.vf-browser__tabs { display: flex; gap: 6px; }
.vf-browser__tab {
  width: 22px; height: 6px; border-radius: 999px;
  background: var(--line); border: 0; padding: 0;
  transition: background .2s, width .2s;
}
.vf-browser__tab.is-active { background: var(--accent); width: 30px; }
.vf-browser__body { aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.vf-browser__frame { position: absolute; inset: 0; }
.vf-browser__frame[hidden] { display: none; }

/* SERP */
.vf-serp { padding: 22px; display: flex; flex-direction: column; gap: 18px; height: 100%; }
.vf-serp__bar { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.vf-serp__g {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; align-self: center;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 80%, #EA4335 100%);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; font-family: var(--font-display);
}
.vf-serp__input {
  flex: 1; padding: 8px 14px; border-radius: 999px;
  background: var(--paper-2); font-size: 13px; color: var(--ink);
}
.vf-serp__map {
  height: 110px; border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 30% 60%, rgba(31,111,235,.12), transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(31,111,235,.08), transparent 40%),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(10,22,40,.04) 20px 21px),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(10,22,40,.04) 20px 21px),
    var(--paper-2);
  position: relative;
  border: 1px solid var(--line-soft);
}
.vf-serp__pin {
  position: absolute;
  width: 22px; height: 22px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: white; font-family: var(--font-display);
}
.vf-serp__pin > span { transform: rotate(45deg); }
.vf-serp__pin--1 { background: var(--accent); top: 32%; left: 28%; box-shadow: 0 6px 18px -4px rgba(31,111,235,.6); }
.vf-serp__pin--2 { background: var(--ink-soft); top: 18%; left: 64%; }
.vf-serp__pin--3 { background: var(--ink-soft); top: 58%; left: 70%; }
.vf-serp__map-label {
  position: absolute; bottom: 8px; right: 10px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--muted); background: rgba(255,255,255,.85); padding: 3px 8px; border-radius: 999px;
}
.vf-serp__results { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.vf-serp__results li {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 14px; align-items: center;
  padding: 10px 12px; border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 13px;
}
.vf-serp__results li.is-our { border-color: var(--accent); background: var(--accent-soft); }
.vf-serp__rank {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
}
.vf-serp__results li.is-our .vf-serp__rank { background: var(--accent); }
.vf-serp__results li > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vf-serp__rating { font-size: 11.5px; color: var(--muted); }
.vf-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--ink); color: white; padding: 3px 8px; border-radius: 999px;
}

/* site mock */
.vf-sitemock { padding: 20px; display: flex; flex-direction: column; gap: 16px; height: 100%; }
.vf-sitemock__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-soft);
}
.vf-sitemock__brand {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--ink); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display);
}
.vf-sitemock__links { display: flex; gap: 18px; }
.vf-sitemock__links span { width: 40px; height: 6px; background: var(--line); border-radius: 999px; }
.vf-sitemock__cta { width: 70px; height: 22px; background: var(--ink); border-radius: 999px; }
.vf-sitemock__hero { display: grid; grid-template-columns: 1fr 0.9fr; gap: 18px; align-items: center; }
.vf-sitemock__hero-copy { display: flex; flex-direction: column; gap: 10px; }
.vf-bar { height: 14px; background: var(--ink); border-radius: 4px; }
.vf-bar--big { height: 22px; }
.vf-bar--ghost { height: 8px; background: var(--line); }
.vf-bar--w90 { width: 90%; }
.vf-bar--w70 { width: 70%; }
.vf-bar--w60 { width: 60%; }
.vf-bar--w55 { width: 55%; }
.vf-bar--w50 { width: 50%; }
.vf-bar--w40 { width: 40%; }
.vf-sitemock__cta-row { display: flex; gap: 8px; margin-top: 8px; }
.vf-sitemock__btn { width: 96px; height: 32px; border-radius: 999px; background: var(--accent); }
.vf-sitemock__btn--ghost { background: transparent; border: 1.5px solid var(--line); }
.vf-sitemock__hero-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  background:
    repeating-linear-gradient(135deg, rgba(31,111,235,.12) 0 8px, transparent 8px 18px),
    var(--accent-soft);
  position: relative; overflow: hidden;
}
.vf-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: vf-shimmer 2.4s ease-in-out infinite;
}
@keyframes vf-shimmer { 100% { transform: translateX(100%); } }
.vf-sitemock__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vf-sitemock__card { height: 70px; border-radius: var(--radius-sm); background: var(--paper-2); border: 1px solid var(--line-soft); }

/* landing mock */
.vf-landing { padding: 22px; display: flex; flex-direction: column; gap: 18px; height: 100%; }
.vf-landing__head { display: flex; flex-direction: column; gap: 10px; }
.vf-landing__form {
  background: var(--paper-2); border-radius: var(--radius);
  padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.vf-input { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; font-size: 12px; color: var(--muted); }
.vf-input--tall { height: 70px; }
.vf-landing__btn { background: var(--ink); color: white; border-radius: 999px; padding: 12px; text-align: center; font-size: 13px; font-weight: 500; margin-top: 4px; }
.vf-landing__trust { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--accent); }
.vf-landing__trust small { color: var(--muted); margin-left: auto; }

/* ---- marquee ---- */
.vf-marquee {
  border-block: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  padding: 20px 0;
}
.vf-marquee__track {
  display: flex; gap: 0;
  animation: vf-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.vf-marquee__item {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--ink);
  padding: 0 32px;
  display: inline-flex; align-items: center; gap: 32px;
}
.vf-marquee__sep { color: var(--accent); font-size: 8px; }
@keyframes vf-scroll { to { transform: translateX(-50%); } }

/* =========================================================================
   SERVICES
   ========================================================================= */
.vf-services { background: var(--paper); }
.vf-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.vf-service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex; flex-direction: column; gap: 20px;
  transition:
    transform .45s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow .45s cubic-bezier(0.32, 0.72, 0, 1),
    border-color .3s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-1);
}
.vf-service.is-active {
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-2), 0 0 0 2px var(--ink);
  border-color: var(--ink);
}
.vf-service__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vf-service__price { font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 500; }
.vf-service__title { font-family: var(--font-display); font-size: 30px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.vf-service__body { color: var(--muted); margin: 0; font-size: 15.5px; line-height: 1.55; }
.vf-service__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px dashed var(--line); padding-top: 18px;
}
.vf-service__bullets li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.vf-service__bullets svg { color: var(--accent); flex-shrink: 0; }
.vf-service__more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); font-weight: 500; font-size: 14px;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.vf-service__more:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* =========================================================================
   PROCESS
   ========================================================================= */
.vf-process { background: var(--white); border-block: 1px solid var(--line); }
.vf-process__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  min-width: 0;
}
.vf-process__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  min-width: 0;
}
.vf-process__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px; align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding .25s, color .15s;
}
.vf-process__list li.is-active { padding-left: 14px; }
.vf-process__list li.is-active .vf-process__title { color: var(--accent); }
.vf-process__list li.is-active .vf-process__caret { transform: translateX(4px); color: var(--accent); }
.vf-process__num { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.vf-process__title { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; color: var(--ink); transition: color .15s; }
.vf-process__caret { color: var(--muted); transition: transform .25s, color .15s; }
.vf-process__detail {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  overflow: clip;
  min-width: 0;
  min-height: 340px;
}
.vf-process__big-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 9vw, 140px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.06);
  position: absolute; top: -8px; right: 24px;
  line-height: 1;
}
.vf-process__detail h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px); font-weight: 600;
  letter-spacing: -0.02em;
  margin: 24px 0 16px;
  position: relative;
}
.vf-process__detail p {
  font-size: 17px; line-height: 1.55;
  color: rgba(247,248,251,.78);
  max-width: 50ch;
  position: relative;
}
.vf-process__timeline { display: flex; gap: 6px; margin-top: 32px; position: relative; }
.vf-process__node { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,.12); transition: background .25s; }
.vf-process__node.is-on { background: var(--accent); }

/* =========================================================================
   PRICING
   ========================================================================= */
.vf-pricing { background: var(--white); border-block: 1px solid var(--line); }
.vf-pricing__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.vf-config-block { margin-bottom: 32px; }
.vf-config-block h3 {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 12px;
}
.vf-config-block h3::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.vf-config-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vf-config-card {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: left;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .15s, transform .15s, background .15s;
}
.vf-config-card:hover { border-color: var(--ink-soft); }
.vf-config-card.is-on { border-color: var(--ink); background: var(--white); box-shadow: var(--shadow-1); }
.vf-config-card--popular {
  background:
    radial-gradient(circle at 82% 0%, rgba(31,111,235,.14), transparent 38%),
    linear-gradient(180deg, var(--white), var(--paper));
  border-color: rgba(31,111,235,.28);
}
.vf-config-card--popular.is-on {
  border-color: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 18px 42px -30px rgba(31,111,235,.65);
}
.vf-config-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.vf-config-card strong { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.vf-config-card__price { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.vf-config-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.vf-config-card ul li { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); }
.vf-config-card ul svg { color: var(--accent); flex-shrink: 0; }

.vf-addons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.vf-addon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px; align-items: center;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.vf-addon:hover { border-color: var(--ink-soft); }
.vf-addon.is-on { border-color: var(--ink); background: var(--white); }
.vf-addon input { display: none; }
.vf-addon__check {
  width: 20px; height: 20px; border-radius: 6px;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: background .15s, border-color .15s, color .15s;
}
.vf-addon.is-on .vf-addon__check { background: var(--ink); border-color: var(--ink); color: white; }
.vf-addon__label { font-size: 14.5px; }
.vf-addon__price { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }

.vf-care { display: flex; flex-direction: column; gap: 10px; }
.vf-care__opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px; align-items: center;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.vf-care__opt:hover { border-color: var(--ink-soft); }
.vf-care__opt.is-on { border-color: var(--ink); background: var(--white); }
.vf-care__opt input { display: none; }
.vf-care__opt::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--line);
  transition: border-color .15s, box-shadow .15s;
}
.vf-care__opt.is-on::before { border-color: var(--ink); box-shadow: inset 0 0 0 4px var(--ink); }
.vf-care__opt span { font-size: 14.5px; }
.vf-care__opt strong { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }

.vf-pricing__summary {
  position: sticky; top: var(--sticky-top);
  align-self: start;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.vf-pricing__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.vf-pricing__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.vf-pricing__row span { color: rgba(255,255,255,.7); font-size: 15px; }
.vf-pricing__row strong { font-family: var(--font-display); font-size: 30px; font-weight: 600; letter-spacing: -0.02em; color: var(--paper); }
.vf-pricing__list { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(255,255,255,.7); }
.vf-pricing__list li::before { content: '— '; color: var(--accent); }
.vf-pricing__summary hr { border: 0; height: 1px; background: rgba(255,255,255,.1); margin: 22px 0 0; }
.vf-pricing__summary .vf-btn--primary { background: var(--accent); color: white; border-color: var(--accent); }
.vf-pricing__summary .vf-btn--primary:hover { background: white; color: var(--ink); border-color: white; }
.vf-pricing__note { margin: 14px 0 0; font-size: 12px; color: rgba(255,255,255,.5); text-align: center; }

/* =========================================================================
   STATS
   ========================================================================= */
.vf-stats { background: var(--ink); color: var(--paper); max-width: none; padding-inline: 0; }
.vf-stats__grid {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.vf-stats__cell { padding: 32px 24px; border-right: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: 10px; }
.vf-stats__cell:last-child { border-right: 0; }
.vf-stats__value { font-family: var(--font-display); font-size: clamp(48px, 5.5vw, 76px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--accent); }
.vf-stats__value small { font-size: 0.4em; font-weight: 500; margin-left: 4px; color: rgba(255,255,255,.7); }
.vf-stats__label { font-size: 14.5px; color: rgba(255,255,255,.7); line-height: 1.45; max-width: 30ch; }
.vf-quote { max-width: var(--container); margin: 80px auto 0; padding: 0 var(--gutter) clamp(72px, 8vw, 112px); text-align: center; }
.vf-quote p { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 500; letter-spacing: -0.015em; line-height: 1.25; color: var(--paper); max-width: 32ch; margin: 0 auto 24px; text-wrap: balance; }
.vf-quote footer { font-size: 14px; color: rgba(255,255,255,.6); font-family: var(--font-mono); }
.vf-quote footer strong { color: var(--paper); font-weight: 500; margin-right: 6px; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.vf-testi {
  position: relative;
  background:
    linear-gradient(180deg, var(--white) 0%, #f7f9fd 54%, var(--paper) 100%);
  border-top: 1px solid var(--line);
  max-width: none; padding-inline: var(--gutter);
  overflow: hidden;
}
.vf-testi::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(10,22,40,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,22,40,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 72%, transparent 100%);
}
.vf-testi > .vf-testi__intro,
.vf-testi > .vf-testi__grid,
.vf-testi > .vf-testi__strip,
.vf-testi > .vf-testi__more { position: relative; max-width: var(--container); margin-left: auto; margin-right: auto; }
.vf-section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.vf-section__head--center .vf-section__num { margin-bottom: 24px; }
.vf-section__head--center h2 { margin: 0 auto; }
.vf-testi__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(42px, 5vw, 68px);
}
.vf-testi__intro .vf-section__head {
  margin-bottom: 0;
}
.vf-testi__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.vf-testi__card {
  position: relative;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(10,22,40,.08);
  border-radius: var(--radius-xl);
  padding: 22px;
  margin: 0;
  display: flex; flex-direction: column; gap: 18px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-1);
  transition: transform .5s cubic-bezier(0.32, 0.72, 0, 1), box-shadow .5s cubic-bezier(0.32, 0.72, 0, 1), border-color .3s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-testi__card:hover { transform: translateY(-5px); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-2); border-color: var(--ink-soft); }
.vf-testi__card:nth-child(2) { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.vf-testi__card > * {
  position: relative;
  z-index: 1;
}
.vf-testi__brand {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 4px 16px;
}
.vf-testi__brand img {
  display: block;
  max-width: 194px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}
.vf-testi__card--waffenhelden .vf-testi__brand img {
  mix-blend-mode: normal;
}
.vf-testi__card--waffenhelden .vf-testi__brand {
  position: relative;
  justify-content: flex-start;
  height: 94px;
  padding: 0 0 18px;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.vf-testi__card--waffenhelden .vf-testi__brand img {
  width: min(310px, 100%);
  height: auto;
  max-width: none;
  max-height: 74px;
  object-position: left center;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.vf-testi__quote-mark { width: 36px; height: 28px; color: var(--accent); opacity: .9; }
.vf-testi__quote { font-family: var(--font-display); font-weight: 500; font-size: 19px; line-height: 1.45; letter-spacing: -0.01em; margin: 0; text-wrap: pretty; color: var(--ink); flex: 1; }
.vf-testi__card:nth-child(2) .vf-testi__quote { color: var(--paper); }
.vf-testi__foot { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.vf-testi__card:nth-child(2) .vf-testi__foot { border-top-color: rgba(255,255,255,.12); }
.vf-testi__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; font-weight: 600; flex-shrink: 0; }
.vf-testi__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.vf-testi__avatar--image {
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 10px 24px -16px rgba(17,24,39,.55);
}
.vf-testi__avatar--logo {
  width: 58px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  padding: 6px;
}
.vf-testi__avatar--logo img {
  object-fit: contain;
}
.vf-testi__avatar--joost img {
  object-position: center 36%;
}
.vf-testi__card:nth-child(2) .vf-testi__avatar { background: var(--accent); }
.vf-testi__foot strong { font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: -0.01em; display: block; }
.vf-testi__foot span { font-size: 12.5px; color: var(--muted); display: block; }
.vf-testi__card:nth-child(2) .vf-testi__foot span { color: rgba(255,255,255,.6); }
.vf-testi__loc { font-family: var(--font-mono); font-size: 11px !important; letter-spacing: 0.06em; margin-top: 2px; }
.vf-testi__card.vf-testi__card--eta {
  background:
    radial-gradient(circle at 12% 10%, rgba(0,118,182,.12), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(245,130,32,.16), transparent 30%),
    linear-gradient(145deg, #eef8ff 0%, #ffffff 58%, #fff4e8 100%);
  border-color: rgba(0,118,182,.22);
}
.vf-testi__card.vf-testi__card--eta::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 26px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 8px solid rgba(0,118,182,.12);
  box-shadow: 12px 12px 0 -2px rgba(245,130,32,.14);
}
.vf-testi__card.vf-testi__card--eta .vf-testi__sector {
  color: #0076b6;
  border-color: rgba(0,118,182,.2);
  background: rgba(0,118,182,.08);
}
.vf-testi__card.vf-testi__card--eta .vf-testi__avatar {
  background: linear-gradient(135deg, #0076b6, #3aa6d9);
}
.vf-testi__card.vf-testi__card--strom {
  background:
    radial-gradient(circle at 12% 10%, rgba(37,99,235,.12), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(251,176,59,.18), transparent 30%),
    linear-gradient(145deg, #f3fbff 0%, #ffffff 56%, #fff8e7 100%);
  border-color: rgba(55,177,199,.26);
}
.vf-testi__card.vf-testi__card--strom::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 9px solid rgba(55,177,199,.16);
  box-shadow: inset 0 0 0 9px rgba(251,176,59,.16);
}
.vf-testi__card.vf-testi__card--strom .vf-testi__sector {
  color: #2563eb;
  border-color: rgba(37,99,235,.2);
  background: rgba(37,99,235,.08);
}
.vf-testi__card.vf-testi__card--strom .vf-testi__avatar {
  background: linear-gradient(135deg, #2563eb, #37b1c7);
}
.vf-testi__card.vf-testi__card--waffenhelden {
  background:
    radial-gradient(circle at 16% 0%, rgba(213,189,120,.16), transparent 34%),
    linear-gradient(145deg, #071833 0%, #0b2345 62%, #14120d 100%);
  border-color: rgba(185,154,86,.38);
  color: var(--paper);
  overflow: hidden;
}
.vf-testi__card.vf-testi__card--waffenhelden::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  opacity: .42;
  background:
    radial-gradient(ellipse at 52% 100%, rgba(213,189,120,.24), transparent 58%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.46));
}
.vf-testi__card.vf-testi__card--waffenhelden .vf-testi__sector {
  color: rgba(213,189,120,.86);
  border-color: rgba(213,189,120,.25);
  background: rgba(213,189,120,.1);
}
.vf-testi__card.vf-testi__card--waffenhelden .vf-testi__quote {
  color: var(--paper);
}
.vf-testi__card.vf-testi__card--waffenhelden .vf-testi__avatar {
  background: linear-gradient(135deg, #b99a56, #f0d99c);
  color: #071833;
}
.vf-testi__card.vf-testi__card--waffenhelden .vf-testi__avatar--logo {
  background: rgba(255,255,255,.94);
}
.vf-testi__card.vf-testi__card--waffenhelden .vf-testi__foot {
  border-top-color: rgba(213,189,120,.18);
}
.vf-testi__card.vf-testi__card--waffenhelden .vf-testi__foot span {
  color: rgba(255,255,255,.62);
}
/* fictional brand icon */
.vf-testi__brand-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  letter-spacing: -0.02em; flex-shrink: 0;
}

/* Handwerk card */
.vf-testi__card.vf-testi__card--handwerk {
  background:
    radial-gradient(circle at 10% 15%, rgba(234,88,12,.1), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(217,119,6,.12), transparent 30%),
    linear-gradient(145deg, #fff8f0 0%, #ffffff 55%, #fffbeb 100%);
  border-color: rgba(234,88,12,.18);
}
.vf-testi__card.vf-testi__card--handwerk .vf-testi__brand-icon {
  background: linear-gradient(135deg, #ea580c, #f97316);
}
.vf-testi__card.vf-testi__card--handwerk .vf-testi__sector {
  color: #c2410c; border-color: rgba(234,88,12,.2); background: rgba(234,88,12,.07);
}

/* Beratung card — dark treatment */
.vf-testi__card.vf-testi__card--beratung {
  background:
    radial-gradient(circle at 20% 15%, rgba(99,102,241,.18), transparent 40%),
    linear-gradient(145deg, #1e1b4b 0%, #1a1635 55%, #0f0e1f 100%);
  border-color: rgba(129,140,248,.28);
  color: var(--paper);
}
.vf-testi__card.vf-testi__card--beratung .vf-testi__brand-icon {
  background: linear-gradient(135deg, #6366f1, #818cf8);
}
.vf-testi__card.vf-testi__card--beratung .vf-testi__sector {
  color: rgba(165,180,252,.9); border-color: rgba(129,140,248,.25); background: rgba(129,140,248,.1);
}
.vf-testi__card.vf-testi__card--beratung .vf-testi__quote { color: var(--paper); }
.vf-testi__card.vf-testi__card--beratung .vf-testi__foot { border-top-color: rgba(255,255,255,.1); }
.vf-testi__card.vf-testi__card--beratung .vf-testi__foot span { color: rgba(255,255,255,.55); }
.vf-testi__card.vf-testi__card--beratung .vf-testi__foot strong { color: var(--paper); }

/* Kanzlei card */
.vf-testi__card.vf-testi__card--kanzlei {
  background:
    radial-gradient(circle at 10% 10%, rgba(5,150,105,.1), transparent 32%),
    radial-gradient(circle at 88% 25%, rgba(16,185,129,.1), transparent 28%),
    linear-gradient(145deg, #f0fdf9 0%, #ffffff 56%, #f0fdf4 100%);
  border-color: rgba(5,150,105,.18);
}
.vf-testi__card.vf-testi__card--kanzlei .vf-testi__brand-icon {
  background: linear-gradient(135deg, #059669, #10b981);
}
.vf-testi__card.vf-testi__card--kanzlei .vf-testi__sector {
  color: #047857; border-color: rgba(5,150,105,.2); background: rgba(5,150,105,.07);
}

.vf-testi__strip {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.vf-testi__strip-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
.vf-testi__strip-list { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; }
.vf-testi__strip-item {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.6);
}
.vf-testi__more {
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(10,22,40,.08);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.vf-testi__more p {
  margin: 0;
  max-width: 58ch;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.5;
}
.vf-testi__more strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.vf-about { background: var(--white); }
.vf-about__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.vf-about__bios { display: grid; gap: 18px; margin-top: 36px; }
.vf-bio { display: flex; gap: 18px; align-items: center; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.vf-bio__avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--ink); }
.vf-bio__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vf-bio strong { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; display: block; }
.vf-bio span { font-size: 13.5px; color: var(--muted); display: block; margin: 2px 0 4px; }
.vf-bio a { font-size: 13px; color: var(--accent); }
.vf-about__team-link { margin-top: 8px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; }
.vf-about__sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: var(--sticky-top); align-self: start; }
.vf-about__card { background: var(--ink); color: var(--paper); padding: 22px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 8px; }
.vf-about__card:nth-child(2) { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.vf-about__card:nth-child(3) { background: var(--accent); color: white; }
.vf-about__card-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: .7; }
.vf-about__card strong { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }

/* =========================================================================
   FAQ
   ========================================================================= */
.vf-faq { background: var(--paper); border-top: 1px solid var(--line); }
.vf-faq__list { border-top: 1px solid var(--line); max-width: 920px; margin: 0 auto; }
.vf-faq__item { border-bottom: 1px solid var(--line); }
.vf-faq__q {
  width: 100%; background: none; border: 0;
  padding: 26px 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  text-align: left; font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px); font-weight: 600; letter-spacing: -0.01em; color: var(--ink);
  cursor: pointer; transition: color .15s;
}
.vf-faq__q:hover { color: var(--accent); }
.vf-faq__icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; color: var(--ink);
  transition: transform .4s cubic-bezier(0.32, 0.72, 0, 1), background .3s cubic-bezier(0.32, 0.72, 0, 1), color .3s; flex-shrink: 0;
}
.vf-faq__item.is-open .vf-faq__icon { background: var(--accent); color: white; transform: rotate(45deg); }
.vf-faq__a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(0.22, 1, 0.36, 1), padding .3s cubic-bezier(0.22, 1, 0.36, 1); }
.vf-faq__a p { margin: 0; padding: 0 4px 26px; color: var(--muted); font-size: 16.5px; line-height: 1.55; max-width: 65ch; }
.vf-faq__item.is-open .vf-faq__a { max-height: 400px; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.vf-final {
  background: var(--ink); color: var(--paper);
  max-width: none; padding: clamp(96px, 11vw, 160px) var(--gutter);
  position: relative; overflow: visible;
}
.vf-final__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.vf-final__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.vf-final__glow {
  position: absolute; top: -40%; left: 50%;
  width: 80vw; height: 80vw; max-width: 1100px; max-height: 1100px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(31,111,235,.35) 0%, rgba(31,111,235,0) 60%);
  filter: blur(20px);
}
.vf-final__inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.vf-final__head {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 20px;
  margin-bottom: clamp(40px, 5vw, 64px); flex-wrap: wrap; gap: 12px;
}
.vf-final__pre { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.vf-final__meta { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.vf-final__layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.vf-final__layout,
.vf-final__copy,
.vf-final__card,
.vf-final__bullets li > div {
  min-width: 0;
}
.vf-final__display { text-align: left; color: var(--paper); font-size: clamp(48px, 6vw, 84px); margin: 0 0 28px; }
.vf-final__display em { color: var(--accent); }
.vf-final__lede { text-align: left; margin: 0 0 36px; color: rgba(255,255,255,.7); max-width: 50ch; }
.vf-final__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,.08); }
.vf-final__bullets li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.vf-final__bullet-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); padding-top: 4px; }
.vf-final__bullets li > div { display: flex; flex-direction: column; gap: 4px; font-size: 14.5px; color: rgba(255,255,255,.7); line-height: 1.5; }
.vf-final__bullets strong { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--paper); }
.vf-final__card {
  background: var(--paper); color: var(--ink); border-radius: var(--radius-xl); padding: 36px;
  position: sticky; top: var(--sticky-top);
  align-self: start;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 40px 80px -30px rgba(0,0,0,.5), 0 8px 20px -8px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .5s cubic-bezier(0.32, 0.72, 0, 1), box-shadow .5s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-final__card:hover { transform: translateY(-6px); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 48px 96px -30px rgba(0,0,0,.55), 0 12px 28px -8px rgba(0,0,0,.35); }
.vf-final__card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 8px; }
.vf-final__card-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); padding: 5px 10px; background: var(--accent-soft); border-radius: 999px; }
.vf-final__card-rating { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.vf-final__card-title { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 10px; line-height: 1.1; }
.vf-final__card-sub { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0 0 24px; }
.vf-final__card-people { display: flex; align-items: center; gap: 0; margin-bottom: 24px; padding: 14px 16px; background: var(--paper-2); border-radius: var(--radius); }
.vf-final__card-people img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--paper); flex-shrink: 0; }
.vf-final__card-people img:nth-child(n+2) { margin-left: -10px; }
.vf-final__card-people span { font-size: 13px; color: var(--muted); margin-left: 14px; }
.vf-final__card .vf-btn--primary { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.vf-final__card .vf-btn--primary:hover { background: var(--accent); border-color: var(--accent); }
.vf-final__card-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 24px; border-top: 1px solid var(--line); padding-top: 20px; }
.vf-final__card-alt a { display: flex; flex-direction: column; gap: 2px; padding: 6px 8px; border-radius: var(--radius-sm); transition: background .15s; }
.vf-final__card-alt a:hover { background: var(--paper-2); }
.vf-final__card-alt a:first-child { border-right: 1px solid var(--line); margin-right: 8px; padding-right: 16px; }
.vf-final__card-alt-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.vf-final__card-alt strong { font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: -0.005em; color: var(--ink); word-break: break-word; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.vf-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 64px var(--gutter) 32px; }
.vf-footer__top { max-width: var(--container); margin: 0 auto 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.vf-footer__claim { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0; }
.vf-footer__grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; }
.vf-footer__grid h5 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.vf-footer__grid > div { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; color: var(--ink); }
.vf-footer__grid a { color: var(--ink); transition: color .15s; }
.vf-footer__grid a:hover { color: var(--accent); }
.vf-footer__bottom { max-width: var(--container); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px; }
.vf-footer__bottom a:hover { color: var(--accent); }

/* =========================================================================
   LEGAL PAGES
   ========================================================================= */
.vf-legal-page {
  background: var(--paper);
  color: var(--ink);
}
.vf-legal-nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.vf-legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px var(--gutter) 120px;
  overflow-wrap: anywhere;
}
.vf-legal h1 {
  margin: 18px 0 42px;
}
.vf-legal section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.vf-legal h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.vf-legal p {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
}
.vf-legal a {
  color: var(--accent);
}

/* =========================================================================
   MODAL
   ========================================================================= */
.vf-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,22,40,.6);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: vf-fadein .25s ease;
}
.vf-modal[hidden] { display: none; }
@keyframes vf-fadein { from { opacity: 0; } to { opacity: 1; } }
.vf-modal__panel {
  background: var(--white); border-radius: var(--radius-xl);
  width: 100%; max-width: 560px; padding: 40px;
  position: relative; box-shadow: var(--shadow-ink);
  animation: vf-pop .3s cubic-bezier(.22,1,.36,1);
}
@keyframes vf-pop { from { transform: translateY(20px) scale(.96); opacity: 0; } to { transform: none; opacity: 1; } }
.vf-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper-2); border: 0;
  font-size: 22px; line-height: 1; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.vf-modal__close:hover { background: var(--ink); color: white; }
.vf-modal__progress { display: flex; gap: 6px; margin-bottom: 28px; }
.vf-modal__pip { flex: 1; height: 4px; border-radius: 2px; background: var(--paper-2); transition: background .25s; }
.vf-modal__pip.is-on { background: var(--ink); }
.vf-modal__pre { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.vf-modal__step h3 { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; margin: 8px 0 24px; text-wrap: balance; }
.vf-modal__opts { display: flex; flex-direction: column; gap: 10px; }
.vf-modal__opt { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 14px 18px; text-align: left; font-size: 15px; transition: background .15s, border-color .15s, color .15s; }
.vf-modal__opt:hover { border-color: var(--ink-soft); }
.vf-modal__opt.is-on { background: var(--ink); color: white; border-color: var(--ink); }
.vf-modal__form { display: grid; gap: 14px; }
.vf-modal__form label { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.vf-modal__form input, .vf-modal__form textarea { font-family: var(--font-body); font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); transition: border-color .15s, background .15s; text-transform: none; letter-spacing: 0; }
.vf-modal__form input:focus, .vf-modal__form textarea:focus { border-color: var(--ink); background: white; }
.vf-modal__form textarea { resize: vertical; min-height: 80px; }
.vf-modal__textarea { grid-column: 1 / -1; }
.vf-modal__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.vf-modal__nav .vf-btn--primary { margin-left: auto; }
.vf-modal__step--done { text-align: center; padding: 12px 0; }
.vf-modal__check { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.vf-modal__step--done p { color: var(--muted); margin: 0 0 24px; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 960px) {
  :root {
    --gutter: clamp(18px, 5vw, 32px);
    --sticky-top: 82px;
  }
  .vf-section {
    padding-block: clamp(68px, 12vw, 104px);
  }
  .vf-section__head {
    margin-bottom: clamp(32px, 7vw, 48px);
  }
  .vf-section__lede {
    font-size: 17px;
  }
  .vf-nav__links { display: none; }
  .vf-nav__inner { grid-template-columns: 1fr auto; }
  .vf-nav__phone { display: none; }
  .vf-nav__hamburger { display: flex; }
  #nav-cta { display: none; }
  .vf-hero--split .vf-hero__grid { grid-template-columns: 1fr; }
  .vf-hero__viz {
    justify-self: stretch;
    width: min(100%, 620px);
  }
  .vf-services__grid { grid-template-columns: 1fr; }
  .vf-process__layout { grid-template-columns: 1fr; }
  .vf-process__detail { position: static; }
  .vf-pricing__layout { grid-template-columns: 1fr; }
  .vf-pricing__summary { position: static; }
  .vf-config-options { grid-template-columns: 1fr; }
  .vf-addons { grid-template-columns: 1fr; }
  .vf-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .vf-stats__cell:nth-child(2) { border-right: 0; }
  .vf-stats__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .vf-testi__intro { gap: 26px; }
  .vf-testi__grid { grid-template-columns: 1fr; }
  .vf-testi__more { align-items: flex-start; flex-direction: column; }
  .vf-about__grid { grid-template-columns: 1fr; }
  .vf-about__sidebar { position: static; }
  .vf-final__layout { grid-template-columns: 1fr; }
  .vf-final__card { position: static; }
  .vf-final__card-alt { grid-template-columns: 1fr; }
  .vf-final__card-alt a:first-child { border-right: 0; margin-right: 0; padding-right: 8px; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 4px; }
  .vf-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .vf-hero__proof { grid-template-columns: 1fr 1fr; }
  .vf-modal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 18px;
  }
  .vf-modal__panel {
    max-height: none;
    padding: 34px 24px 26px;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
  }
  body {
    font-size: 15.5px;
  }
  .vf-section {
    padding: 64px 18px;
  }
  .vf-section__num {
    margin-bottom: 14px;
    font-size: 10.5px;
  }
  .vf-section__lede {
    margin-top: 16px;
    font-size: 16.5px;
  }
  .vf-h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }
  .vf-ribbon {
    padding: 10px 16px;
    font-size: 12.5px;
    line-height: 1.45;
    text-align: center;
  }
  .vf-ribbon span {
    max-width: none;
  }
  .vf-ribbon__link {
    justify-content: center;
  }
  .vf-nav {
    padding: 10px 14px;
  }
  .vf-nav__inner {
    padding: 8px 8px 8px 16px;
  }
  .vf-logo__img {
    height: 34px;
  }
  .vf-hero--split .vf-hero__grid {
    padding: clamp(36px, 12vw, 56px) 18px 48px;
    gap: 28px;
  }
  .vf-hero__copy,
  .vf-hero__viz {
    max-width: none;
    width: 100%;
  }
  .vf-display {
    font-size: clamp(38px, 11.2vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }
  .vf-display__line {
    white-space: normal;
  }
  .vf-legal-nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .vf-lede {
    max-width: 360px;
    font-size: 17px;
  }
  .vf-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 28px 0 36px;
    max-width: 360px;
  }
  .vf-hero__ctas .vf-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .vf-hero__proof {
    gap: 16px;
    max-width: 360px;
  }
  .vf-hero__proof strong {
    font-size: 24px;
  }
  .vf-browser {
    border-radius: 18px;
  }
  .vf-browser__chrome {
    gap: 8px;
    padding: 10px;
  }
  .vf-browser__url {
    margin: 0 6px;
    padding: 6px 10px;
  }
  .vf-browser__tabs {
    display: none;
  }
  .vf-browser__body {
    aspect-ratio: 1 / 1;
  }
  .vf-serp {
    padding: 18px 14px;
    gap: 12px;
  }
  .vf-serp__map {
    height: 88px;
  }
  .vf-serp__results li {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 8px 10px;
  }
  .vf-serp__results .vf-tag {
    display: none;
  }
  .vf-sitemock,
  .vf-landing {
    padding: 16px;
    gap: 12px;
  }
  .vf-sitemock__links span:nth-child(n+3),
  .vf-sitemock__cta {
    display: none;
  }
  .vf-sitemock__hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vf-sitemock__hero-img {
    min-height: 96px;
  }
  .vf-sitemock__grid {
    gap: 8px;
  }
  .vf-sitemock__card {
    height: 52px;
  }
  .vf-input--tall {
    height: 60px;
  }
  .vf-marquee__item {
    font-size: 20px;
    padding: 0 24px;
    gap: 24px;
  }
  .vf-service {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }
  .vf-service__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .vf-service__title {
    font-size: 26px;
  }
  .vf-process__list li {
    gap: 12px;
    padding: 18px 0;
  }
  .vf-process__title {
    font-size: 18px;
  }
  .vf-config-card {
    padding: 16px;
  }
  .vf-addon,
  .vf-care__opt {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .vf-addon__price,
  .vf-care__opt strong {
    grid-column: 2;
  }
  .vf-pricing__summary {
    padding: 26px 20px;
    border-radius: var(--radius-lg);
  }
  .vf-pricing__row strong {
    font-size: 26px;
  }
  .vf-ribbon { flex-direction: column; gap: 8px; }
  .vf-process__list li.is-active {
    padding-left: 4px;
  }
  .vf-process__detail {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }
  .vf-process__caret {
    transform: none !important;
  }
  .vf-stats__cell {
    padding: 28px 0;
  }
  .vf-testi {
    padding-inline: 18px;
  }
  .vf-testi__card {
    padding: 20px;
    border-radius: var(--radius-lg);
  }
  .vf-testi__brand {
    height: auto;
    min-height: 64px;
  }
  .vf-testi__strip {
    justify-content: flex-start;
    margin-top: 32px;
  }
  .vf-testi__strip-label {
    width: 100%;
    border-right: 0;
    padding-right: 0;
    text-align: left;
  }
  .vf-testi__strip-list {
    justify-content: flex-start;
  }
  .vf-testi__more {
    padding: 22px 20px;
    border-radius: var(--radius);
  }
  .vf-testi__more p {
    font-size: 16px;
  }
  .vf-bio {
    align-items: flex-start;
    padding: 16px;
  }
  .vf-bio__avatar {
    width: 56px;
    height: 56px;
  }
  .vf-final {
    padding: 72px 18px;
  }
  .vf-final__head,
  .vf-final__meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .vf-final__display {
    font-size: clamp(38px, 12vw, 48px);
  }
  .vf-final__bullets li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }
  .vf-final__card {
    padding: 28px 20px;
    border-radius: var(--radius);
  }
  .vf-final__card .vf-btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .vf-final__card-people {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .vf-final__card-people span {
    flex-basis: 100%;
    margin: 10px 0 0;
  }
  .vf-footer {
    padding: 48px 18px 28px;
  }
  .vf-footer__top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }
  .vf-modal {
    padding: 12px;
  }
  .vf-modal__panel {
    padding: 30px 20px 22px;
  }
  .vf-modal__step h3 {
    font-size: 24px;
  }
  .vf-modal__nav {
    flex-direction: column-reverse;
  }
  .vf-modal__nav .vf-btn {
    width: 100%;
    justify-content: center;
  }
  .vf-modal__nav .vf-btn--primary {
    margin-left: 0;
  }
  .vf-legal-nav,
  .vf-legal {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .vf-display {
    font-size: clamp(34px, 10.5vw, 40px);
  }
  .vf-lede {
    max-width: none;
  }
  .vf-hero__proof li:last-child {
    grid-column: 1 / -1;
  }
  .vf-stats__grid {
    grid-template-columns: 1fr;
  }
  .vf-stats__cell,
  .vf-stats__cell:nth-child(2) {
    border-right: 0;
  }
  .vf-stats__cell {
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
  }
  .vf-stats__cell:last-child {
    border-bottom: 0;
  }
  .vf-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   GRAIN / NOISE TEXTURE OVERLAY
   ========================================================================= */
.vf-grain {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

/* =========================================================================
   MOBILE MENU OVERLAY
   ========================================================================= */
.vf-nav-menu {
  position: fixed; inset: 0; z-index: 39;
  background: rgba(244,246,250,.97);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.vf-nav-menu__inner {
  width: 100%;
  max-width: 480px;
  padding: 48px 32px;
  display: flex; flex-direction: column; gap: 48px;
}
.vf-nav-menu__links {
  display: flex; flex-direction: column; gap: 4px;
}
.vf-nav-menu__link {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .5s cubic-bezier(0.22, 1, 0.36, 1),
    transform .5s cubic-bezier(0.22, 1, 0.36, 1),
    color .2s;
}
.vf-nav-menu__link:last-child { border-bottom: 0; }
.vf-nav-menu__link:hover { color: var(--accent); }
.vf-nav-menu.is-open .vf-nav-menu__link {
  opacity: 1;
  transform: translateY(0);
}
.vf-nav-menu.is-open .vf-nav-menu__link:nth-child(1) { transition-delay: .08s; }
.vf-nav-menu.is-open .vf-nav-menu__link:nth-child(2) { transition-delay: .13s; }
.vf-nav-menu.is-open .vf-nav-menu__link:nth-child(3) { transition-delay: .18s; }
.vf-nav-menu.is-open .vf-nav-menu__link:nth-child(4) { transition-delay: .23s; }
.vf-nav-menu.is-open .vf-nav-menu__link:nth-child(5) { transition-delay: .28s; }
.vf-nav-menu__foot {
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1) .35s, transform .5s cubic-bezier(0.22, 1, 0.36, 1) .35s;
}
.vf-nav-menu.is-open .vf-nav-menu__foot {
  opacity: 1;
  transform: translateY(0);
}
.vf-nav-menu__phone {
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: 0.06em;
  color: var(--muted); text-align: center;
}

/* =========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .vf-reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
    transition:
      opacity .9s cubic-bezier(0.22, 1, 0.36, 1),
      transform .9s cubic-bezier(0.22, 1, 0.36, 1),
      filter .7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .vf-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .vf-reveal[data-delay="1"] { transition-delay: .08s; }
  .vf-reveal[data-delay="2"] { transition-delay: .16s; }
  .vf-reveal[data-delay="3"] { transition-delay: .24s; }
  .vf-reveal[data-delay="4"] { transition-delay: .32s; }
}

/* =========================================================================
   HERO CINEMATIC ENTRANCE
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .vf-hero__copy {
    animation: vf-hero-enter 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: .05s;
  }
  .vf-hero__viz {
    animation: vf-hero-enter 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: .2s;
  }
  @keyframes vf-hero-enter {
    from {
      opacity: 0;
      transform: translateY(36px);
      filter: blur(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }
}

/* =========================================================================
   ENHANCED CARD DEPTH (Double-Bezel style via CSS)
   ========================================================================= */
/* Pricing summary outer shell feel */
.vf-pricing__summary {
  position: sticky; top: var(--sticky-top);
  align-self: start;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-ink), inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(255,255,255,.04);
}

/* Process detail enhanced */
.vf-process__detail {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 64px -20px rgba(10,22,40,.4), 0 8px 24px -8px rgba(10,22,40,.2);
}

/* Bio cards */
.vf-bio {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-1);
  transition: box-shadow .4s cubic-bezier(0.32, 0.72, 0, 1), transform .4s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-bio:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-2);
  transform: translateY(-2px);
}

/* Config cards enhanced */
.vf-config-card {
  transition:
    border-color .3s cubic-bezier(0.32, 0.72, 0, 1),
    transform .35s cubic-bezier(0.32, 0.72, 0, 1),
    background .3s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow .35s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-config-card.is-on {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-1), 0 0 0 2px var(--ink);
}

/* Section eyebrow pill enhanced */
.vf-section__num {
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 1px 3px rgba(10,22,40,.08);
}

/* Modal panel enhanced */
.vf-modal__panel {
  box-shadow: var(--shadow-ink), inset 0 1px 0 rgba(255,255,255,.9);
}

/* About sidebar cards enhanced */
.vf-about__card {
  border-radius: var(--radius-lg);
  transition: transform .4s cubic-bezier(0.32, 0.72, 0, 1), box-shadow .4s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-about__card:hover { transform: translateY(-2px); }
.vf-about__card:nth-child(1) {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 40px -12px rgba(10,22,40,.4);
}
.vf-about__card:nth-child(2) {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), var(--shadow-1);
}
.vf-about__card:nth-child(3) {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 12px 32px -10px rgba(31,111,235,.45);
}

/* =========================================================================
   STATS SECTION ENHANCED
   ========================================================================= */
.vf-stats__cell {
  transition: background .3s cubic-bezier(0.32, 0.72, 0, 1);
}
.vf-stats__cell:hover {
  background: rgba(255,255,255,.03);
}

/* =========================================================================
   MARQUEE PAUSE ON HOVER
   ========================================================================= */
.vf-marquee:hover .vf-marquee__track {
  animation-play-state: paused;
}

/* =========================================================================
   DESKTOP: hide mobile menu entirely
   ========================================================================= */
@media (min-width: 961px) {
  .vf-nav-menu { visibility: hidden !important; pointer-events: none !important; }
}

/* =========================================================================
   SECTION-STICKY SIDEBARS
   ========================================================================= */
@media (min-width: 961px) {
  .vf-pricing,
  .vf-pricing__layout,
  .vf-about,
  .vf-about__grid,
  .vf-final,
  .vf-final__inner,
  .vf-final__layout {
    overflow: visible;
  }

  .vf-pricing__summary,
  .vf-about__sidebar,
  .vf-final__card {
    position: sticky;
    top: var(--sticky-top);
    align-self: start;
    height: max-content;
    max-height: calc(100vh - var(--sticky-top) - 24px);
  }

  .vf-pricing__summary,
  .vf-final__card {
    overflow: auto;
    scrollbar-width: thin;
  }
}

@media (max-width: 960px) {
  .vf-pricing__summary,
  .vf-about__sidebar,
  .vf-final__card {
    position: static;
    max-height: none;
    overflow: visible;
  }
}

/* =========================================================================
   SKIP LINK (ACCESSIBILITY)
   ========================================================================= */
.vf-skip {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 10000;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-140%);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: var(--shadow-2);
}
.vf-skip:focus,
.vf-skip:focus-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* =========================================================================
   TABULAR NUMERALS — price, stats, counters
   ========================================================================= */
.vf-stats__value,
#price-onetime,
#price-monthly,
.vf-pkg__price,
.vf-summary__price {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* =========================================================================
   ACTIVE NAV LINK HIGHLIGHT
   ========================================================================= */
.vf-nav__links a[aria-current="true"],
.vf-nav__links a.is-active {
  color: var(--ink);
  font-weight: 600;
  position: relative;
}
.vf-nav__links a[aria-current="true"]::after,
.vf-nav__links a.is-active::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .3s cubic-bezier(0.32, 0.72, 0, 1);
}

/* =========================================================================
   FAQ TOUCH TARGET IMPROVEMENT (MOBILE)
   ========================================================================= */
@media (max-width: 768px) {
  .vf-faq__q {
    padding: 22px 4px;
    min-height: 64px;
  }
}

/* =========================================================================
   PARALLAX
   ========================================================================= */
[data-parallax] {
  will-change: transform;
}

/* Hero decorative glow orbs */
.vf-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}
.vf-hero__orb--1 {
  width: 520px; height: 520px;
  top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(31,111,235,.16) 0%, transparent 65%);
}
.vf-hero__orb--2 {
  width: 320px; height: 320px;
  bottom: 60px; left: -80px;
  background: radial-gradient(circle, rgba(31,111,235,.09) 0%, transparent 65%);
}
@media (max-width: 960px) {
  .vf-hero__orb--1 { width: 280px; height: 280px; top: -60px; right: -60px; }
  .vf-hero__orb--2 { display: none; }
}
