/* ============================================================
   EDUSAMM — style-soe-v2.css
   Soe, hele, premium — scroll-driven dünaamiline versioon.
   Põhineb style-soe.css peal; lisatud animeeritud taust,
   konversiooni-visual, sticky protsessi-timeline, count-up
   numbrid ja suunatud reveal-animatsioonid.
   Iseseisev (ei sõltu teistest CSS-failidest).
   ============================================================ */

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

:root {
  --paper:      #FBF7F0;
  --paper-2:    #F4ECE0;
  --paper-3:    #EFE6D8;
  --line:       #E6DAC8;
  --ink:        #1E2A38;
  --ink-soft:   #33424F;
  --body:       #52606C;
  --muted:      #8A95A0;
  --blue:       #1D5BE3;
  --blue-deep:  #1546AE;
  --blue-soft:  #EAF1FD;
  --blue-tint:  #5B9BF8;
  --gold:       #E8A23D;
  --shadow:     0 10px 30px rgba(60, 45, 25, 0.08);
  --shadow-lg:  0 24px 60px rgba(50, 40, 25, 0.14);
  --shadow-blue:0 18px 50px rgba(29, 91, 227, 0.18);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  26px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--paper);
  color: var(--body);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
::selection { background: rgba(29,91,227,0.18); color: var(--ink); }

h1, h2, h3 {
  font-family: 'Fraunces', 'Georgia', serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--blue); text-transform: none;
}
.eyebrow::before {
  content: ''; width: 1.6rem; height: 2px; border-radius: 2px;
  background: var(--blue); display: inline-block;
}
.eyebrow--dot::before {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); animation: softpulse 2.4s ease-in-out infinite;
}
@keyframes softpulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 767px){ .wrap { padding: 0 1.25rem; } }

/* ── REVEAL — pehme hajumine fookusesse ─────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px); filter: blur(7px);
  transition: opacity .8s ease, transform .9s cubic-bezier(.2,.7,.2,1), filter .8s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
/* Suunatud variandid */
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(.94); }
.reveal-left.in, .reveal-right.in, .reveal-scale.in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1; transform: none; filter: none; transition: none;
  }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  padding: 0.95rem 1.85rem; border-radius: var(--radius-sm);
  cursor: pointer; border: none;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, background .25s ease, color .2s ease;
}
/* Pehme läikepühe nupul hoveril */
.btn::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn:hover::after { left: 140%; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-3px); box-shadow: 0 26px 64px rgba(29,91,227,0.34); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.btn-ghost::after { background: linear-gradient(100deg, transparent, rgba(29,91,227,0.08), transparent); }
.btn-full { width: 100%; }
.btn-lg { font-size: 1.05rem; padding: 1.1rem 2rem; }

/* ── NAV ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 0 2rem; height: 76px;
}
.logo {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 1.55rem; letter-spacing: -0.01em; color: var(--ink);
}
.nav-cta {
  font-size: 0.95rem; font-weight: 600;
  background: var(--blue); color: #fff;
  padding: 0.7rem 1.5rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-blue);
  transition: background .2s, transform .2s, box-shadow .25s;
}
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-2px); }
@media (max-width: 767px){ .nav-inner { padding: 0 1.25rem; height: 66px; } .logo { font-size: 1.35rem; } }

/* Kerimisedenemise riba navi all */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-tint));
  z-index: 101; transition: width .1s linear;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 6.25rem 0 5rem;
  background: var(--paper);
}
/* Pehme animeeritud taust — hõljuvad värvilaigud */
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55;
  will-change: transform;
}
.hero-blob.b1 { width: 46vw; height: 46vw; top: -14vw; right: -8vw;
  background: radial-gradient(circle at 30% 30%, rgba(29,91,227,0.22), transparent 70%);
  animation: drift1 22s ease-in-out infinite; }
.hero-blob.b2 { width: 40vw; height: 40vw; bottom: -16vw; left: -10vw;
  background: radial-gradient(circle at 60% 40%, rgba(232,162,61,0.18), transparent 70%);
  animation: drift2 28s ease-in-out infinite; }
