/* ============================================================
   Amazon Advies — fresh redesign
   Design tokens + components
   ============================================================ */

:root {
  /* Brand base */
  --navy:        #15273E;   /* ink, headings, dark sections */
  --navy-700:    #1E3656;
  --navy-600:    #2B486B;
  --paper:       #FBFAF6;   /* page background, warm off-white */
  --paper-2:     #F2EFE7;   /* alt band */
  --white:       #FFFFFF;

  /* Accents (tweakable) */
  --cta:         #FB5436;   /* primary CTA — special orange-red */
  --cta-deep:    #E23D20;
  --orange:      #FF9D17;   /* Amazon-smile brand accent */
  --accent:      #12B5A0;   /* fresh secondary accent */
  --accent-deep: #0E9485;
  --butter:      #FFCE4D;   /* playful highlight */
  --sky:         #3D7BF0;

  /* Text */
  --ink:         #15273E;
  --muted:       #586579;
  --muted-2:     #8A93A1;
  --on-dark:     #F4F1EA;
  --on-dark-mut: #A9B4C4;

  /* Lines & surfaces */
  --rule:        color-mix(in srgb, var(--navy) 12%, transparent);
  --rule-strong: color-mix(in srgb, var(--navy) 20%, transparent);
  --card:        #FFFFFF;

  /* Type */
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-sans:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

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

  /* Shadows (soft, slightly warm) */
  --sh-sm: 0 1px 2px rgba(21,39,62,.06), 0 2px 8px rgba(21,39,62,.05);
  --sh-md: 0 8px 24px rgba(21,39,62,.08), 0 2px 6px rgba(21,39,62,.05);
  --sh-lg: 0 24px 60px rgba(21,39,62,.14), 0 6px 16px rgba(21,39,62,.07);
  --sh-cta: 0 10px 26px color-mix(in srgb, var(--cta) 36%, transparent);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--butter); }
.eyebrow.on-dark::before { background: var(--butter); }

