/* ============================================
   JordyIT — Full site styles
   Tokens from design system + component styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* ===== Brand ===== */
  --brand-purple:        #6E00C1;
  --brand-purple-600:    #5A00A0;
  --brand-purple-400:    #8A2BD9;
  --brand-purple-100:    #F1E6FA;
  --brand-purple-50:     #F8F2FD;

  --brand-grey:          #606060;
  --brand-grey-700:      #4A4A4A;
  --brand-grey-500:      #757575;
  --brand-grey-300:      #B8B8B8;
  --brand-grey-200:      #D6D6D6;
  --brand-grey-100:      #EDEDED;
  --brand-grey-50:       #F6F6F6;

  --white: #FFFFFF;
  --black: #121212;
  --ink:   #1F1F1F;

  /* Semantic */
  --success: #138A6E; --success-bg: #E3F4EF;
  --warning: #B4730A; --warning-bg: #FAEFD9;
  --danger:  #C21E5C; --danger-bg:  #FBE3EC;
  --info:    #3A3FBF; --info-bg:    #E6E7F8;

  --bg: var(--white);
  --bg-subtle: var(--brand-grey-50);
  --bg-muted:  var(--brand-grey-100);
  --bg-inverse: var(--ink);

  --fg: var(--ink);
  --fg-muted: var(--brand-grey);
  --fg-subtle: var(--brand-grey-500);
  --fg-on-brand: var(--white);
  --fg-brand: var(--brand-purple);

  --border: var(--brand-grey-200);
  --border-strong: var(--brand-grey-300);
  --border-brand: var(--brand-purple);

  --accent: var(--brand-purple);
  --accent-hover: var(--brand-purple-600);
  --accent-soft: var(--brand-purple-100);

  /* Type */
  --font-sans: 'Inter', 'Neue Haas Grotesk Text Pro', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;

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

  --lh-tight:  1.05;
  --lh-snug:   1.25;
  --lh-normal: 1.5;
  --lh-loose:  1.65;

  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.02em;
  --tracking-caps:   0.06em;

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

  /* Radii */
  --radius-xs: 2px; --radius-sm: 4px; --radius-md: 8px;
  --radius-lg: 12px; --radius-xl: 16px; --radius-2xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(18,18,18,0.05);
  --shadow-sm: 0 1px 3px rgba(18,18,18,0.07), 0 1px 2px rgba(18,18,18,0.04);
  --shadow-md: 0 4px 12px rgba(18,18,18,0.08), 0 2px 4px rgba(18,18,18,0.04);
  --shadow-lg: 0 12px 28px rgba(18,18,18,0.10), 0 4px 8px rgba(18,18,18,0.05);
  --shadow-xl: 0 24px 56px rgba(18,18,18,0.14);
  --shadow-focus: 0 0 0 3px rgba(110, 0, 193, 0.22);
  --shadow-brand: 0 12px 28px rgba(110, 0, 193, 0.28);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 320ms;

  /* Layout */
  --container-max: 1200px;
  --container-reading: 1040px;
  --container-narrow: 860px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: var(--lh-normal);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--brand-purple); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--brand-purple-600); }
button { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.h1, h1 {
  font-weight: var(--fw-black);
  font-size: clamp(44px, 7vw, 96px);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.h2, h2 {
  font-weight: var(--fw-black);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: var(--lh-tight);
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h3, h3 {
  font-weight: var(--fw-bold);
  font-size: clamp(22px, 2vw, 26px);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  margin: 0;
}
.h4, h4 {
  font-weight: var(--fw-semibold);
  font-size: 18px;
  line-height: var(--lh-snug);
  margin: 0;
}

p { margin: 0 0 1em; line-height: var(--lh-loose); text-wrap: pretty; }
.lead { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; color: var(--fg-muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--brand-purple);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px; background: var(--brand-purple); display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

.text-brand { color: var(--brand-purple); }
.text-muted { color: var(--fg-muted); }
.text-subtle { color: var(--fg-subtle); }
.mono { font-family: var(--font-mono); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-reading); }
.container--tight { max-width: var(--container-narrow); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--subtle { background: var(--bg-subtle); }
.section--wash { background: var(--brand-purple-50); }
.section--dark { background: var(--ink); color: #fff; }
.section--brand { background: var(--brand-purple); color: #fff; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 28px; }
.nav__links {
  display: flex; gap: 2px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.nav__link {
  padding: 10px 14px; font-size: 14px; font-weight: var(--fw-medium);
  color: var(--fg); border-radius: 6px;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.nav__link:hover { background: var(--bg-muted); color: var(--fg); }
.nav__link.is-active { color: var(--brand-purple); }
.nav__link.is-active::after {
  content: ""; display: block; height: 2px; background: var(--brand-purple);
  margin: 4px 14px -10px; border-radius: 2px;
}
.nav__right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex; border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 3px; background: #fff;
}
.lang-toggle button {
  border: none; background: transparent; padding: 5px 12px;
  font-size: 12px; font-weight: var(--fw-bold); letter-spacing: 0.04em;
  color: var(--fg-muted); border-radius: var(--radius-full);
  cursor: pointer; transition: all var(--dur-fast) var(--ease-out);
}
.lang-toggle button.is-active { background: var(--ink); color: #fff; }

/* Mobile nav */
.nav__menu-btn {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px; cursor: pointer;
}

@media (max-width: 860px) {
  .nav__links, .nav__right .btn { display: none; }
  .nav__menu-btn { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px; align-items: stretch;
  }
  .nav.is-open .nav__link { padding: 12px 8px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav.is-open .nav__link.is-active::after { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: var(--fw-semibold);
  border: 1px solid transparent; border-radius: 10px;
  cursor: pointer; text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn--sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; }
.btn--md { padding: 11px 20px; font-size: 15px; }
.btn--lg { padding: 15px 28px; font-size: 16px; border-radius: 12px; }

.btn--primary { background: var(--brand-purple); color: #fff; }
.btn--primary:hover { background: var(--brand-purple-600); color: #fff; box-shadow: var(--shadow-brand); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); box-shadow: none; }

.btn--secondary { background: #fff; color: var(--fg); border-color: var(--border-strong); }
.btn--secondary:hover { background: var(--bg-muted); color: var(--fg); }

.btn--ghost { background: transparent; color: var(--brand-purple); }
.btn--ghost:hover { background: var(--brand-purple-50); color: var(--brand-purple); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }

.btn--on-brand { background: #fff; color: var(--brand-purple); }
.btn--on-brand:hover { background: var(--brand-purple-50); color: var(--brand-purple-600); }

.btn--on-dark { background: #fff; color: var(--ink); }
.btn--on-dark:hover { background: var(--brand-purple-50); color: var(--brand-purple); }

.btn--ghost-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.btn--ghost-on-dark:hover { background: rgba(255,255,255,0.08); color: #fff; }

.btn svg { flex-shrink: 0; }

/* Focus */
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible,
.lang-toggle button:focus-visible {
  outline: none; box-shadow: var(--shadow-focus);
}
span.accent { color: var(--brand-purple); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0 clamp(64px, 9vw, 120px);
  background: #fff;
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px;
  align-items: center;
}
.hero__copy { max-width: 680px; }
.hero .lead { margin: 24px 0 32px; max-width: 560px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 48px; display: flex; gap: 28px; flex-wrap: wrap;
  color: var(--fg-muted); font-size: 14px;
}
.hero__meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta-item svg { color: var(--brand-purple); }

/* Decorative panel */
.hero__visual {
  position: relative; aspect-ratio: 1 / 1; max-width: 480px; margin-left: auto;
}
.hero__panel {
  position: absolute; inset: 0;
  background: var(--brand-purple); border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__panel-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero__panel-shape {
  position: absolute; background: var(--brand-purple-400);
  border-radius: var(--radius-2xl);
  opacity: 0.5;
}
.hero__panel-shape--a { width: 60%; height: 60%; top: -10%; right: -10%; transform: rotate(12deg); }
.hero__panel-shape--b { width: 40%; height: 40%; bottom: -10%; left: -5%; background: #fff; opacity: 0.18; transform: rotate(-8deg); }
.hero__panel-mark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero__panel-mark img {
  width: 48%; max-width: 220px; opacity: 0.95;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 360px; margin: 0 auto; }
}

/* Featured service card */
.service-card--featured {
  background: var(--brand-purple); color: #fff;
  border-color: transparent;
}
.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.14); color: #fff;
}
.service-card--featured p { color: rgba(255, 255, 255, 0.85); }
.service-card--featured .service-card__price { color: #fff; }
.service-card--featured .service-card__more { color: #fff; }
.service-card--featured .service-card__foot { border-top-color: rgba(255, 255, 255, 0.18); }
.service-card--featured:hover { background: var(--brand-purple-600, var(--brand-purple)); }

/* ============================================
   SECTION HEAD
   ============================================ */
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-top: 14px; }
.section-head .lead { margin-top: 16px; margin-bottom: 0; max-width: 640px; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease-out);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(110,0,193,0.04), transparent 50%);
  opacity: 0; transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--brand-purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--brand-purple-100); color: var(--brand-purple);
  display: inline-flex; align-items: center; justify-content: center;
}
.service-card h3 { font-size: 22px; font-weight: var(--fw-bold); letter-spacing: -0.01em; }
.service-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; margin: 0; }
.service-card__foot {
  margin-top: auto; padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.service-card__price { font-weight: var(--fw-black); font-size: 18px; letter-spacing: -0.02em; }
.service-card__more {
  color: var(--brand-purple); font-size: 14px; font-weight: var(--fw-semibold);
  display: inline-flex; align-items: center; gap: 4px;
}
.service-card:hover .service-card__more svg { transform: translateX(3px); }
.service-card__more svg { transition: transform var(--dur-base) var(--ease-out); }

/* ============================================
   FEATURE BLOCK / ABOUT TEASER
   ============================================ */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

.info-card {
  background: #fff; border-radius: var(--radius-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  padding: 32px;
}
.info-card__mark { height: 56px; margin-bottom: 20px; }
.info-card__portrait {
  width: 100%; aspect-ratio: 4 / 5; max-height: 240px;
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 24px; background: var(--brand-purple-100);
  box-shadow: var(--shadow-sm);
}
.info-card__portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  display: block;
}
.info-card dl {
  margin: 0; display: grid; grid-template-columns: 130px 1fr;
  row-gap: 12px; column-gap: 16px; font-size: 14px;
}
.info-card dt { color: var(--fg-muted); font-weight: var(--fw-regular); }
.info-card dd { margin: 0; font-weight: var(--fw-semibold); color: var(--fg); }
.info-card dd.mono { font-family: var(--font-mono); font-weight: var(--fw-semibold); }

.stats {
  display: flex; flex-wrap: wrap; gap: 32px; margin-top: 32px;
}
.stat__num {
  font-size: 36px; font-weight: var(--fw-black);
  letter-spacing: -0.02em; color: var(--brand-purple); line-height: 1;
}
.stat__label { font-size: 13px; color: var(--fg-muted); margin-top: 6px; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--brand-purple); color: #fff;
  border-radius: var(--radius-2xl);
  padding: clamp(48px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.14), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(0,0,0,0.15), transparent 50%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative; display: grid; grid-template-columns: 1.3fr auto;
  gap: 32px; align-items: center;
}
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 18px; margin: 0; max-width: 560px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   FORMS
   ============================================ */
.form {
  background: #fff; border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  color: var(--fg);
}
.form__field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: var(--fw-semibold); }
.form__field--full { grid-column: 1 / -1; }
.form__field input, .form__field select, .form__field textarea {
  font-family: inherit; font-size: 15px; font-weight: var(--fw-regular);
  padding: 12px 14px;
  border: 1px solid var(--border-strong); border-radius: 8px;
  background: #fff; color: var(--fg); width: 100%;
  transition: border var(--dur-fast), box-shadow var(--dur-fast);
}
.form__field input:hover, .form__field select:hover, .form__field textarea:hover { border-color: var(--brand-grey); }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  border-color: var(--brand-purple); outline: none; box-shadow: var(--shadow-focus);
}
.form__field textarea { min-height: 130px; resize: vertical; }
.form__actions {
  grid-column: 1 / -1; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px;
}
.form__note { font-size: 13px; color: var(--fg-subtle); }

.form__success {
  grid-column: 1 / -1; text-align: center; padding: 32px 8px;
}
.form__success-icon {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--success-bg); color: var(--success);
  display: inline-flex; align-items: center; justify-content: center;
}
.form__success h3 { margin: 16px 0 8px; font-size: 24px; font-weight: var(--fw-black); }
.form__success p { color: var(--fg-muted); margin: 0; }

@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }

/* ============================================
   CONTACT INFO LIST
   ============================================ */
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: center; font-size: 16px; }
.contact-list .icon-chip {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--brand-purple-100); color: var(--brand-purple);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-list--on-dark .icon-chip { background: rgba(200,157,255,0.16); color: #C89DFF; }
.contact-list--on-dark li { color: rgba(255,255,255,0.92); }
.contact-list--on-dark a { color: #fff; }

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: #fff;
}
.pricing-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; padding: 22px 28px;
  align-items: center;
  transition: background var(--dur-fast);
}
.pricing-row + .pricing-row { border-top: 1px solid var(--border); }
.pricing-row:hover { background: var(--brand-purple-50); }
.pricing-row__name { font-weight: var(--fw-bold); font-size: 17px; }
.pricing-row__detail { font-size: 14px; color: var(--fg-muted); margin-top: 4px; }
.pricing-row__price {
  font-weight: var(--fw-black); font-size: 20px;
  letter-spacing: -0.01em; color: var(--brand-purple);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .pricing-row { grid-template-columns: 1fr; gap: 10px; }
  .pricing-row__price { font-size: 22px; }
}

.pricing-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--fg-subtle); }

/* ============================================
   PROCESS / STEPS
   ============================================ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  position: relative;
}
.step__num {
  font-size: 13px; font-weight: var(--fw-black); letter-spacing: 0.06em;
  color: var(--brand-purple); margin-bottom: 12px;
}
.step h4 { font-size: 18px; font-weight: var(--fw-bold); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.6; }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: #fff;
}
@media (max-width: 800px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
.trust-strip__item {
  padding: 24px; display: flex; gap: 14px; align-items: center;
  border-left: 1px solid var(--border);
}
.trust-strip__item:first-child { border-left: 0; }
@media (max-width: 800px) { .trust-strip__item:nth-child(odd) { border-left: 0; } }
@media (max-width: 800px) { .trust-strip__item:nth-child(n+3) { border-top: 1px solid var(--border); } }
.trust-strip__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-purple-100); color: var(--brand-purple);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-strip__label { font-size: 13px; color: var(--fg-muted); }
.trust-strip__value { font-size: 15px; font-weight: var(--fw-bold); color: var(--fg); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: clamp(56px, 7vw, 80px) 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img {
  height: 30px; margin-bottom: 16px;
  /* Invert greyscale so the logo reads on dark */
  filter: brightness(0) invert(1);
}
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.65); max-width: 320px; margin: 0; line-height: 1.6; }
.footer__col h4 {
  font-size: 12px; font-weight: var(--fw-bold);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; margin: 0 0 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color var(--dur-fast); }
.footer__col a:hover { color: #fff; }
.footer__col li.mono { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,0.7); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ============================================
   BADGE / LOCATION TAG
   ============================================ */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--brand-purple-50); color: var(--brand-purple);
  font-size: 13px; font-weight: var(--fw-semibold);
  border: 1px solid var(--brand-purple-100);
}
.tag--dot::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px;
  background: var(--success); box-shadow: 0 0 0 3px rgba(19,138,110,0.2);
}