.hero-blob.b3 { width: 30vw; height: 30vw; top: 30%; left: 40%;
  background: radial-gradient(circle at 50% 50%, rgba(91,155,248,0.14), transparent 70%);
  animation: drift3 25s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-4vw,3vw) scale(1.08);} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(5vw,-3vw) scale(1.1);} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(3vw,4vw) scale(0.92);} }
/* Õrn punktivõrk pinna jaoks */
.hero-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(30,42,56,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
@media (prefers-reduced-motion: reduce) { .hero-blob { animation: none; } }

.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 900px){
  .hero { padding: 7rem 0 6rem; }
  .hero-grid { grid-template-columns: 1.02fr 0.98fr; gap: 4rem; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  padding: 0.45rem 0.9rem; border-radius: 100px; margin-bottom: 1.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-soft);
  backdrop-filter: blur(8px); box-shadow: var(--shadow);
}
.hero-badge .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); animation: softpulse 2.2s ease-in-out infinite; }
.hero-title {
  font-size: clamp(3rem, 6.4vw, 5.2rem);
  line-height: 1.0; margin-bottom: 1.5rem;
}
.hero-title .hl { color: var(--blue); position: relative; white-space: nowrap; }
.hero-title .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 0.28em; background: rgba(29,91,227,0.14); border-radius: 6px; z-index: -1;
  transform: scaleX(0); transform-origin: left; animation: underline 1s .5s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes underline { to { transform: scaleX(1); } }
.hero-sub {
  font-size: 1.3rem; line-height: 1.55; color: var(--ink-soft);
  max-width: 42ch; margin-bottom: 2.6rem; font-weight: 400;
}
.hero-sub-confirm {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 1.1rem; font-weight: 600; color: var(--ink);
  margin-bottom: 2.25rem;
}
.hero-sub-confirm .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; background: var(--blue); }
@media (max-width: 600px){ .br-desk { display: none; } }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.hero-trust {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  font-size: 0.95rem; color: var(--body);
}
.hero-trust .tick { color: var(--blue); font-weight: 700; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 0.45rem; }

/* ── HERO KONVERSIOONI-VISUAL (kliendibaas → broneeringud) ───── */
.conv {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, var(--paper-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.6rem 1.6rem 1.4rem;
  overflow: hidden;
}
.conv::before { /* õrn ülemine helendus */
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(29,91,227,0.08), transparent 70%);
  pointer-events: none;
}
.conv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.conv-head .t { font-family:'Inter',sans-serif; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.conv-live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600; color: var(--blue);
  background: var(--blue-soft); padding: 0.28rem 0.6rem; border-radius: 100px;
}
.conv-live .lp { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: softpulse 1.6s ease-in-out infinite; }

/* Magavate klientide rida */
.conv-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 0.55rem; text-transform: uppercase; }
.conv-base { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.5rem; }
.conv-row {
  display: flex; align-items: center; gap: 0.7rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem; opacity: 0.55;
  animation: wake 6s ease-in-out infinite;
}
.conv-row .ava {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--paper-3); color: var(--muted);
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700;
}
.conv-row .bar { height: 7px; border-radius: 4px; background: var(--paper-3); flex: 1; }
.conv-row .bar.short { max-width: 55%; }
.conv-row .tag { font-size: 0.66rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
.conv-row.r1 { animation-delay: 0s; }
.conv-row.r2 { animation-delay: 2s; }
.conv-row.r3 { animation-delay: 4s; }
@keyframes wake {
  0%, 60%, 100% { opacity: 0.5; border-color: var(--line); }
  20%, 40% { opacity: 1; border-color: rgba(29,91,227,0.4); }
}

/* Voog: lendavad meilid alla kalendrisse */
.conv-flow { position: relative; height: 38px; margin: 0.3rem 0; }
.conv-flow .line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(29,91,227,0.35), transparent); }
.conv-flow .pkt {
  position: absolute; left: 50%; top: -4px; width: 22px; height: 22px; margin-left: -11px;
  border-radius: 7px; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue);
  animation: fall 2.6s ease-in infinite;
}
.conv-flow .pkt.p2 { animation-delay: 1.3s; }
@keyframes fall {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  20% { opacity: 1; transform: translateY(6px) scale(1); }
  80% { opacity: 1; }
  100% { transform: translateY(34px) scale(.6); opacity: 0; }
}

