/* ==========================================================================
   DAKLEADS — designsysteem
   Rood i.p.v. groen. Layout-architectuur geïnspireerd op Physical Leads,
   alle teksten en visuals origineel.
   ========================================================================== */

:root {
  /* Rood */
  --red:        #D62B1F;
  --red-600:    #B01F15;
  --red-700:    #8C160E;
  --red-300:    #FF6B5E;
  --red-soft:   #FCEDEB;
  --red-line:   #F3D9D5;

  /* Donkere secties */
  --dark:       #1C0705;
  --dark-2:     #2B0C08;
  --dark-3:     #3A120C;

  /* Neutraal */
  --ink:        #170E0C;
  --body:       #4A3F3C;
  --muted:      #7A6D69;
  --line:       #ECE4E2;
  --cream:      #FBF7F6;
  --white:      #FFFFFF;

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  28px;
  --ease:       cubic-bezier(.22,1,.36,1);
  --maxw:       1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }

p { margin: 0 0 1em; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.mt0 { margin-top: 0; }
.lede { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Demo-banner ---------------------------------------------- */
.demobar {
  background: var(--dark);
  color: #F0D9D5;
  font-size: .8rem;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .01em;
}
.demobar b { color: #fff; }

/* ---------- Eyebrow / badge ------------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--red-600);
  background: var(--red-soft);
  border: 1px solid var(--red-line);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}
.eyebrow--light {
  color: #FFD9D4;
  background: rgba(214,43,31,.16);
  border-color: rgba(255,255,255,.14);
}

/* ---------- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit; font-size: .95rem; font-weight: 700;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s var(--ease), background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn i {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  font-style: normal; font-size: .8rem;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-600); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light {
  background: rgba(255,255,255,.06); color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn--ghost-light i { background: rgba(255,255,255,.14); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white i { background: var(--red-soft); color: var(--red-600); }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Nav ------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(28,7,5,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__in {
  display: flex; align-items: center; gap: 28px;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none;
  font-weight: 800; letter-spacing: -.02em; font-size: 1.05rem;
}
.logo__mark {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--red) 0%, var(--red-700) 100%);
}
.logo__mark svg { width: 17px; height: 17px; }
.nav__links {
  display: flex; gap: 4px; margin-left: 10px;
  list-style: none; padding: 0; margin-bottom: 0; margin-top: 0;
}
.nav__links a {
  display: block; padding: 8px 12px;
  color: rgba(255,255,255,.78);
  font-size: .9rem; font-weight: 600; text-decoration: none;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav__tel {
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 600;
  text-decoration: none;
}
.nav__tel:hover { color: #fff; }
.nav__toggle {
  display: none; background: none; border: 0; color: #fff;
  font-size: 1.4rem; cursor: pointer; padding: 4px 8px;
}

/* ---------- Hero ------------------------------------------------------ */
.hero {
  position: relative;
  padding: 92px 0 76px;
  background:
    radial-gradient(900px 520px at 78% 12%, rgba(214,43,31,.42), transparent 62%),
    radial-gradient(700px 420px at 8% 88%, rgba(140,22,14,.5), transparent 60%),
    linear-gradient(175deg, var(--dark) 0%, var(--dark-2) 60%, #14100F 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}
.hero__in { position: relative; z-index: 2; text-align: center; }
.hero h1 { color: #fff; max-width: 17ch; margin: 0 auto .28em; }
.hero h1 em { font-style: normal; color: var(--red-300); }
.hero p.lede { color: rgba(255,255,255,.74); margin: 0 auto 30px; }
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.trustrow {
  margin-top: 42px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 20px 10px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--dark-2);
  margin-left: -10px;
  background: linear-gradient(150deg, var(--red-300), var(--red-700));
  display: grid; place-items: center;
  font-size: .7rem; font-weight: 800; color: #fff;
}
.avatars span:first-child { margin-left: 0; }
.trustrow small { color: rgba(255,255,255,.72); font-size: .84rem; line-height: 1.35; }
.trustrow b { color: #fff; display: block; font-size: .88rem; }

/* ---------- Logostrip ------------------------------------------------- */
.logostrip { border-bottom: 1px solid var(--line); padding: 26px 0; background: var(--white); }
.logostrip__track {
  display: flex; gap: 54px; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.logostrip span {
  font-weight: 800; font-size: .95rem; letter-spacing: -.01em;
  color: #C3B9B6;
  text-transform: uppercase;
}
.logostrip__note { text-align: center; font-size: .72rem; color: #BDB3B0; margin: 14px 0 0; }

/* ---------- Stappen (3 kaarten) --------------------------------------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column;
}
.step__no {
  font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  color: var(--red); margin-bottom: 10px;
}
.step h3 { margin-bottom: .45em; }
.step p { font-size: .95rem; }
.step__img {
  margin-top: auto;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--dark-2), var(--red-700));
  position: relative; overflow: hidden;
}
.step__img::after {
  content: attr(data-label);
  position: absolute; left: 14px; bottom: 12px;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.72);
  letter-spacing: .04em;
}
.step__img svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.step__pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 700; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  padding: 7px 13px; border-radius: 999px; margin: 16px 0;
  align-self: flex-start;
}
.step__pill::before {
  content: "✓"; color: var(--red); font-weight: 900;
}

/* ---------- Van / Naar ------------------------------------------------ */
.vannaar {
  background:
    radial-gradient(700px 400px at 85% 0%, rgba(214,43,31,.3), transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  padding: 46px;
  color: #fff;
}
.vannaar h2 { color: #fff; max-width: 20ch; }
.vannaar__cols {
  display: grid; grid-template-columns: 1fr 44px 1fr;
  gap: 18px; align-items: center; margin-top: 34px;
}
.vncol {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px;
}
.vncol--naar { background: rgba(214,43,31,.14); border-color: rgba(255,107,94,.32); }
.vncol h4 {
  color: #fff; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 16px;
}
.vncol ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.vncol li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .93rem; color: rgba(255,255,255,.82); line-height: 1.45;
}
.vncol li::before {
  content: "✕"; color: #FF9A91; font-weight: 800; font-size: .8rem;
  margin-top: 3px; flex: none;
}
.vncol--naar li::before { content: "✓"; color: #FFC9C3; }
.vnarrow {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 1.1rem; font-weight: 800;
  margin: 0 auto;
}

/* ---------- USP-rij --------------------------------------------------- */
.usp {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; background: var(--white);
}
.usp__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--red-soft); color: var(--red-600);
}
.usp__icon svg { width: 22px; height: 22px; }
.usp h3 { font-size: 1.15rem; }
.usp p { font-size: .93rem; margin-bottom: 0; }

/* ---------- Reviewmuur (marquee) -------------------------------------- */
.reviewwall {
  position: relative; overflow: hidden;
  background: var(--cream);
  padding: 60px 0 70px;
  border-block: 1px solid var(--line);
}
.reviewwall::before, .reviewwall::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 3;
  pointer-events: none;
}
.reviewwall::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.reviewwall::after { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }
.marquee { display: flex; gap: 16px; width: max-content; }
.marquee--a { animation: slide 58s linear infinite; }
.marquee--b { animation: slide 72s linear infinite reverse; margin-top: 16px; }
.reviewwall:hover .marquee { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }

.review {
  width: 320px; flex: none;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.stars { color: var(--red); letter-spacing: 2px; font-size: .85rem; margin-bottom: 10px; }
.review p { font-size: .9rem; color: var(--body); margin-bottom: 14px; }
.review__who { display: flex; align-items: center; gap: 10px; }
.review__who span {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  background: linear-gradient(150deg, var(--red-300), var(--red-700));
  display: grid; place-items: center; color: #fff; font-size: .72rem; font-weight: 800;
}
.review__who b { display: block; font-size: .85rem; color: var(--ink); }
.review__who small { color: var(--muted); font-size: .75rem; }

/* ---------- Case-kaarten ---------------------------------------------- */
.case {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: #fff;
}
.case__top {
  aspect-ratio: 4 / 3; position: relative;
  background: linear-gradient(155deg, var(--dark-2) 0%, var(--red-700) 100%);
  display: grid; place-items: center; padding: 22px;
}
.case__top svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .35; }
.case__quote {
  position: relative; z-index: 2;
  color: #fff; font-weight: 800; font-size: 1.25rem; line-height: 1.25;
  letter-spacing: -.02em; text-align: center;
}
.case__quote span { color: #FFC9C3; }
.case__body { padding: 18px 20px 22px; }
.case__body b { color: var(--ink); font-size: .95rem; }
.case__body small { display: block; color: var(--muted); font-size: .8rem; }
.case__stats { display: flex; gap: 18px; margin-top: 14px; }
.case__stats div strong { display: block; color: var(--red-600); font-size: 1.25rem; }
.case__stats div small { font-size: .74rem; }

/* ---------- Missie ---------------------------------------------------- */
.missie {
  background:
    radial-gradient(600px 400px at 12% 20%, rgba(214,43,31,.32), transparent 62%),
    linear-gradient(150deg, var(--dark) 0%, #140A08 100%);
  color: #fff;
}
.missie h2 { color: #fff; }
.missie p { color: rgba(255,255,255,.76); }
.missie__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.collage { position: relative; height: 380px; }
.collage div {
  position: absolute; border-radius: 16px; overflow: hidden;
  border: 5px solid rgba(255,255,255,.9);
  box-shadow: 0 22px 50px rgba(0,0,0,.4);
  background: linear-gradient(150deg, var(--red-700), var(--dark-2));
  display: grid; place-items: center;
  color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 700;
  text-align: center; padding: 8px;
}
.collage div:nth-child(1) { width: 46%; aspect-ratio: 3/4; left: 2%;  top: 6%;  transform: rotate(-6deg); }
.collage div:nth-child(2) { width: 46%; aspect-ratio: 4/3; right: 3%; top: 0;   transform: rotate(5deg); }
.collage div:nth-child(3) { width: 44%; aspect-ratio: 4/3; right: 8%; bottom: 2%; transform: rotate(-3deg); }
.collage div:nth-child(4) { width: 34%; aspect-ratio: 1/1; left: 12%; bottom: 0; transform: rotate(7deg); }

/* ---------- Team-carrousel -------------------------------------------- */
.rail {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; cursor: grab;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail.dragging { cursor: grabbing; }
.person { width: 230px; flex: none; scroll-snap-align: start; }
.person__ph {
  aspect-ratio: 3/4; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--dark-2), var(--red-700));
  display: grid; place-items: end center; padding: 14px;
  color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 700;
}
.person b { display: block; margin-top: 12px; color: var(--ink); font-size: .95rem; }
.person small { color: var(--muted); font-size: .82rem; }
.railnav { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.railnav button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  font-size: 1rem; color: var(--ink);
  transition: background .2s, border-color .2s;
}
.railnav button:hover { background: var(--red-soft); border-color: var(--red-line); }

/* ---------- Calculator ------------------------------------------------ */
.calc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px;
}
.calc label {
  display: block; font-size: .82rem; font-weight: 700; color: var(--ink);
  margin-bottom: 8px;
}
.calc .field { margin-bottom: 22px; }
.calc input[type="range"] {
  width: 100%; accent-color: var(--red); height: 4px;
}
.calc .val { float: right; color: var(--red-600); font-weight: 800; }
.calc__out {
  background: linear-gradient(155deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: var(--radius); padding: 30px; color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.calc__out span { font-size: .8rem; color: rgba(255,255,255,.66); }
.calc__out strong {
  display: block; font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800;
  color: #fff; letter-spacing: -.03em; line-height: 1.05; margin: 6px 0 4px;
}
.calc__out strong em { color: var(--red-300); font-style: normal; }
.calc__rows { margin-top: 20px; display: grid; gap: 9px; }
.calc__rows div {
  display: flex; justify-content: space-between; font-size: .86rem;
  color: rgba(255,255,255,.74);
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 9px;
}
.calc__rows b { color: #fff; }
.disclaimer { font-size: .74rem; color: var(--muted); margin-top: 16px; }

/* ---------- Aanbod / offerstack --------------------------------------- */
.offer {
  border: 2px solid var(--red); border-radius: var(--radius-lg);
  background: #fff; padding: 34px; position: relative;
}
.offer__tag {
  position: absolute; top: -14px; left: 34px;
  background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
}
.stack { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.stack li {
  display: grid; grid-template-columns: 1fr auto;
  gap: 16px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px dashed var(--line);
  font-size: .95rem;
}
.stack li b { color: var(--ink); }
.stack li span { color: var(--muted); font-size: .85rem; white-space: nowrap; }
.stack li.total {
  border-bottom: 0; border-top: 2px solid var(--ink); margin-top: 6px;
  padding-top: 16px; font-size: 1.05rem;
}
.stack li.total b, .stack li.total span { color: var(--ink); font-weight: 800; font-size: 1.05rem; }
.pricebox {
  margin-top: 24px; background: var(--red-soft); border: 1px solid var(--red-line);
  border-radius: var(--radius); padding: 22px; text-align: center;
}
.pricebox .amount {
  font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em;
  line-height: 1;
}
.pricebox .amount s { color: var(--muted); font-size: 1.1rem; font-weight: 600; margin-right: 10px; }

/* ---------- Garantie -------------------------------------------------- */
.guarantee {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--dark) 0%, var(--dark-3) 100%);
  color: #fff; padding: 44px;
}
.guarantee h2, .guarantee h3 { color: #fff; }
.guarantee p { color: rgba(255,255,255,.78); }
.guarantee ol { color: rgba(255,255,255,.82); padding-left: 20px; }
.guarantee li { margin-bottom: 8px; }

/* ---------- FAQ ------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-weight: 700; color: var(--ink); font-size: 1.02rem;
  display: flex; justify-content: space-between; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; font-size: .95rem; max-width: 78ch; }

/* ---------- Boeking --------------------------------------------------- */
.booking { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px;
}
.card--dark {
  background: linear-gradient(155deg, var(--dark) 0%, var(--dark-3) 100%);
  color: #fff; border-color: transparent;
}
.card--dark h3 { color: #fff; }
.card--dark p { color: rgba(255,255,255,.74); }
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 14px; }
.cal span, .cal b {
  aspect-ratio: 1; display: grid; place-items: center;
  font-size: .8rem; border-radius: 9px;
}
.cal b { color: var(--muted); font-weight: 700; font-size: .68rem; }
.cal span { color: var(--body); border: 1px solid transparent; }
.cal span.free { background: var(--red-soft); color: var(--red-700); font-weight: 700; cursor: pointer; }
.cal span.free:hover { background: var(--red); color: #fff; }
.cal span.off { color: #CFC6C3; }
.slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.slots button {
  font-family: inherit; font-size: .84rem; font-weight: 700;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer;
}
.slots button:hover, .slots button[aria-pressed="true"] { background: var(--red); color: #fff; border-color: var(--red); }
.contactlist { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.contactlist li { font-size: .9rem; color: rgba(255,255,255,.8); }
.contactlist b { display: block; color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; }

/* ---------- E-book banner --------------------------------------------- */
.ebook {
  background:
    radial-gradient(600px 340px at 88% 20%, rgba(214,43,31,.34), transparent 60%),
    linear-gradient(150deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #fff;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: center;
}
.ebook h2 { color: #fff; }
.ebook h2 em { font-style: normal; color: var(--red-300); }
.ebook p { color: rgba(255,255,255,.76); }
.ebook__cover {
  aspect-ratio: 3/4; border-radius: 10px;
  background: linear-gradient(150deg, var(--red) 0%, var(--red-700) 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  transform: rotate(4deg);
  display: grid; place-items: center; text-align: center; padding: 20px;
  font-weight: 800; letter-spacing: -.02em; font-size: 1.05rem; line-height: 1.2;
  max-width: 210px; margin-left: auto;
}

/* ---------- Footer ---------------------------------------------------- */
.footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  padding: 60px 0 34px; font-size: .9rem;
}
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
.footer h4 {
  color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .11em;
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 44px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.5);
}

/* ---------- Scroll reveal --------------------------------------------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: .07s } .d2 { transition-delay: .14s } .d3 { transition-delay: .21s }
.d4 { transition-delay: .28s } .d5 { transition-delay: .35s } .d6 { transition-delay: .42s }

/* ---------- Responsive ------------------------------------------------ */
@media (max-width: 980px) {
  .grid3, .grid2, .missie__grid, .calc, .booking, .ebook, .footer__grid,
  .vannaar__cols {
    grid-template-columns: 1fr;
  }
  .vnarrow { transform: rotate(90deg); }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open {
    display: grid; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--dark); padding: 14px 24px 20px; gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .collage { height: 320px; }
  .ebook__cover { margin: 0 auto; }
  .section { padding: 68px 0; }
  .vannaar, .guarantee, .ebook { padding: 30px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav__tel { display: none; }
  .calc, .card, .offer { padding: 22px; }
  .review { width: 268px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
}
