/* ════════════════════════════════════════════════════════════════
   VB ACCOUNTING — premium stylesheet
   ════════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* gold range pulled from the woven logo mark */
  --gold-deep:  #8A6D1E;
  --gold:       #B8902F;
  --gold-soft:  #C9A227;
  --champ:      #E6D3A3;
  --champ-hi:   #F1E6C8;

  /* ink + warm neutrals */
  --ink:        #15171F;
  --slate:      #232733;
  --muted:      #74767F;
  --paper:      #FBF9F4;
  --paper-2:    #F4EFE5;
  --card:       #FFFFFF;

  --line:       rgba(21,23,31,.08);
  --gold-line:  rgba(184,144,47,.24);

  --radius:     16px;
  --radius-sm:  11px;
  --shadow:     0 2px 8px rgba(21,23,31,.04), 0 12px 32px rgba(21,23,31,.06);
  --shadow-lg:  0 8px 24px rgba(21,23,31,.08), 0 28px 64px rgba(21,23,31,.12);
  --ring:       0 0 0 3px rgba(184,144,47,.14);
  --ease:       cubic-bezier(.22,.61,.36,1);
  --t:          .35s var(--ease);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --display-weight: 600;
  --display-spacing: -.01em;
  --maxw: 1140px;
}

/* font tweak presets applied via [data-display] on <html> */
html[data-display="playfair"]  { --font-display: 'Playfair Display', Georgia, serif; --display-weight: 600; --display-spacing: -.01em; }
html[data-display="cormorant"] { --font-display: 'Cormorant Garamond', Georgia, serif; --display-weight: 600; --display-spacing: 0; }
html[data-display="marcellus"] { --font-display: 'Marcellus', Georgia, serif; --display-weight: 400; --display-spacing: .01em; }
html[data-display="inter"]     { --font-display: 'Inter', system-ui, sans-serif; --display-weight: 800; --display-spacing: -.025em; }

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--champ); color: var(--ink); }