/* Kalender, mis täitub broneeringutega */
.conv-cal {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.85rem; box-shadow: var(--shadow);
}
.conv-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.conv-cal-head .m { font-weight: 700; color: var(--ink); font-size: 0.82rem; }
.conv-cal-head .nav { display: flex; gap: 0.3rem; }
.conv-cal-head .nav span { width: 18px; height: 18px; border-radius: 5px; background: var(--paper-2); }
.conv-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.conv-cell {
  aspect-ratio: 1; border-radius: 6px; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; color: var(--muted); font-weight: 600;
  transition: background .4s ease, color .4s ease, transform .4s ease;
}
.conv-cell.book {
  color: #fff;
  animation: fillcell 7.5s ease-in-out infinite;
}
.conv-cell.book.d1 { animation-delay: .3s; }
.conv-cell.book.d2 { animation-delay: 1.0s; }
.conv-cell.book.d3 { animation-delay: 1.7s; }
.conv-cell.book.d4 { animation-delay: 2.4s; }
.conv-cell.book.d5 { animation-delay: 3.1s; }
@keyframes fillcell {
  0%, 5%   { background: var(--paper-2); color: var(--muted); box-shadow: none; transform: scale(1); }
  8%       { background: var(--blue); color: #fff; transform: scale(1.22); box-shadow: var(--shadow-blue); }
  14%, 80% { background: var(--blue); color: #fff; transform: scale(1); box-shadow: none; }
  88%,100% { background: var(--paper-2); color: var(--muted); box-shadow: none; transform: scale(1); }
}

.conv-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.conv-foot .cnt { display: flex; align-items: baseline; gap: 0.4rem; }
.conv-foot .cnt b { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--blue); font-weight: 600; }
.conv-foot .cnt span { font-size: 0.8rem; color: var(--body); }
.conv-foot .founder { display: inline-flex; align-items: center; gap: 0.5rem; }
.conv-foot .founder .av {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.78rem;
}
.conv-foot .founder .nm { font-size: 0.78rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.conv-foot .founder .rl { font-size: 0.68rem; color: var(--muted); }

/* Õrn hõljumine kogu kaardile */
.conv-wrap { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
@media (prefers-reduced-motion: reduce) {
  .conv-wrap, .conv-row, .conv-flow .pkt, .conv-cell.book { animation: none; }
  .conv-row { opacity: 1; } .conv-cell.book { background: var(--blue); color:#fff; }
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper-2); overflow: hidden; white-space: nowrap; padding: 1rem 0;
}
.ticker-inner {
  display: inline-flex; align-items: center; gap: 2.5rem;
  animation: ticker 26s linear infinite;
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
}
.ticker:hover .ticker-inner { animation-play-state: paused; }
.ticker-dot { color: var(--blue); }
@keyframes ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ── SECTION ─────────────────────────────────────────────────── */
.section { padding: 6rem 0; position: relative; }
@media (max-width: 767px){ .section { padding: 4rem 0; } }
.section--alt { background: var(--paper-2); }
.section-head { max-width: 46rem; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); margin: 1rem 0 1rem; }
.section-lead { font-size: 1.2rem; line-height: 1.65; color: var(--body); }

/* ── VSL / VIDEO ─────────────────────────────────────────────── */
.vsl-frame {
  position: relative; aspect-ratio: 16/9; width: 100%;
  max-width: 920px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, #20324a 0%, #16243a 100%);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.vsl-frame:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(29,91,227,0.22); }
.vsl-frame iframe, .vsl-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 86px; height: 86px; border-radius: 50%; border: none; padding-left: 4px;
  background: #fff; color: var(--blue); cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transition: transform .25s, background .25s, color .25s;
}
.vsl-frame:hover .vsl-play { transform: translate(-50%,-50%) scale(1.08); background: var(--blue); color: #fff; }
.vsl-play-ring { position: absolute; inset: -12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.55); animation: vslRing 2.4s ease-out infinite; }
@keyframes vslRing { 0%{transform:scale(0.9);opacity:0.8;} 100%{transform:scale(1.5);opacity:0;} }
.vsl-note { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.vsl-caption { text-align: center; margin-top: 1.25rem; color: var(--muted); font-size: 0.95rem; }

/* ── STATEMENT / PROBLEEM ────────────────────────────────────── */
.statement-title { font-size: clamp(2rem, 4.5vw, 3.4rem); max-width: 24ch; margin-top: 0.6rem; }
.statement-title .hl { color: var(--blue); }
.section-title .hl { color: var(--blue); }
.statement-lead {
  font-size: 1.25rem; line-height: 1.7; color: var(--body);
  max-width: 52ch; margin-top: 2.6rem;
  padding-left: 1.25rem; border-left: 3px solid var(--blue);
  text-wrap: pretty;
}
.lead-em { font-weight: 600; color: var(--ink-soft); }
.accent-blue { color: var(--blue-tint); font-weight: 600; }

/* ── NUMBERS ─────────────────────────────────────────────────── */
.numbers { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px){ .numbers { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px){ .numbers { grid-template-columns: repeat(4,1fr); } }
.num-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.75rem; box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.num-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(29,91,227,0.06), transparent 70%);
  transition: opacity .3s ease;
}
.num-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(29,91,227,0.3); }
.num-card:hover::before { opacity: 1; }
.num-value {
  font-family: 'Fraunces', serif; font-weight: 600; color: var(--blue);
  font-size: 3rem; line-height: 1; margin-bottom: 0.6rem; position: relative;
}
.num-label { font-size: 0.95rem; color: var(--body); line-height: 1.5; position: relative; }

/* ── PROTSESS — full-width sticky timeline ───────────────────── */
.process {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  padding: 6rem 0 5rem;
}
@media (max-width: 767px){ .process { padding: 4rem 0; } }
.tl {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 900px){
  .tl { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }
}
/* Vasak kleepuv paneel */
.tl-aside { position: relative; }
@media (min-width: 900px){
  .tl-aside { position: sticky; top: 120px; }
}
.tl-aside .eyebrow { margin-bottom: 1rem; }
.tl-aside h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.tl-aside p { font-size: 1.1rem; color: var(--body); line-height: 1.65; margin-bottom: 2rem; }
.tl-progress {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
}
.tl-progress .track { flex: 1; height: 6px; border-radius: 100px; background: var(--paper-3); overflow: hidden; }
.tl-progress .fill { height: 100%; width: 0%; border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--blue-tint)); transition: width .3s ease; }
.tl-progress .pct { color: var(--blue); min-width: 3.5ch; text-align: right; }

