/* ==========================================================================
   Webotique — huisstijl & website stijl
   Marineblauw #0A2540 (hoofdkleur) · Cyaan #12A6C9 (accent)
   ========================================================================== */

:root {
  --navy: #0A2540;
  --navy-700: #102f50;
  --navy-600: #173a61;
  --cyan: #12A6C9;
  --cyan-dark: #0d8aa8;
  --cyan-light: #e6f6fa;
  --ink: #0A2540;
  --body: #41506b;
  --muted: #6b7890;
  --line: #e4e8f0;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, .06), 0 4px 14px rgba(10, 37, 64, .06);
  --shadow-md: 0 10px 30px rgba(10, 37, 64, .12);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, .18);
  --maxw: 1160px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Space Grotesk', var(--font);
}

/* --- reset --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--cyan-dark); text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* --- layout helpers --- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #cdd6e4; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--cyan); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 620px; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 52px; }

/* --- buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--cyan); color: #fff; box-shadow: 0 8px 20px rgba(18,166,201,.32); }
.btn--primary:hover { background: var(--cyan-dark); box-shadow: 0 10px 26px rgba(18,166,201,.42); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan-dark); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--cyan-light); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* --- header / nav --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav__logo { display: flex; align-items: center; gap: 11px; }
.nav__logo .mono { height: 32px; width: auto; }
.nav__logo .name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.nav__links {
  display: flex; align-items: center; gap: 34px;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink);
  position: relative;
}
.nav__links a:hover { color: var(--cyan-dark); }
.nav__links a.active { color: var(--cyan-dark); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--cyan); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  margin: 4px auto; border-radius: 2px; transition: .25s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- hero --- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(18,166,201,.28), transparent 60%),
    radial-gradient(700px 480px at 0% 110%, rgba(18,166,201,.14), transparent 55%),
    var(--navy);
  color: #d6deea;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 104px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: var(--cyan); }
.hero p.lead { color: #aebaccd0; font-size: 1.16rem; max-width: 540px; }
.hero .btn-row { margin-top: 30px; }
.hero__stats {
  display: flex; gap: 38px; margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 26px;
}
.hero__stats .num {
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: #fff;
}
.hero__stats .label { font-size: .86rem; color: #92a0b6; }

/* hero visual card */
.hero__visual { position: relative; }
.hero-card {
  background: linear-gradient(180deg, #ffffff, #f4f8fb);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 22px;
  transform: rotate(1.4deg);
}
.hero-card__bar { display: flex; gap: 6px; margin-bottom: 16px; }
.hero-card__bar i { width: 10px; height: 10px; border-radius: 50%; background: #d8dee8; }
.hero-card__bar i:first-child { background: #ff6058; }
.hero-card__bar i:nth-child(2) { background: #ffbd2e; }
.hero-card__bar i:nth-child(3) { background: #28c93f; }
.hero-card__row { height: 12px; border-radius: 6px; background: #e7ecf3; margin-bottom: 10px; }
.hero-card__row.w70 { width: 70%; }
.hero-card__row.w90 { width: 90%; }
.hero-card__row.w50 { width: 50%; }
.hero-card__row.accent { background: linear-gradient(90deg, var(--cyan), #6fd0e4); width: 60%; height: 16px; }
.hero-card__chat {
  margin-top: 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 14px; box-shadow: var(--shadow-sm);
}
.hero-card__chat .msg {
  font-size: .82rem; padding: 8px 12px; border-radius: 12px; margin-bottom: 8px;
  font-family: var(--font);
}
.hero-card__chat .msg.bot { background: var(--cyan-light); color: var(--navy); border-bottom-left-radius: 4px; width: fit-content; max-width: 90%; }
.hero-card__chat .msg.user { background: var(--navy); color: #fff; margin-left: auto; width: fit-content; max-width: 90%; border-bottom-right-radius: 4px; }

/* live chat animation */
.hero-card__chat { min-height: 220px; }
.hero-card__chat .msg {
  opacity: 0;
  transform: translateY(6px);
  animation: msgIn .35s ease forwards;
}
.hero-card__chat .typing {
  font-size: .82rem;
  padding: 11px 14px;
  border-radius: 12px;
  background: var(--cyan-light);
  color: var(--navy);
  border-bottom-left-radius: 4px;
  margin-bottom: 8px;
  display: inline-flex; gap: 5px; align-items: center;
  width: fit-content;
  opacity: 0;
  animation: msgIn .28s ease forwards;
}
.hero-card__chat .typing .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--navy);
  opacity: .35; animation: dotPulse 1.1s infinite;
}
.hero-card__chat .typing .dot:nth-child(2) { animation-delay: .18s; }
.hero-card__chat .typing .dot:nth-child(3) { animation-delay: .36s; }
.hero-card__chat.clearing .msg,
.hero-card__chat.clearing .typing { animation: msgOut .45s ease forwards; }
@keyframes msgIn { to { opacity: 1; transform: none; } }
@keyframes msgOut { to { opacity: 0; transform: translateY(-6px); } }
@keyframes dotPulse {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card__chat .msg,
  .hero-card__chat .typing,
  .hero-card__chat .typing .dot { animation: none !important; opacity: 1 !important; }
}
.hero-bubble {
  position: absolute; right: -10px; bottom: -22px;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .9rem;
}
.hero-bubble .dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cyan); color: #fff; display: grid; place-items: center; font-size: 1rem;
}

/* --- trust strip --- */
.trust {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trust p {
  text-align: center; color: var(--muted); font-size: .9rem;
  font-family: var(--font-head); letter-spacing: .04em; margin: 0;
}

/* --- cards / grid --- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4dbe8; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cyan-light); color: var(--cyan-dark);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }

/* feature list */
.ticks { margin-top: 16px; }
.ticks li {
  position: relative; padding-left: 30px; margin-bottom: 10px;
  font-size: .98rem; color: var(--body);
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cyan-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230d8aa8' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* --- split feature rows --- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split + .split { margin-top: 80px; }
.split--reverse .split__media { order: 2; }
.split__media {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  min-height: 280px;
  display: grid; place-items: center;
}
.section--navy .split__media { background: var(--navy-700); border-color: rgba(255,255,255,.1); }

/* mockup blocks reused in split media */
.mock {
  width: 100%; background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm);
  padding: 18px; border: 1px solid var(--line);
}
.mock .line { height: 11px; border-radius: 6px; background: #e7ecf3; margin-bottom: 9px; }
.mock .line.s { width: 45%; }
.mock .line.m { width: 75%; }
.mock .line.cyan { background: linear-gradient(90deg, var(--cyan), #7ad3e6); width: 55%; height: 14px; }

.chatwin {
  width: 100%; max-width: 320px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--line);
}
.chatwin__head {
  background: var(--navy); color: #fff; padding: 12px 16px;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  display: flex; align-items: center; gap: 8px;
}
.chatwin__head .av { width: 22px; height: 22px; border-radius: 50%; background: var(--cyan); }
.chatwin__body { padding: 16px; background: #f7fafc; }
.chatwin__body .msg {
  font-size: .82rem; padding: 9px 13px; border-radius: 13px; margin-bottom: 9px; max-width: 85%;
}
.chatwin__body .msg.bot { background: var(--cyan-light); color: var(--navy); border-bottom-left-radius: 4px; }
.chatwin__body .msg.user { background: var(--navy); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.chatwin__input {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem;
}
.chatwin__input .send {
  margin-left: auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--cyan); display: grid; place-items: center;
}
.chatwin__body .chat-options {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 4px 0 12px;
}
.chatwin__body .chat-opt {
  font-family: var(--font); font-size: .76rem;
  padding: 7px 12px; border-radius: 999px;
  background: #fff; color: var(--cyan-dark);
  border: 1px solid #b8e4ee;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.chatwin__body .chat-opt:hover {
  background: var(--cyan); color: #fff; border-color: var(--cyan);
}
.chatwin__body .chat-opt:active { transform: translateY(1px); }
.chatwin__body .chat-opt.selected {
  background: var(--cyan-light); color: var(--navy);
  border-color: var(--cyan); font-weight: 600;
}

/* --- process steps --- */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(4,1fr); }
.step { position: relative; padding-top: 16px; }
.step__num {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  margin-bottom: 16px;
}
.section--navy .step__num { background: var(--cyan); }
.step h3 { font-size: 1.06rem; margin-bottom: 6px; }
.step p { font-size: .94rem; }

/* --- stats band --- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.statband .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: #fff; }
.statband .label { color: #9aa8bd; font-size: .92rem; }

/* --- about / team --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 18px; }
.value { }
.value .vi {
  width: 44px; height: 44px; border-radius: 12px; background: var(--cyan-light);
  color: var(--cyan-dark); display: grid; place-items: center; margin-bottom: 12px;
}
.value h3 { font-size: 1.02rem; margin-bottom: 4px; }
.value p { font-size: .92rem; }

/* --- contact --- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.contact-info .ci-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .ci-ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--cyan-light); color: var(--cyan-dark); display: grid; place-items: center;
}
.contact-info .ci-item h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-info .ci-item p, .contact-info .ci-item a { font-size: .96rem; color: var(--body); margin: 0; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 500;
  font-size: .9rem; color: var(--ink); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: var(--font); font-size: .98rem;
  color: var(--ink); background: var(--bg-soft);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form__note { font-size: .82rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form__success {
  display: none; background: var(--cyan-light); color: var(--navy);
  border: 1px solid #b8e4ee; border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: .94rem; margin-bottom: 18px;
}
.form__success.show { display: block; }

/* --- CTA band --- */
.cta-band {
  background:
    radial-gradient(700px 360px at 90% 0%, rgba(18,166,201,.34), transparent 60%),
    var(--navy);
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  color: #cdd6e4;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band .lead { color: #aebacc; margin: 0 auto 26px; }

/* --- faq --- */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  padding: 22px 40px 22px 0; position: relative;
}
.faq__q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--cyan-dark); font-weight: 400; transition: transform .2s;
}
.faq__item.open .faq__q::after { content: "\2212"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { padding: 0 0 22px; font-size: .98rem; color: var(--muted); }

/* --- pricing --- */
.price-group { margin-bottom: 64px; }
.price-group:last-child { margin-bottom: 0; }
.pricing-grid { display: grid; gap: 26px; grid-template-columns: repeat(2, 1fr); }
.pricing-grid--4 { grid-template-columns: repeat(4, 1fr); }

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4dbe8; }
.price-card--featured {
  border-color: var(--cyan);
  box-shadow: 0 16px 42px rgba(18,166,201,.20);
}
.price-card__badge {
  position: absolute; top: -13px; left: 24px;
  background: var(--cyan); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}
.price-card__name {
  font-family: var(--font-head); font-weight: 600; font-size: 1.16rem;
  color: var(--ink); margin-bottom: 4px;
}
.price-card__tagline { font-size: .9rem; color: var(--muted); margin-bottom: 18px; min-height: 38px; }
.price-card__price {
  font-family: var(--font-head); font-weight: 700;
  font-size: 2.3rem; color: var(--navy); line-height: 1;
}
.price-card__price .per { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-card__was { font-size: .88rem; color: var(--muted); margin-top: 8px; }
.price-card__was s { color: #aab4c4; }
.price-card .ticks { margin-top: 20px; margin-bottom: 24px; flex: 1; }
.price-card .ticks li { font-size: .93rem; }
.price-card .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 14px; }

/* --- page hero (interne pagina's) --- */
.page-hero {
  background:
    radial-gradient(680px 360px at 88% -20%, rgba(18,166,201,.26), transparent 60%),
    var(--navy);
  color: #cdd6e4;
  padding: 72px 0 78px;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #aebacc; max-width: 600px; font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: #7f8da3; margin-bottom: 18px; font-family: var(--font-head); }
.breadcrumb a { color: var(--cyan); }

/* --- footer --- */
.site-footer { background: var(--navy); color: #93a1b8; padding: 64px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer .f-logo {
  display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px;
}
.site-footer .f-logo .mono { height: 29px; width: auto; }
.site-footer .f-logo .name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.015em;
}
.site-footer .f-about { font-size: .94rem; max-width: 280px; }
.site-footer h4 {
  color: #fff; font-family: var(--font-head); font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { color: #93a1b8; font-size: .94rem; }
.site-footer ul li a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: .85rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: #93a1b8; }

/* --- reveal on scroll --- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* --- responsive --- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 0 72px; }
  .hero__visual { max-width: 420px; }
  .split, .split.split--reverse { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .statband { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    gap: 0; padding: 8px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .3s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links a.active::after { display: none; }
  .nav__toggle { display: block; }
  .nav__cta .btn { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .pricing-grid, .pricing-grid--4 { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .cta-band { padding: 48px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr 1fr; }
}