.ital {
  font-style: italic;
  font-family: var(--font-display);
}
.hl {
  color: var(--cta);
}
/* hand-drawn marker under a word */
.mark {
  position: relative;
  white-space: nowrap;
}
.mark > svg {
  position: absolute;
  left: -4%; bottom: -.18em;
  width: 108%; height: .5em;
  overflow: visible;
  pointer-events: none;
}
.mark > svg path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
}
[data-reveal].is-in .mark > svg path,
.mark.draw svg path { animation: draw 0.9s var(--ease-out) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--cta);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-cta); }
.btn:hover .arr { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--navy);
  border-color: var(--rule-strong);
}
.btn--ghost:hover { box-shadow: none; background: var(--navy); --fg: #fff; border-color: var(--navy); }
.btn--ink { --bg: var(--navy); --fg: #fff; }
.btn--ink:hover { box-shadow: 0 10px 26px rgba(21,39,62,.28); }
.btn--light { --bg: #fff; --fg: var(--navy); }
.btn--light:hover { box-shadow: var(--sh-lg); }
.btn--sm { padding: 11px 18px; font-size: 14px; }

.arr { width: 18px; height: 18px; flex: none; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled {
  border-color: var(--rule);
  box-shadow: 0 4px 20px rgba(21,39,62,.05);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo__img {
  height: 40px;
  width: auto;
  display: block;
}
.logo__img--foot { height: 42px; margin-bottom: 16px; }
.logo__mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--navy);
  display: grid; place-items: center;
  position: relative;
  flex: none;
}
.logo__mark svg { width: 23px; height: 23px; }
.logo small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 1px;
}
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  padding: 9px 13px;
  border-radius: var(--r-pill);
  transition: background .2s, color .2s;
}
.nav__links a:hover { background: color-mix(in srgb, var(--navy) 7%, transparent); }
.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.lang {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.lang button {
  border: 0; background: transparent; cursor: pointer;
  padding: 6px 11px; color: var(--muted);
  font: inherit;
}
.lang button[aria-pressed="true"] { background: var(--navy); color: #fff; }
.nav__burger { display: none; }

/* ---------- section scaffolding ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head h2 {
  font-size: clamp(32px, 4.6vw, 54px);
  margin-top: 16px;
}
.sec-head p { color: var(--muted); font-size: 19px; margin-top: 18px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: var(--sh-sm);
  padding: 7px 7px 7px 14px;
  border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  margin-bottom: 26px;
}
.hero__badge b { color: var(--cta); }
.hero__badge .pill {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  background: var(--navy); color:#fff; padding: 4px 9px; border-radius: var(--r-pill);
  letter-spacing: .04em;
}
.hero h1 {
  font-size: clamp(42px, 6.6vw, 84px);
  letter-spacing: -0.03em;
}
.hero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--muted);
  max-width: 34ch;
  margin-top: 26px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats {
  display: flex; gap: clamp(20px,4vw,44px);
  margin-top: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.hero__stats .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stats .num span { color: var(--cta); }
.hero__stats .lbl { font-size: 13.5px; color: var(--muted); margin-top: 7px; }

/* ---- "strak" hero variant: centered, no side composition ---- */
html[data-hero="strak"] .hero__grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
html[data-hero="strak"] .hero__art { display: none; }
html[data-hero="strak"] .hero__sub { max-width: 52ch; }
html[data-hero="strak"] .hero__cta,
html[data-hero="strak"] .hero__stats { justify-content: center; }
html[data-hero="strak"] .hero h1 { font-size: clamp(44px, 7.5vw, 92px); max-width: 16ch; }
html[data-hero="strak"] .hero { padding-bottom: clamp(48px, 6vw, 90px); }

/* hero visual composition */
.hero__art {
  position: relative;
  min-height: 480px;
}
.blob {
  position: absolute;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  filter: blur(2px);
  opacity: .9;
  z-index: 0;
}
.blob--1 { width: 340px; height: 340px; background: color-mix(in srgb,var(--accent) 28%, var(--paper)); top: -20px; right: 10px; animation: float1 9s var(--ease) infinite; }
.blob--2 { width: 220px; height: 220px; background: color-mix(in srgb,var(--butter) 55%, var(--paper)); bottom: 10px; left: -10px; animation: float2 11s var(--ease) infinite; }
.rings {
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center; pointer-events: none;
}
.rings span {
  position: absolute; border: 1.5px solid color-mix(in srgb,var(--navy) 12%, transparent);
  border-radius: 50%;
}
.rings span:nth-child(1){ width: 200px; height: 200px;}
.rings span:nth-child(2){ width: 330px; height: 330px;}
.rings span:nth-child(3){ width: 460px; height: 460px;}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--rule);
  z-index: 2;
}
/* main growth card */
.card-growth {
  width: min(360px, 78%);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  padding: 22px;
  animation: bobby 7s var(--ease) infinite;
}
.card-growth .cg-head { display:flex; align-items:center; justify-content:space-between; margin-bottom: 6px;}
.card-growth .cg-title { font-weight: 700; font-size: 14px; color: var(--muted); }
.card-growth .cg-up { font-family: var(--font-mono); font-size:12px; font-weight:700; color: var(--accent-deep); background: color-mix(in srgb,var(--accent) 14%, transparent); padding: 3px 9px; border-radius: var(--r-pill);}
.card-growth .cg-val { font-family: var(--font-display); font-weight:700; font-size: 34px; color: var(--navy); letter-spacing:-.02em; }
.card-growth .cg-val small { font-size: 16px; color: var(--muted); font-weight:600;}
.bars { display:flex; align-items:flex-end; gap: 9px; height: 92px; margin-top: 18px; }
.bars i {
  flex:1; border-radius: 6px 6px 3px 3px; display:block;
  background: color-mix(in srgb,var(--navy) 12%, var(--paper));
  transform-origin: bottom; transform: scaleY(.12);
}
.bars i:nth-child(4){ background: var(--cta); }
.bars i:nth-child(5){ background: var(--cta); }
.is-in .bars i { animation: grow .9s var(--ease-out) forwards; }
.is-in .bars i:nth-child(1){ animation-delay:.05s } .is-in .bars i:nth-child(2){ animation-delay:.14s }
.is-in .bars i:nth-child(3){ animation-delay:.23s } .is-in .bars i:nth-child(4){ animation-delay:.32s }
.is-in .bars i:nth-child(5){ animation-delay:.41s }

.chip-note {
  display:flex; align-items:center; gap:11px;
  padding: 13px 16px; width: max-content;
}
.chip-note .ico { width: 34px; height: 34px; border-radius: 50%; display:grid; place-items:center; flex:none;}
.chip-note .t { font-size: 13px; font-weight: 700; color: var(--navy); line-height:1.25; }
.chip-note .t span { display:block; font-weight: 500; color: var(--muted); font-size: 12px;}
.note-1 { top: 22px; left: -14px; animation: bob2 6s var(--ease) infinite; }
.note-1 .ico { background: color-mix(in srgb,var(--accent) 18%, transparent); color: var(--accent-deep); }
.note-2 { bottom: 34px; right: -10px; animation: bob3 8s var(--ease) infinite .4s; }
.note-2 .ico { background: color-mix(in srgb,var(--butter) 40%, transparent); color: #9A6B00; }
.note-3 { bottom: -6px; left: 30px; animation: bob2 7s var(--ease) infinite .8s; }
.note-3 .ico { background: color-mix(in srgb,var(--cta) 16%, transparent); color: var(--cta-deep); }

.stars { color: var(--orange); letter-spacing: 1px; font-size: 13px; }

@keyframes float1 { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(-14px,18px) rotate(8deg)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(12px,-14px)} }
@keyframes bobby { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,calc(-50% - 12px))} }
@keyframes bob2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes bob3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(11px)} }
@keyframes grow { to { transform: scaleY(var(--h, .6)); } }