/* Parem: sammud */
.tl-steps { position: relative; display: flex; flex-direction: column; gap: 1.1rem; }
.tl-step {
  position: relative; display: flex; gap: 1.2rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.6rem; box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.tl-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tl-step.active { border-color: rgba(29,91,227,0.45); box-shadow: var(--shadow-lg); }
.tl-step.active .tl-num { background: var(--blue); color: #fff; transform: scale(1.06); }
.tl-step .tl-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.3rem;
  transition: background .35s, color .35s, transform .35s;
}
.tl-body .tl-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-bottom: 0.4rem; }
.tl-body .tl-desc { font-size: 0.98rem; color: var(--body); line-height: 1.65; margin-bottom: 0.7rem; }
.tl-body .tl-time { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--blue); background: var(--blue-soft); padding: 0.28rem 0.65rem; border-radius: 100px; }

/* ── PROCESS CTA ─────────────────────────────────────────────── */
.proc-cta {
  margin-top: 3.5rem; text-align: center;
  background: linear-gradient(160deg, #fff 0%, var(--blue-soft) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 3.5rem 2rem; box-shadow: var(--shadow);
}
.proc-cta h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.9rem; }
.proc-cta p { font-size: 1.05rem; color: var(--body); max-width: 50ch; margin: 0 auto 1.75rem; }
.proc-cta .trust-line { margin-top: 1.25rem; font-size: 0.95rem; color: var(--muted); }