.display {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-spacing);
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 18px;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}
.nav-inner {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,249,244,.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  padding: 7px 7px 7px 16px;
  box-shadow: 0 10px 36px rgba(21,23,31,.12);
  transition: box-shadow var(--t), transform var(--t);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 14px;
  margin-right: 4px;
  border-right: 1px solid var(--line);
}
.nav-brand img { width: 26px; height: 26px; object-fit: contain; }
.nav-brand .nb-text {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 100px;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--gold-deep);
  background: rgba(184,144,47,.1);
}
.nav-cta {
  font-size: .85rem;
  font-weight: 600;
  color: var(--paper);
  background: var(--ink);
  padding: 10px 20px;
  border-radius: 100px;
  transition: background var(--t), transform var(--t);
}
.nav-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px 12px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-inner.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-inner.open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-inner.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px 96px;
  gap: 56px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-deep);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.1;
  margin-bottom: 34px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  position: relative;
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 470px;
}
.hero-tagline {
  font-size: .98rem;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary, .btn-outline, .btn-ghost {
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 11px;
  padding: 15px 28px;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  display: inline-flex; align-items: center; gap: 9px;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(230,211,163,.32) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(21,23,31,.22); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold-line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn-arrow { transition: transform var(--t); }
.btn-primary:hover .btn-arrow, .btn-outline:hover .btn-arrow { transform: translateX(3px); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  font-size: .82rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-trust strong { color: var(--ink); font-weight: 600; }

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-card {
  position: relative;
  z-index: 2;
  width: min(380px, 100%);
  aspect-ratio: 1/1;
  background: linear-gradient(165deg, #ffffff, var(--paper-2));
  border: 1px solid var(--gold-line);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-card .mark {
  width: 62%;
  animation: floaty 7s var(--ease) infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-12px) rotate(1.5deg); }
}
.hero-ring {
  position: absolute;
  inset: -8%;
  z-index: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(184,144,47,.22), transparent 55%, rgba(230,211,163,.3), transparent);
  filter: blur(2px);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.18), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.hero-chip {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero-chip .ci {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: rgba(184,144,47,.12);
  color: var(--gold-deep);
}
.hero-chip .ct { font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.hero-chip .cs { font-size: .72rem; color: var(--muted); }
.hero-chip.c1 { top: 8%; left: -6%; animation: floaty 6s var(--ease) infinite; }
.hero-chip.c2 { bottom: 10%; right: -8%; animation: floaty 8s var(--ease) infinite reverse; }
.hero-chip.c3 { top: 12%; right: -7%; animation: floaty 7s var(--ease) infinite; }
.hero-chip.c4 { bottom: 8%; left: -5%; animation: floaty 9s var(--ease) infinite reverse; }

/* ── SECTION SHELL ───────────────────────────────────────────── */
.section { padding: 104px 24px; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section.paper-2 { background: var(--paper-2); }
.section.ink { background: var(--ink); color: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-deep);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.section-title {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section.ink .section-title { color: var(--paper); }
.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}
.section-head { margin-bottom: 56px; }

/* ── SERVICES ────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--champ));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-line);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(184,144,47,.1);
  border: 1px solid var(--gold-line);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--gold-deep);
  transition: background var(--t), color var(--t);
}
.service-card:hover .service-icon { background: var(--gold); color: #fff; border-color: var(--gold); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.service-card p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 28px;
  align-items: stretch;
}
.pricing-card {
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 38px 36px;
  border: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-toggle {
  display: flex;
  background: var(--paper-2);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 30px;
  position: relative;
}
.pricing-toggle::before {
  content: '';
  position: absolute;
  top: 5px; bottom: 5px; left: 5px;
  width: calc(50% - 5px);
  background: var(--card);
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(21,23,31,.1);
  transition: transform .35s var(--ease);
}
.pricing-toggle[data-active="ven"]::before { transform: translateX(100%); }
.toggle-btn {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 12px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  transition: color var(--t);
}
.toggle-btn.active { color: var(--ink); }

.pricing-label {
  font-size: .76rem; font-weight: 600; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px;
}
.price-display { margin-bottom: 26px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; min-height: 62px; }
.price-amount {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 3.6rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.price-amount .currency { font-size: 1.7rem; vertical-align: super; color: var(--gold-deep); margin-right: 5px; }
.price-amount .period {
  font-family: 'Inter', sans-serif;
  font-size: .95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: 6px;
}
.price-onaanvraag {
  display: none;
  font-size: 2.4rem;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.complexity-pill {
  font-size: .74rem; font-weight: 700; color: var(--gold-deep);
  background: rgba(184,144,47,.12); border: 1px solid var(--gold-line);
  padding: 5px 12px; border-radius: 100px;
  align-self: center;
}
.price-note { font-size: .8rem; color: var(--muted); margin-bottom: 26px; }
.price-note-cta {
  position: absolute;
  left: 36px; right: 36px; bottom: 14px;
  text-align: center;
  margin: 0;
}

.slider-section { margin-bottom: 8px; }
.slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.slider-header span:first-child { font-size: .88rem; font-weight: 600; color: var(--ink); }
.invoice-count {
  font-size: .8rem; font-weight: 700; color: var(--gold-deep);
  background: rgba(184,144,47,.1); border: 1px solid var(--gold-line);
  padding: 4px 12px; border-radius: 100px;
}
input[type=range] {
  width: 100%; height: 6px;
  -webkit-appearance: none; appearance: none;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--slider-pct,0%), #e7e2d5 var(--slider-pct,0%), #e7e2d5 100%);
  border-radius: 4px; outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--card); border: 3px solid var(--gold);
  box-shadow: 0 2px 10px rgba(184,144,47,.45); cursor: pointer;
  transition: box-shadow var(--t), transform var(--t);
}
input[type=range]::-webkit-slider-thumb:hover { box-shadow: 0 4px 18px rgba(184,144,47,.6); transform: scale(1.08); }
input[type=range]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--card); border: 3px solid var(--gold);
  box-shadow: 0 2px 10px rgba(184,144,47,.45); cursor: pointer;
}
.slider-labels { display: flex; justify-content: space-between; margin-top: 10px; }
.slider-labels span { font-size: .72rem; color: var(--muted); }

.pricing-includes { margin: 28px 0; padding-top: 26px; border-top: 1px solid var(--line); }
.pricing-includes h4 {
  font-size: .78rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
}
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; }
.includes-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .87rem; color: var(--ink);
}
.includes-list li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.pricing-cta {
  margin-top: auto;
  width: 100%; padding: 16px;
  background: var(--ink); color: var(--paper);
  border: none; border-radius: 12px;
  font-family: inherit; font-size: 1rem; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.pricing-cta:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(21,23,31,.2); }
.pricing-cta:hover .btn-arrow { transform: translateX(3px); }

/* opstart panel — dark */
.opstart-panel {
  background: var(--ink);
  border-radius: 22px;
  padding: 38px 36px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.opstart-panel::before {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.22), transparent 65%);
}
.opstart-badge {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  background: rgba(201,162,39,.16); color: var(--champ);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
  border: 1px solid rgba(201,162,39,.3);
}
.opstart-panel h3 {
  font-family: var(--font-display); font-weight: var(--display-weight);
  font-size: 1.9rem; margin-bottom: 8px; letter-spacing: -.01em;
}
.opstart-panel > p { font-size: .92rem; color: rgba(255,255,255,.62); line-height: 1.6; margin-bottom: 30px; }
.opstart-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.opstart-option {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 22px 20px; text-align: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.opstart-option:hover, .opstart-option.sel {
  background: rgba(201,162,39,.16);
  border-color: rgba(201,162,39,.5);
  transform: translateY(-2px);
}
.opstart-option .op-type {
  font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 10px;
}
.opstart-option .op-price {
  font-family: var(--font-display); font-weight: var(--display-weight);
  font-size: 2.1rem; color: var(--champ); letter-spacing: -.01em;
}
.opstart-option .op-price sup { font-size: 1rem; }
.opstart-option .op-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.opstart-includes { margin-bottom: 28px; }
.opstart-includes li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .88rem; color: rgba(255,255,255,.72); margin-bottom: 12px;
}
.opstart-includes li svg { width: 16px; height: 16px; color: var(--champ); flex-shrink: 0; margin-top: 2px; }
.opstart-cta {
  margin-top: auto; width: 100%; padding: 16px;
  background: var(--gold); color: #fff;
  border: none; border-radius: 12px;
  font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.opstart-cta:hover { background: var(--champ); color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201,162,39,.4); }
.opstart-cta:hover .btn-arrow { transform: translateX(3px); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info > p { font-size: 1.02rem; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 380px; }
.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-person .cp-photo {
  width: 104px; height: 104px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-line);
  box-shadow: 0 6px 18px rgba(21,23,31,.12);
  flex-shrink: 0;
}
.contact-person .cp-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.contact-person .cp-role { font-size: .85rem; color: var(--gold-deep); margin-top: 3px; }
.contact-detail { display: flex; align-items: center; gap: 15px; margin-bottom: 22px; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(184,144,47,.1); border: 1px solid var(--gold-line);
  display: grid; place-items: center; color: var(--gold-deep); flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail-text .label {
  font-size: .72rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
}
.contact-detail-text .value { font-size: .96rem; font-weight: 600; color: var(--ink); }
a.contact-detail { transition: transform var(--t); }
a.contact-detail:hover { transform: translateX(3px); }
a.contact-detail:hover .contact-icon { background: var(--gold); color: #fff; border-color: var(--gold); }

.contact-form {
  background: var(--card);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid #e6e1d5; border-radius: 11px;
  font-family: inherit; font-size: .92rem; color: var(--ink);
  background: var(--paper); outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: var(--ring); background: var(--card);
}
.form-group.err input, .form-group.err textarea, .form-group.err select { border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,.12); }
.form-error { font-size: .76rem; color: #d9534f; margin-top: 6px; display: none; }
.form-group.err .form-error { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--ink); color: var(--paper);
  border: none; border-radius: 12px;
  font-family: inherit; font-size: 1rem; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 6px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.form-submit:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(21,23,31,.2); }
.form-submit:disabled { opacity: .6; cursor: progress; transform: none; }

/* success overlay */
.form-success {
  position: absolute; inset: 0;
  background: var(--card); border-radius: 22px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
  opacity: 0; pointer-events: none; transform: scale(.97);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.form-success.show { opacity: 1; pointer-events: all; transform: scale(1); }
.success-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(184,144,47,.12); border: 1px solid var(--gold-line);
  display: grid; place-items: center; margin-bottom: 22px;
  color: var(--gold-deep);
}
.success-check svg { width: 34px; height: 34px; }
.form-success h3 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 1.7rem; margin-bottom: 10px; color: var(--ink); }
.form-success p { font-size: .95rem; color: var(--muted); max-width: 320px; }
.success-reset {
  margin-top: 24px; background: none; border: 1px solid var(--gold-line);
  color: var(--gold-deep); font-family: inherit; font-weight: 600; font-size: .88rem;
  padding: 11px 22px; border-radius: 100px; cursor: pointer; transition: background var(--t);
}
.success-reset:hover { background: rgba(184,144,47,.1); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 56px 24px 36px;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand .fb-name {
  font-size: .95rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--paper);
}
.footer-brand .fb-sub { font-size: .76rem; color: rgba(255,255,255,.45); letter-spacing: .04em; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--t); }
.footer-links a:hover { color: var(--champ); }
.footer-bottom {
  max-width: var(--maxw); margin: 24px auto 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.4);
}
.footer-bottom strong { color: var(--champ); font-weight: 600; }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-card .mark, .hero-ring, .hero-chip { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-brand .nb-text { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 56px 22px 72px; gap: 40px; }
  .hero-visual { min-height: 340px; order: -1; }
  .hero-card { width: min(300px, 80%); }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-inner.open { flex-direction: column; align-items: stretch; border-radius: 22px; padding: 14px; gap: 4px; }
  .nav-inner.open .nav-brand { border-right: none; border-bottom: 1px solid var(--line); padding: 4px 8px 12px; margin: 0 0 6px; }
  .nav-inner.open .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-inner.open .nav-links a { padding: 12px 14px; }
  .nav-inner.open .nav-cta { display: block; text-align: center; margin-top: 6px; }
  .nav-hamburger { display: flex; }
  .nav-inner.open .nav-hamburger { position: absolute; top: 12px; right: 14px; }
  .section { padding: 72px 22px; }
  .hero-chip { display: none; }
  .includes-list { grid-template-columns: 1fr; }
  .opstart-options { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
}