/* ============================================
   TWEAKS PANEL
   ============================================ */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  padding: 20px; width: 280px;
  font-size: 13px;
  display: none;
}
.tweaks-panel.is-open { display: block; }
.tweaks-panel h4 {
  font-size: 12px; font-weight: var(--fw-black); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-purple); margin: 0 0 14px;
}
.tweak-row { margin-bottom: 16px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-row label {
  display: block; font-size: 12px; font-weight: var(--fw-semibold);
  color: var(--fg-muted); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.tweak-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-opts button {
  flex: 1; min-width: 60px;
  padding: 8px 10px; border: 1px solid var(--border);
  background: #fff; color: var(--fg); border-radius: 8px;
  font-size: 12px; font-weight: var(--fw-semibold); cursor: pointer;
  transition: all var(--dur-fast);
}
.tweak-opts button:hover { border-color: var(--brand-grey); }
.tweak-opts button.is-active {
  background: var(--brand-purple); color: #fff; border-color: var(--brand-purple);
}

/* ============================================
   TWEAK VARIANTS
   ============================================ */
/* Accent density */
body[data-accent="bold"] .hero h1 span.accent { background: var(--brand-purple); color: #fff; padding: 0 12px; border-radius: 8px; }
body[data-accent="bold"] .service-card__icon { background: var(--brand-purple); color: #fff; }
body[data-accent="subtle"] .hero h1 span.accent { color: var(--fg); border-bottom: 4px solid var(--brand-purple); padding-bottom: 2px; }

/* Hero bg */
body[data-hero="wash"] .hero { background: var(--brand-purple-50); }
body[data-hero="dark"] .hero { background: var(--ink); color: #fff; }
body[data-hero="dark"] .hero h1 { color: #fff; }
body[data-hero="dark"] .hero .lead { color: rgba(255,255,255,0.75); }
body[data-hero="dark"] .hero__meta { color: rgba(255,255,255,0.75); }
body[data-hero="dark"] .hero__card { color: var(--fg); }
body[data-hero="dark"] .btn--secondary { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.25); }
body[data-hero="dark"] .btn--secondary:hover { background: rgba(255,255,255,0.18); }

/* Card style */
body[data-cards="filled"] .service-card { background: var(--bg-subtle); border-color: transparent; }
body[data-cards="filled"] .service-card:hover { background: #fff; border-color: var(--brand-purple); }

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }

/* Hide by lang */
[data-lang="en"] [data-nl] { display: none; }
[data-lang="nl"] [data-en] { display: none; }