/* ── TESTIMONIAL ─────────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1040px; margin: 0 auto; }
@media (min-width: 820px){ .quotes { grid-template-columns: 1fr 1fr; } }
.quote-card {
  text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.75rem 2.25rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.quote-mark { font-family: 'Fraunces', serif; font-size: 4rem; line-height: 0.5; color: var(--blue); opacity: 0.35; }
.quote-text { font-family: 'Fraunces', serif; font-size: clamp(1.2rem, 1.9vw, 1.55rem); line-height: 1.45; color: var(--ink); margin: 1rem 0 2rem; font-weight: 500; }
.quote-author { display: inline-flex; align-items: center; gap: 0.85rem; margin-top: auto; align-self: center; }
.quote-author .av {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--paper-3); color: var(--muted);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  border: 1px solid var(--line);
}
.quote-author .nm { font-weight: 700; color: var(--ink); text-align: left; }
.quote-author .rl { font-size: 0.88rem; color: var(--muted); text-align: left; }

/* ── WHO IT'S FOR ────────────────────────────────────────────── */
.wif-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px){ .wif-list { grid-template-columns: 1fr 1fr; } }
.wif-list li {
  display: flex; align-items: center; gap: 0.85rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; font-size: 1.05rem; color: var(--ink-soft);
  box-shadow: var(--shadow); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.wif-list li:hover { transform: translateX(6px); border-color: rgba(29,91,227,0.35); box-shadow: var(--shadow-lg); }
.wif-list li .chk {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open { border-color: rgba(29,91,227,0.35); box-shadow: var(--shadow-lg); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 1.6rem; font-family: 'Inter', sans-serif;
  font-size: 1.08rem; font-weight: 600; color: var(--ink); transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { flex-shrink: 0; color: var(--blue); transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .25s ease; font-size: 1rem; color: var(--body); line-height: 1.7; padding: 0 1.6rem; }
.faq-item.open .faq-a { max-height: 640px; padding: 0 1.6rem 1.4rem; }
.faq-a ul { margin: 0.7rem 0 0; padding-left: 1.3rem; }
.faq-a li { margin-bottom: 0.45rem; }
.faq-a li::marker { color: var(--blue); }

/* ── CTA / VORM ──────────────────────────────────────────────── */
.cta { background: var(--paper-2); }
.cta-card {
  max-width: 640px; margin: 0 auto; position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 3rem 3rem; box-shadow: var(--shadow-lg);
}
@media (max-width: 767px){ .cta-card { padding: 2rem 1.5rem; } }
form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 520px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
.form-input {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; font-size: 1rem; color: var(--ink); font-family: 'Inter', sans-serif;
  outline: none; resize: vertical; transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(29,91,227,0.1); }
.form-note { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--paper-3); border-top: 1px solid var(--line); padding: 3rem 0 2.5rem; }
.foot-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); margin-bottom: 1.75rem; }
.foot-logo { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.7rem; color: var(--ink); }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.foot-links a { font-size: 0.95rem; font-weight: 500; color: var(--body); transition: color .2s; }
.foot-links a:hover { color: var(--blue); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; color: var(--muted); }
.foot-bottom .em { color: var(--ink); font-weight: 700; }

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: #D8C9B2; border-radius: 6px; border: 2px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: var(--blue-tint); }