/* ============================================================
   MARQUEE (brand logos)
   ============================================================ */
.marquee-band {
  background: var(--white);
  border-block: 1px solid var(--rule);
  padding-block: 30px;
}
.marquee-band .lead {
  text-align: center; font-family: var(--font-mono); font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 22px;
}
.marquee { display: flex; gap: 18px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee__track { display: flex; gap: 18px; align-items:center; animation: scroll-x 38s linear infinite; flex: none; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.brand-chip {
  flex: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  opacity: .55;
  padding: 10px 22px;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: opacity .2s, color .2s, border-color .2s;
}
.brand-chip:hover { opacity: 1; color: var(--cta); border-color: color-mix(in srgb,var(--cta) 40%, transparent); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   NOTENDOP — feature stats
   ============================================================ */
.notendop { background: var(--paper-2); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.feat {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feat .ico {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.feat .ico svg { width: 26px; height: 26px; }
.feat h3 { font-size: 20px; margin-bottom: 7px; }
.feat p { color: var(--muted); font-size: 15px; }
.feat .big { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; color: var(--navy); letter-spacing:-.02em; line-height: 1.06; overflow-wrap: break-word; hyphens: auto; }

/* ============================================================
   DIENSTEN (what we do)
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.svc__no { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--muted-2); }
.svc h3 { font-size: 22px; margin: 14px 0 9px; }
.svc p { color: var(--muted); font-size: 15px; }
.svc__ico {
  position: absolute; top: 24px; right: 24px;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
}
.svc__ico svg { width: 22px; height: 22px; }
.svc__bar { height: 4px; border-radius: 4px; margin-top: 20px; width: 38px; transition: width .4s var(--ease); }
.svc:hover .svc__bar { width: 100%; }

/* ============================================================
   PAKKETTEN (pricing)
   ============================================================ */
.pricing { background: var(--navy); color: var(--on-dark); position: relative; overflow: hidden; }
.pricing .sec-head h2, .pricing .feat h3 { color: #fff; }
.pricing .sec-head p { color: var(--on-dark-mut); }
.price-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
  align-items: start;
}
.plan {
  background: color-mix(in srgb, var(--navy-700) 70%, #fff 4%);
  border: 1px solid color-mix(in srgb,#fff 12%, transparent);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .35s var(--ease);
}
.plan:hover { transform: translateY(-6px); }
.plan--feat {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-lg);
  position: relative;
}
.plan__tag {
  position:absolute; top:-13px; left:30px;
  font-family: var(--font-mono); font-size: 11px; font-weight:700; letter-spacing:.08em;
  background: var(--cta); color:#fff; padding: 5px 12px; border-radius: var(--r-pill);
  text-transform: uppercase;
}
.plan__name { font-family: var(--font-display); font-weight:700; font-size: 24px; }
.plan--feat .plan__name { color: var(--navy); }
.plan__name + p { font-size: 14px; margin-top:8px; color: var(--on-dark-mut); min-height: 42px; }
.plan--feat .plan__name + p { color: var(--muted); }
.plan__price { font-family: var(--font-display); font-weight: 700; font-size: 40px; letter-spacing:-.02em; margin: 18px 0 6px; }
.plan--feat .plan__price { color: var(--navy); }
.plan__price s { font-size: 20px; color: var(--on-dark-mut); font-weight:400; margin-right:8px; }
.plan__price small { font-size: 15px; font-weight: 500; color: var(--on-dark-mut); }
.plan ul { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 11px; }
.plan li { display:flex; gap: 11px; align-items:flex-start; font-size: 14.5px; color: var(--on-dark-mut); }
.plan--feat li { color: var(--muted); }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--accent); }
.plan--feat li svg { color: var(--accent-deep); }
.plan .btn { width: 100%; justify-content: center; }

/* small services strip */
.mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.mini {
  display:flex; align-items:center; gap: 14px;
  color: var(--ink);
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-md);
  padding: 16px 18px; transition: transform .25s var(--ease), border-color .25s;
}
.mini:hover { transform: translateY(-3px); border-color: color-mix(in srgb,var(--cta) 40%, transparent); }
.mini .pr { font-family: var(--font-display); font-weight:700; color: var(--cta); font-size: 17px; white-space:nowrap; }
.mini .nm { font-weight: 600; font-size: 14.5px; line-height: 1.3; }
.mini .nm span { display:block; color: var(--muted); font-weight: 500; font-size: 12.5px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.team-people { display: flex; gap: 18px; }
.person { flex: 1; }
.person__photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  border: 1px solid var(--rule);
}
.person__photo .initial {
  font-family: var(--font-display); font-weight: 700; font-size: 90px; color: #fff; opacity:.92;
}
.person__photo::after {
  content: "Foto"; position: absolute; bottom: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing:.1em; text-transform:uppercase;
  color: #fff; opacity: .7; border:1px solid rgba(255,255,255,.5); padding: 2px 7px; border-radius: var(--r-pill);
}
.person h4 { font-size: 19px; margin-top: 16px; }
.person .role { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); letter-spacing:.04em; }
.team-copy h2 { font-size: clamp(30px,4vw,48px); }
.team-copy p { color: var(--muted); font-size: 18px; margin-top: 20px; }
.team-copy .quote {
  font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--navy);
  line-height: 1.4; border-left: 3px solid var(--cta); padding-left: 20px; margin: 26px 0;
}
.team-badges { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 26px; }
.tbadge {
  display:flex; align-items:center; gap:9px; font-size: 13px; font-weight: 700; color: var(--navy);
  background: var(--white); border:1px solid var(--rule); border-radius: var(--r-pill); padding: 8px 15px;
}
.tbadge .dot { width: 9px; height: 9px; border-radius:50%; background: var(--accent); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper-2); }
.rev-top { display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap: 24px; margin-bottom: 44px; }
.score {
  display:flex; align-items:center; gap: 20px;
  background: var(--white); border:1px solid var(--rule); border-radius: var(--r-lg);
  padding: 20px 26px; box-shadow: var(--sh-sm);
}
.score__big { font-family: var(--font-display); font-weight:700; font-size: 54px; color: var(--navy); line-height:.9; letter-spacing:-.02em;}
.score__big sub { font-size: 22px; color: var(--muted-2); font-weight: 400; vertical-align: baseline; }
.score__meta .stars { font-size: 18px; }
.score__meta .t { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.rev-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rev {
  background: var(--white); border:1px solid var(--rule); border-radius: var(--r-lg);
  padding: 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.rev:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.rev .stars { font-size: 15px; margin-bottom: 14px; }
.rev p { font-size: 16px; color: var(--navy); }
.rev__by { display:flex; align-items:center; gap: 12px; margin-top: 20px; }
.rev__av { width: 38px; height:38px; border-radius:50%; display:grid; place-items:center; color:#fff; font-weight:700; font-family:var(--font-display); flex:none; }
.rev__by .n { display: block; font-weight: 700; font-size: 14px; }
.rev__by .c { display: block; font-size: 12.5px; color: var(--muted); }

/* ============================================================
   KENNISBANK / BLOG
   ============================================================ */
.kb-head { display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap: 24px; margin-bottom: 40px; }
.kb-search {
  display:flex; align-items:center; gap:10px;
  background: var(--white); border:1px solid var(--rule-strong); border-radius: var(--r-pill);
  padding: 11px 18px; min-width: 280px; box-shadow: var(--sh-sm);
}
.kb-search input { border:0; outline:0; font: inherit; font-size: 15px; background:transparent; width:100%; color: var(--ink); }
.kb-search svg { width: 19px; height:19px; color: var(--muted-2); flex:none; }
.kb-cats { display:flex; flex-wrap:wrap; gap:9px; margin-bottom: 28px; }
.kb-cat {
  font-family: var(--font-mono); font-size: 12.5px; font-weight:700; letter-spacing:.03em;
  padding: 7px 14px; border-radius: var(--r-pill); border:1px solid var(--rule-strong);
  background: var(--white); color: var(--muted); cursor:pointer; transition: all .2s;
}
.kb-cat:hover { border-color: var(--navy); color: var(--navy); }
.kb-cat.active { background: var(--navy); color:#fff; border-color: var(--navy); }
.kb-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.post {
  display:flex; flex-direction:column;
  background: var(--white); border:1px solid var(--rule); border-radius: var(--r-lg);
  overflow:hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.post__img {
  aspect-ratio: 16/9; position: relative; overflow:hidden;
  display:grid; place-items:center;
}
.post__img .glyph { font-family: var(--font-display); font-weight:700; font-size: 44px; color:#fff; opacity:.9; }
.post__cat {
  position:absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 11px; font-weight:700; letter-spacing:.05em;
  background: rgba(255,255,255,.95); color: var(--navy); padding: 5px 11px; border-radius: var(--r-pill);
}
.post__body { padding: 22px; display:flex; flex-direction:column; flex:1; }
.post__date { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); }
.post h3 { font-size: 19px; margin: 11px 0 0; line-height: 1.22; }
.post .read { margin-top: auto; padding-top: 18px; display:flex; align-items:center; gap:8px; font-weight:700; font-size:14px; color: var(--cta); }
.post:hover .read .arr { transform: translateX(4px); }
.post .read .arr { transition: transform .3s var(--ease); }

/* ============================================================
   CONSULT CTA
   ============================================================ */
.consult { position: relative; }
.consult__card {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: clamp(34px, 5vw, 64px);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.consult__card h2 { color: #fff; font-size: clamp(30px, 4vw, 50px); }
.consult__card .sub { color: var(--on-dark-mut); font-size: 19px; margin-top: 18px; max-width: 42ch; }
.consult__cta { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 30px; }
.consult__side { display: grid; gap: 14px; position: relative; z-index: 2; }
.cside {
  display:flex; align-items:center; gap: 14px;
  background: color-mix(in srgb,#fff 8%, transparent);
  border: 1px solid color-mix(in srgb,#fff 14%, transparent);
  border-radius: var(--r-md); padding: 16px 18px;
}
.cside .ico { width:40px;height:40px;border-radius:11px;display:grid;place-items:center;flex:none;background: color-mix(in srgb,var(--butter) 80%, transparent);color:var(--navy);}
.cside .t { font-weight:700; font-size: 15px; color:#fff;}
.cside .t span { display:block; font-weight:500; color: var(--on-dark-mut); font-size:13px;}
.consult .rings span { border-color: rgba(255,255,255,.08); }

/* ============================================================
   FOOTER (clean, compact)
   ============================================================ */
.footer { background: var(--navy); color: var(--on-dark-mut); padding-top: 64px; }
.footer a { transition: color .2s; }
.footer a:hover { color: #fff; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand .logo { color: #fff; margin-bottom: 16px; }
.foot-brand .logo__mark { background: #fff; }
.foot-brand .logo__mark svg path { stroke: var(--navy); }
.foot-brand p { font-size: 14.5px; max-width: 30ch; }
.foot-soc { display:flex; gap: 10px; margin-top: 20px; }
.foot-soc a { width: 38px; height:38px; border-radius:11px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.15); color:#fff; }
.foot-soc a:hover { background: var(--cta); border-color: var(--cta); }
.foot-col h5 { color:#fff; font-family: var(--font-mono); font-size: 12px; letter-spacing:.1em; text-transform:uppercase; margin:0 0 16px; font-weight:700; }
.foot-col ul { list-style:none; margin:0; padding:0; display:grid; gap: 11px; }
.foot-col a { font-size: 14.5px; }
.foot-bottom { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap: 16px; padding: 22px 0 30px; font-size: 13px; }
.foot-bottom .legal { display:flex; gap: 18px; flex-wrap:wrap; }
.foot-rev { display:flex; align-items:center; gap:10px; font-size: 13px; }
.foot-rev b { color:#fff; }
.foot-rev .badge { background: color-mix(in srgb,#fff 10%, transparent); border:1px solid rgba(255,255,255,.14); border-radius: var(--r-pill); padding: 5px 12px; font-family: var(--font-mono); font-weight:700; color: var(--butter); }

/* ============================================================
   reveal animation — OPACITY IS ALWAYS 1 (never tied to a JS-undone
   state), so content is fully visible in every static / frozen /
   offscreen / print context. The entrance is a transform-only slide:
   JS adds .armed to below-fold elements (snap down), and removing it
   (.is-in) slides them up. If a transition never progresses, the worst
   case is a small offset — still fully readable.
   ============================================================ */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: transform .7s var(--ease-out);
  will-change: transform;
}
[data-reveal].armed:not(.is-in) {
  transform: translateY(34px);
  transition: none;
}
[data-reveal][data-delay="1"]{ transition-delay:.08s } [data-reveal][data-delay="2"]{ transition-delay:.16s }
[data-reveal][data-delay="3"]{ transition-delay:.24s } [data-reveal][data-delay="4"]{ transition-delay:.32s }
[data-reveal][data-delay="5"]{ transition-delay:.40s }

@media print {
  [data-reveal], [data-reveal].armed { opacity: 1 !important; transform: none !important; }
}

/* motion off */
html[data-motion="off"] *,
html[data-motion="off"] *::before,
html[data-motion="off"] *::after {
  animation: none !important;
  transition: none !important;
}
html[data-motion="off"] [data-reveal] { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  [data-reveal], [data-reveal].armed { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { min-height: 380px; order: -1; }
  .svc-grid, .price-grid, .rev-grid, .kb-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid, .consult__card { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mini-grid { grid-template-columns: repeat(2,1fr); }
  .nav__links { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .svc-grid, .price-grid, .rev-grid, .kb-grid, .feat-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 22px; }
  .team-people { flex-direction: column; max-width: 260px; }
  .foot-top { grid-template-columns: 1fr; }
  .lang { display: none; }
  .plan--feat { order: -1; }
}

/* ============================================================
   team photo (real portrait) modifier
   ============================================================ */
.person__photo--photo { background-size: cover; background-position: center 18%; }
.person__photo--photo .initial { display: none; }
.person__photo--photo::after { display: none; }

/* ============================================================
   shared form fields (chat widget + contact page)
   ============================================================ */
.field { display: grid; gap: 7px; }
.field > label {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}
.field > label .req { color: var(--cta); }
.fld {
  font-family: var(--font-sans); font-size: 15.5px; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--rule-strong); border-radius: var(--r-md);
  padding: 12px 14px; width: 100%; transition: border-color .2s, box-shadow .2s; outline: none;
}
.fld::placeholder { color: var(--muted-2); }
.fld:focus { border-color: var(--cta); box-shadow: 0 0 0 4px color-mix(in srgb, var(--cta) 14%, transparent); }
textarea.fld { resize: vertical; min-height: 96px; line-height: 1.5; }
select.fld { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23586579' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; cursor: pointer; }
.fld.err { border-color: var(--cta); }
