/* Inboxli — warm retro retention agency */

:root {
  --bg: #F3ECDA;
  --bg-soft: #F8F2E2;
  --bg-card: #FBF7EC;
  --ink: #1F1B16;
  --ink-soft: #4B453A;
  --ink-mute: #7A7060;
  --line: #E5DCC2;
  --marker: #BFE57A;       /* highlighter green */
  --marker-2: #FFD27A;     /* highlighter amber */
  --accent: #E8744D;       /* terracotta */
  --accent-deep: #C95C36;
  --rose: #F4B4A2;
  --plum: #6D4C8A;
  --sky: #B8D6E8;
  --leaf: #7AB069;
  --shadow-sm: 0 1px 0 rgba(31,27,22,.04), 0 2px 6px rgba(31,27,22,.06);
  --shadow-md: 0 1px 0 rgba(31,27,22,.05), 0 6px 18px rgba(31,27,22,.08);
  --shadow-lg: 0 2px 0 rgba(31,27,22,.06), 0 18px 50px rgba(31,27,22,.12);
  /* Swiss grotesk type system (replaces Instrument Serif + DM Sans) */
  --serif: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;  /* display */
  --sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --hand: "Caveat", "Bradley Hand", cursive;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

/* Space Grotesk reads lighter than a serif at display sizes — give the
   display family a confident default weight + tighter tracking so headings
   keep presence in the Swiss-grotesk direction. */
.serif,
.hero h1, .sec-head h2, .loss-copy h2, .diff-head h2, .bafter .ba-col h3,
.cta-final h2, .stat-num, .svc-card h3, .svc-card .num, .calc h3, .calc-out .co-big,
.calc-out .co-num, .calc-field label .val, .case h4, .case-metric .m, .step h4,
.step-n, .diff-pillar h4, .diff-pillar .pcount, .faq-q, .foot-brand, .brand,
.tm-av, .j-card .j-title, .loss-stat .ls-big {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.italic { font-style: italic; }  /* Space Grotesk has no true italic — renders as oblique, intentional */

/* === Vibe variants === */
body[data-vibe="terakota"] {
  --bg: #F1E1CB;
  --bg-soft: #F6EAD6;
  --bg-card: #FBF1DD;
  --line: #E4CDA8;
  --marker: #FFB069;
  --marker-2: #F4D5A4;
  --accent: #C95C36;
  --accent-deep: #9A3F1F;
  --ink: #2B1E14;
}
body[data-vibe="studio"] {
  --bg: #F6F2E8;
  --bg-soft: #FBF8EE;
  --bg-card: #FFFCF3;
  --line: #E8E1CE;
  --marker: #C9E89C;
  --marker-2: #FFE6A8;
  --accent: #2A5D4A;
  --accent-deep: #1B3F31;
  --ink: #14140F;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper texture using SVG noise */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(232,116,77,.05), transparent 38%),
    radial-gradient(circle at 88% 70%, rgba(122,176,105,.05), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: default; }

/* === Layout === */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

section { position: relative; }

/* === Display + helpers === */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.hand { font-family: var(--hand); }
.mono { font-family: var(--mono); }
.italic { font-style: italic; }

.eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.kicker::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* Marker highlight — irregular shape behind text */
.mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.mark::before {
  content: "";
  position: absolute;
  left: -6px; right: -6px;
  top: 22%; bottom: 8%;
  background: var(--marker);
  border-radius: 28% 70% 35% 65% / 50% 40% 60% 50%;
  z-index: -1;
  transform: rotate(-1.2deg);
  opacity: .85;
}
.mark-amber::before { background: var(--marker-2); }

/* Underline scribble */
.scribble {
  position: relative;
  display: inline-block;
}
.scribble::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: -6px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M2 4 Q 30 1, 60 4 T 120 4 T 198 4' stroke='%23E8744D' stroke-width='2.4' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 2px solid var(--ink);
  background: var(--marker);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-ghost {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
  padding: 14px 8px;
}
.btn-ghost:hover { transform: none; box-shadow: none; background: rgba(31,27,22,.05); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-ink { background: var(--ink); color: var(--bg-soft); }
.btn-sm { padding: 10px 16px; font-size: 13px; box-shadow: 2px 2px 0 var(--ink); }
.btn-sm:hover { box-shadow: 3px 3px 0 var(--ink); }

/* === Nav === */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 70%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  max-width: 1240px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px; height: 28px;
  background: var(--ink);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--marker);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  transform: rotate(-4deg);
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--ink); }

/* === Hero === */
.hero { padding: 56px 0 60px; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
  max-width: 14ch;
}
.hero h1 .italic { font-style: italic; color: var(--accent-deep); }
.hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 32px;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-cta .meta {
  font-family: var(--hand);
  font-size: 20px;
  color: var(--ink-soft);
  display: inline-flex; gap: 6px; align-items: center;
}
.hero-cta .meta-arrow {
  display: inline-block; width: 36px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 18'><path d='M2 14 Q 14 2, 32 8 M 26 4 L 32 8 L 28 14' stroke='%231F1B16' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>") center/contain no-repeat;
  transform: rotate(-12deg) translateX(-4px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-collage {
  position: relative;
  height: 540px;
}
.sticker {
  position: absolute;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 14px;
}

/* === Section heads === */
.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 14px 0 16px;
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}

/* === Stats === */
.stats {
  padding: 28px 0 12px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 28px 0;
}
.stat {
  text-align: center;
  padding: 0 14px;
  border-right: 1px dashed var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num .italic { color: var(--accent-deep); }
.stat-lbl {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

/* === Logo wall === */
.logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 22px;
  padding: 24px 0 8px;
  opacity: .85;
}
.logo-chip {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  padding: 6px 14px;
  border: 1px dashed var(--line);
  border-radius: 999px;
}

/* === Services cards === */
.services {
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
}
.svc-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--accent-deep);
}
.svc-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}
.svc-card p {
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-size: 15px;
}
.svc-list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.svc-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
}
.svc-list li::before {
  content: "✓";
  color: var(--accent-deep);
  font-weight: 700;
  margin-top: 1px;
}

.brand-row {
  list-style: none; padding: 24px 0 8px; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 22px;
  opacity: .85;
}
.brand-pill {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  padding: 6px 14px;
  border: 1px dashed var(--line);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* === Brand carousel (marquee, two rows opposite directions) === */
.brand-carousel-wrap {
  padding: 26px 0 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.brand-show-desktop { display: block; }
.brand-show-mobile { display: none; }
@media (max-width: 640px) {
  .brand-show-desktop { display: none; }
  .brand-show-mobile { display: block; }
}
.brand-marquee {
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.brand-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}
.brand-track-left {
  animation: brand-scroll-left 34s linear infinite;
}
.brand-track-right {
  animation: brand-scroll-right 40s linear infinite;
}
.brand-track:hover {
  animation-play-state: paused;
}
@keyframes brand-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes brand-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.brand-pill-alt {
  background: color-mix(in oklab, var(--bg-card) 80%, transparent);
  border-style: solid;
  border-color: var(--line);
}
@media (prefers-reduced-motion: reduce) {
  .brand-track-left, .brand-track-right { animation: none; }
}

/* === Problem / Loss + ROI Calculator === */
.loss {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 80% 30%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 50%),
    var(--bg);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
}
.loss-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.loss-copy h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 14px 0 18px;
}
.loss-copy h2 .red {
  color: var(--accent-deep);
  font-style: italic;
}
.loss-copy p.lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 26px;
  line-height: 1.55;
  max-width: 52ch;
}
.loss-stat {
  display: inline-block;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1.2deg);
  max-width: 460px;
  position: relative;
}
.loss-stat::before {
  content: "";
  position: absolute;
  left: 18px; top: -10px;
  width: 60px; height: 18px;
  background: color-mix(in oklab, var(--marker-2) 85%, transparent);
  border: 1px solid var(--ink);
  transform: rotate(-3deg);
  border-radius: 2px;
  opacity: .9;
}
.loss-stat .ls-big {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -.01em;
}
.loss-stat .ls-big .accent {
  color: var(--accent-deep);
  font-style: italic;
}
.loss-stat .ls-sub {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Calculator card */
.calc {
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 26px 28px;
  position: relative;
}
.calc-tag {
  position: absolute;
  top: -14px; right: 22px;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  transform: rotate(3deg);
  box-shadow: 2px 2px 0 var(--ink);
}
.calc h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.calc .calc-sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 18px;
}
.calc-field {
  margin: 14px 0 12px;
}
.calc-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.calc-field label .val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.calc-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: color-mix(in oklab, var(--line) 80%, transparent);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  outline: none;
  padding: 0;
  margin: 0;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
}
.calc-out {
  margin-top: 22px;
  padding: 22px;
  background: var(--ink);
  color: var(--bg-soft);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.calc-out::after {
  content: "";
  position: absolute;
  right: -30px; bottom: -30px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 50%, transparent), transparent 70%);
  pointer-events: none;
}
.calc-out .co-lbl {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 4px;
}
.calc-out .co-big {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.015em;
  color: var(--marker);
}
.calc-out .co-big .ink { color: var(--accent); }
.calc-out .co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.18);
  position: relative;
  z-index: 1;
}
.calc-out .co-cell .co-sub {
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 2px;
}
.calc-out .co-cell .co-num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--bg-soft);
  letter-spacing: -.01em;
}
.calc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-mute);
}
.calc-foot .hand-note {
  font-family: var(--hand);
  color: var(--accent-deep);
  font-size: 19px;
}

/* === Differentiator (Nismo još jedna agencija) === */
.diff {
  padding: 100px 0 90px;
  position: relative;
}
.diff-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 36px;
}
.diff-head h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 14px 0 0;
}
.diff-head h2 .strike {
  position: relative;
  display: inline-block;
  color: var(--ink-mute);
}
.diff-head h2 .strike::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 52%;
  height: 6px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 6' preserveAspectRatio='none'><path d='M2 3 Q 50 0, 100 3 T 198 3' stroke='%23E8744D' stroke-width='2.6' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
  transform: rotate(-1deg);
}
.diff-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin: 30px auto 0;
  max-width: 760px;
}
.diff-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--ink);
  background: var(--bg-card);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--hand);
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}
.diff-tag.t1 { background: var(--marker); transform: rotate(-2.5deg); }
.diff-tag.t2 { background: var(--rose); transform: rotate(1.8deg); }
.diff-tag.t3 { background: var(--marker-2); transform: rotate(-1.2deg); }
.diff-tag.t4 { background: var(--sky); transform: rotate(2.4deg); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.diff-pillar {
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 3px 3px 0 var(--ink);
}
.diff-pillar h4 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 4px 0 8px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.diff-pillar p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
.diff-pillar .pcount {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--accent-deep);
  line-height: 1;
}

/* === Before / After comparison === */
.bafter {
  padding: 100px 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, color-mix(in oklab, var(--bg-soft) 80%, var(--marker) 5%) 100%);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
}
.bafter-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 18px;
}
.ba-col {
  border: 1.5px solid var(--ink);
  background: var(--bg-card);
  padding: 30px 28px 28px;
  box-shadow: 4px 4px 0 var(--ink);
}
.ba-col.before {
  border-radius: 18px 0 0 18px;
  background: color-mix(in oklab, var(--bg-card) 75%, #B79E73 15%);
  transform: rotate(-.4deg);
}
.ba-col.after {
  border-radius: 0 18px 18px 0;
  background: var(--bg-card);
  border-left: 0;
  transform: rotate(.4deg);
}
.ba-col h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.ba-col .ba-eyebrow {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.ba-col.before .ba-eyebrow { color: var(--ink-mute); }
.ba-col.after .ba-eyebrow { color: var(--accent-deep); }
.ba-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.ba-list li {
  font-size: 14.5px;
  line-height: 1.45;
  display: flex; gap: 10px; align-items: flex-start;
}
.ba-col.before .ba-list li { color: var(--ink-mute); text-decoration: line-through; text-decoration-color: rgba(31,27,22,.35); }
.ba-col.before .ba-list li::before {
  content: "✕";
  color: var(--ink-mute);
  font-weight: 700;
  margin-top: 1px;
}
.ba-col.after .ba-list li { color: var(--ink); }
.ba-col.after .ba-list li::before {
  content: "✓";
  color: var(--accent-deep);
  font-weight: 700;
  margin-top: 1px;
}
.ba-divider {
  display: flex; align-items: center; justify-content: center;
  width: 80px;
  position: relative;
  z-index: 2;
}
.ba-arrow {
  width: 64px; height: 64px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  transform: rotate(-4deg);
}
.ba-bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px;
  color: var(--ink-mute);
}
.ba-bottom strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .bafter-grid { grid-template-columns: 1fr; }
  .ba-col.before, .ba-col.after { border-radius: 18px; border-left: 1.5px solid var(--ink); transform: none; }
  .ba-divider { display: none; }
}
.journey {
  padding: 100px 0 110px;
  background:
    radial-gradient(ellipse at 50% 0%, color-mix(in oklab, var(--marker) 22%, transparent), transparent 55%),
    var(--bg-soft);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.journey-board {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 36px 36px 28px;
  margin-top: 24px;
  overflow: hidden;
}
.journey-track {
  position: relative;
  height: 380px;
}
.journey-path {
  position: absolute;
  inset: 40px 24px 60px 24px;
  pointer-events: none;
}
.journey-stop {
  position: absolute;
  width: 188px;
  transform: translate(-50%, -50%);
}
.j-card {
  background: var(--bg-card);
  border: 1.4px solid var(--ink);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 12.5px;
}
.j-card .j-title {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.j-card .j-sub {
  color: var(--ink-mute);
  font-size: 11.5px;
}
.j-stage {
  font-family: var(--hand);
  font-size: 18px;
  color: var(--accent-deep);
  margin-bottom: 6px;
  display: inline-block;
  transform: rotate(-2deg);
}
.j-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 8px;
  border: 1.4px solid var(--ink);
  background: var(--marker);
  font-size: 18px;
}
.j-dot {
  position: absolute;
  width: 22px; height: 22px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 28%, transparent);
  transform: translate(-50%, -50%);
  z-index: 5;
}
.j-dot::after {
  content: "";
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1.5px dashed var(--ink);
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.journey-legend {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  align-items: center;
}
.journey-controls {
  display: flex; gap: 10px;
  align-items: center;
}

/* Floating emails */
.email-pop {
  position: absolute;
  width: 168px;
  background: var(--bg-card);
  border: 1.4px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 10px 12px;
  font-size: 11.5px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  z-index: 6;
}
.email-pop.show { opacity: 1; transform: translateY(0); }
.email-pop .from {
  display: flex; gap: 6px; align-items: center;
  color: var(--ink-mute);
  font-size: 10.5px;
  margin-bottom: 4px;
}
.email-pop .from::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.email-pop .subj {
  font-weight: 600;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.2;
}

/* === Case studies === */
.cases { padding: 90px 0; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
}
.case-img {
  height: 180px;
  background-size: 14px 14px;
  background-image:
    linear-gradient(45deg, color-mix(in oklab, var(--accent) 18%, transparent) 25%, transparent 25%, transparent 50%, color-mix(in oklab, var(--accent) 18%, transparent) 50%, color-mix(in oklab, var(--accent) 18%, transparent) 75%, transparent 75%, transparent);
  position: relative;
  border-bottom: 1.5px solid var(--ink);
  display: grid; place-items: center;
}
.case-img .ph {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-soft);
  background: var(--bg-card);
  padding: 4px 10px;
  border: 1px dashed var(--ink-mute);
  border-radius: 4px;
}
.case-img.peach { background-color: #F4C7B5; }
.case-img.sage { background-color: #C9DDB8; }
.case-img.lilac { background-color: #D8C8E2; }

.case-body { padding: 20px 22px 22px; }
.case-brand { font-size: 12.5px; color: var(--ink-mute); letter-spacing: .08em; text-transform: uppercase; }
.case h4 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 6px 0 12px;
  line-height: 1.15;
}
.case-metrics {
  display: flex; gap: 18px; padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.case-metric .m {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--accent-deep);
  line-height: 1;
}
.case-metric .l { font-size: 11.5px; color: var(--ink-mute); margin-top: 4px; }

.case-badge {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--marker);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--hand);
  font-size: 18px;
  transform: rotate(8deg);
  box-shadow: 2px 2px 0 var(--ink);
  z-index: 2;
}

/* === Process / Approach === */
.process { padding: 90px 0; background: var(--bg-soft); border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.step {
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
}
.step-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -.04em;
}
.step h4 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 4px 0 8px;
  line-height: 1.15;
}
.step p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 14px;
}

/* === Testimonials === */
.testimonials { padding: 100px 0; }
.tm-grid {
  column-count: 3;
  column-gap: 20px;
}
.tm {
  break-inside: avoid;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 20px 22px 18px;
  margin: 0 0 20px;
  box-shadow: 3px 3px 0 var(--ink);
  display: inline-block;
  width: 100%;
}
.tm-stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; margin-bottom: 8px; }
.tm-quote { font-size: 15px; line-height: 1.5; margin: 0 0 14px; color: var(--ink); }
.tm-author { display: flex; align-items: center; gap: 10px; }
.tm-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--rose);
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 14px;
}
.tm-name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.tm-role { font-size: 12px; color: var(--ink-mute); }

/* === FAQ === */
.faq { padding: 90px 0; background: var(--bg-soft); border-top: 1.5px solid var(--ink); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1.5px solid var(--ink);
}
.faq-item {
  border-bottom: 1.5px solid var(--ink);
  padding: 22px 4px;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.01em;
  cursor: default;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--marker);
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 600;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding-top: 12px;
}

/* === Final CTA === */
.cta-final { padding: 120px 0; text-align: center; position: relative; }
.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.cta-final p { font-size: 18px; color: var(--ink-soft); max-width: 56ch; margin: 0 auto 28px; }
.cta-orbit {
  position: absolute; pointer-events: none;
  font-family: var(--hand);
  color: var(--accent-deep);
  font-size: 22px;
}

/* === Footer === */
footer {
  background: var(--ink);
  color: var(--bg-soft);
  padding: 56px 0 32px;
}
footer .wrap { color: var(--bg-soft); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.foot-grid h5 {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 14px;
  font-weight: 600;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-grid li { color: rgba(255,255,255,.85); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
}
.foot-brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  color: var(--bg-soft);
}
.foot-brand .italic { color: var(--marker); }
.foot-mini { font-size: 14px; color: rgba(255,255,255,.7); max-width: 36ch; }

/* === Sticker / floating decorations === */
.deco {
  position: absolute;
  pointer-events: none;
}

/* === Lead Form Modal === */
.lf-overlay {
  position: fixed; inset: 0;
  z-index: 2147483640;
  background: color-mix(in oklab, var(--ink) 50%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lf-fade .25s ease both;
}
@keyframes lf-fade { from { opacity: 0; } to { opacity: 1; } }

.lf-modal {
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--ink);
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 32px 32px 28px;
  position: relative;
  animation: lf-pop .35s cubic-bezier(.2, 1.1, .3, 1.1) both;
  font-family: var(--sans);
}
@keyframes lf-pop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lf-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s;
  font-weight: 400;
  color: var(--ink);
}
.lf-close:hover { background: var(--marker); }

/* Progress */
.lf-progress { margin-bottom: 24px; }
.lf-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 8px;
}
.lf-progress-track {
  height: 6px;
  background: var(--line);
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}
.lf-progress-bar {
  height: 100%;
  background: var(--accent);
  border-right: 1px solid var(--ink);
  transition: width .35s cubic-bezier(.4, 0, .2, 1);
}

/* Step */
.lf-step { padding: 4px 0; }
.lf-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.lf-sub {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0 0 22px;
}

/* Options */
.lf-opts { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 8px; }
.lf-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .1s;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--sans);
}
.lf-opt:hover { background: var(--bg-card); border-color: var(--ink); }
.lf-opt.is-active {
  background: color-mix(in oklab, var(--marker) 60%, var(--bg-card));
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.lf-opt-dot {
  width: 22px; height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--bg-card);
  flex-shrink: 0;
  position: relative;
  transition: background .15s;
}
.lf-opt.is-active .lf-opt-dot { background: var(--accent); }
.lf-opt.is-active .lf-opt-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--bg-card);
  border-radius: 50%;
}
.lf-opt-box {
  width: 22px; height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 5px;
  background: var(--bg-card);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: background .15s;
}
.lf-opt.is-active .lf-opt-box { background: var(--accent); color: #fff; }
.lf-opt-label { line-height: 1.35; }

/* Contact fields */
.lf-contact { display: flex; flex-direction: column; gap: 14px; margin: 16px 0 8px; }
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-field > span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.lf-field > span em {
  font-style: italic;
  color: var(--ink-mute);
  font-weight: 400;
}
.lf-field input {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
  outline: none;
}
.lf-field input:focus {
  border-color: var(--ink);
  background: var(--bg-card);
}

/* Actions */
.lf-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  gap: 12px;
}
.lf-actions .btn-ink:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 3px 3px 0 var(--ink) !important;
}
.lf-back { padding: 12px 8px !important; font-size: 14px; }

/* Result */
.lf-result {
  text-align: center;
  padding: 40px 32px 32px;
}
.lf-result-emoji {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  display: grid;
  place-items: center;
  font-size: 34px;
  margin: 0 auto 20px;
  transform: rotate(-3deg);
}
.lf-result-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 14px;
}
.lf-result-body {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.lf-result-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--marker);
  border-radius: 999px;
  font-family: var(--hand);
  font-size: 20px;
  transform: rotate(-1.5deg);
}

/* === Cold tier message (honest decline + newsletter pitch) === */
.lf-cold-msg {
  background: color-mix(in oklab, var(--rose) 28%, var(--bg-card));
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 16px 0 18px;
  position: relative;
}
.lf-cold-msg::before {
  content: "";
  position: absolute;
  top: -8px; left: 18px;
  width: 36px; height: 14px;
  background: var(--marker-2);
  border: 1px solid var(--ink);
  border-radius: 2px;
  transform: rotate(-3deg);
  opacity: .9;
}
.lf-cold-msg p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.lf-cold-msg p + p {
  margin-top: 10px;
}
.lf-cold-msg strong {
  font-weight: 600;
  background: color-mix(in oklab, var(--marker-2) 70%, transparent);
  padding: 0 3px;
  border-radius: 2px;
}
.lf-cold-msg em {
  font-style: italic;
  color: var(--accent-deep);
}

/* === Cold-tier dismiss link ("hvala, nije za mene") === */
.lf-dismiss-link {
  display: block;
  margin: 14px auto 0;
  padding: 8px 4px;
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .15s;
}
.lf-dismiss-link:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

/* === Section CTA === */
.sec-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.sec-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  color: var(--accent-deep);
}
.sec-cta-arrow {
  display: inline-block;
  width: 38px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 18'><path d='M 34 14 Q 22 2, 4 8 M 10 4 L 4 8 L 8 14' stroke='%23C95C36' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>") center/contain no-repeat;
  transform: rotate(8deg) translateX(2px);
}
@media (max-width: 640px) {
  .sec-cta { margin-top: 32px; gap: 12px; }
  .sec-cta-note { font-size: 18px; }
}

/* === Form field validation states === */
.lf-field.has-error input {
  border-color: var(--accent-deep);
  background: color-mix(in oklab, var(--accent) 8%, var(--bg-soft));
}
.lf-field.has-error > span {
  color: var(--accent-deep);
}
.lf-field-error {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--accent-deep);
  font-weight: 500;
}
.lf-field-error::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 14px; height: 14px;
  background: var(--accent-deep);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.lf-field-help {
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
}

/* === Draft restore prompt === */
.lf-draft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: color-mix(in oklab, var(--marker-2) 60%, var(--bg-card));
  border: 1.5px dashed var(--ink);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 13.5px;
}
.lf-draft-actions { display: flex; gap: 8px; flex-shrink: 0; }
.lf-draft-actions .btn { padding: 7px 12px; font-size: 12.5px; box-shadow: 2px 2px 0 var(--ink); }
.lf-draft-actions .btn-ghost { box-shadow: none; }

/* === Hint under multi-select === */
.lf-hint {
  margin: 6px 2px 0;
  font-size: 12.5px;
  color: var(--ink-mute);
  font-style: italic;
}

/* === Trust line under contact === */
.lf-trust {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.4;
}
.lf-trust-icon { font-size: 13px; opacity: .75; flex-shrink: 0; }

/* === Personalized preview step === */
.lf-preview .lf-preview-card {
  position: relative;
  background: var(--ink);
  color: var(--bg-soft);
  border-radius: 16px;
  padding: 26px 24px 22px;
  margin: 18px 0 22px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--accent);
}
.lf-preview-card::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 50%, transparent), transparent 70%);
  pointer-events: none;
}
.lf-preview-tag {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--marker);
  background: rgba(255,255,255,.06);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(191,229,122,.4);
}
.lf-preview-lbl {
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.lf-preview-big {
  font-family: var(--serif);
  font-size: clamp(34px, 5.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--marker);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.lf-preview-big .dash {
  color: rgba(255,255,255,.4);
  margin: 0 4px;
  font-style: italic;
}
.lf-preview-sub {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.45;
  max-width: 42ch;
  position: relative;
  z-index: 1;
}
.lf-preview-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 14px;
}
.lf-pp {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.lf-pp strong { color: var(--ink); font-weight: 600; }
.lf-pp-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  margin-top: 6px;
}
.lf-preview-foot {
  margin: 14px 0 0;
  font-size: 11.5px;
  color: var(--ink-mute);
  font-style: italic;
  line-height: 1.4;
}

/* === Hot result with Calendly === */
.lf-result-hot {
  max-width: 720px !important;
  padding: 32px 28px 24px !important;
}
.lf-hot-head {
  text-align: center;
  margin-bottom: 18px;
}
.lf-hot-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--marker);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-1.5deg);
}
.lf-hot-badge .hand { font-size: 19px; color: var(--ink); }
.lf-hot-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
}
.lf-hot-foot a {
  color: var(--accent-deep);
  font-weight: 600;
  border-bottom: 1.5px dotted var(--accent-deep);
}

/* === Result screen v2 — impact card, help bullets, mega CTA === */
.lf-result-title-lg {
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 4px 0 18px;
}
.lf-result-title-lg em {
  font-family: var(--serif, Georgia, serif);
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 400;
}
.lf-hot-badge-row { text-align: center; margin-bottom: 6px; }
.lf-hot-badge-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--marker);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-1.5deg);
}
.lf-hot-badge-pill .hand { font-size: 18px; color: var(--ink); }

/* Impact card */
.lf-result-impact {
  position: relative;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 20px 22px 22px;
  background: var(--bg-soft);
  box-shadow: 4px 4px 0 var(--accent);
  overflow: hidden;
  margin: 4px 0 18px;
  text-align: center;
}
.lf-result-impact::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 45%, transparent), transparent 70%);
  pointer-events: none;
}
.lf-result-impact-tag {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--bg-card);
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 3px 8px;
  z-index: 1;
}
.lf-result-impact-lbl {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.lf-result-impact-big {
  font-family: var(--serif, Georgia, serif);
  font-size: 44px;
  line-height: 1.05;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 2px 0 10px;
  position: relative;
  z-index: 1;
}
.lf-result-impact-big .dash { color: var(--accent); font-style: italic; padding: 0 4px; }
.lf-result-impact-sub {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.5;
  max-width: 48ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Help bullets */
.lf-result-help {
  margin: 18px 0 4px;
}
.lf-result-help-head {
  margin-bottom: 10px;
}
.lf-result-help-head .hand {
  font-family: var(--hand, "Caveat", cursive);
  font-size: 22px;
  color: var(--accent-deep);
}
.lf-result-help-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lf-result-help-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
}
.lf-result-help-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--marker);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  margin-top: 6px;
}
.lf-result-help-list li:nth-child(2) .lf-result-help-dot { background: var(--accent); }
.lf-result-help-list li:nth-child(3) .lf-result-help-dot { background: var(--rose); }
.lf-result-help-desc { color: var(--ink-soft); }

/* CTA stack */
.lf-cta-stack {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line, color-mix(in oklab, var(--ink) 20%, transparent));
  text-align: center;
}
.lf-cta-tease {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.5;
}
.lf-cta-tease strong { color: var(--ink); }

/* The big upecatljivo button */
.lf-cta-mega {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--bg-soft);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--accent);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative;
  overflow: hidden;
}
.lf-cta-mega::before {
  /* shine sweep on hover */
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.12) 50%, transparent 70%);
  transform: skewX(-18deg);
  transition: left .55s ease;
}
.lf-cta-mega:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--accent);
  background: #15110D;
}
.lf-cta-mega:hover::before { left: 130%; }
.lf-cta-mega:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--accent);
}
.lf-cta-mega-icon {
  font-size: 28px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--marker);
  border: 1.5px solid var(--bg-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
  filter: grayscale(0);
}
.lf-cta-mega-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  text-align: left;
}
.lf-cta-mega-main {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--bg-card);
}
.lf-cta-mega-sub {
  font-size: 12.5px;
  color: color-mix(in oklab, var(--bg-soft) 70%, var(--ink));
  margin-top: 3px;
  letter-spacing: 0.01em;
  font-family: var(--mono, "JetBrains Mono", monospace);
}
.lf-cta-mega-arrow {
  font-size: 24px;
  color: var(--marker);
  font-weight: 700;
  transition: transform .15s ease;
  flex-shrink: 0;
}
.lf-cta-mega:hover .lf-cta-mega-arrow {
  transform: translateX(4px);
}
.lf-cta-foot {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
}
.lf-cta-foot a {
  color: var(--accent-deep);
  font-weight: 600;
  border-bottom: 1.5px dotted var(--accent-deep);
}

/* Honest message box (cold tier) */
.lf-result-honest {
  margin: 20px 0 4px;
  display: flex;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  background: var(--bg-soft);
  border: 1.5px dashed var(--ink);
  border-radius: 14px;
  align-items: flex-start;
}
.lf-result-honest-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--rose);
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--ink);
}
.lf-result-honest-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.lf-result-honest-body strong { color: var(--ink); }

/* Sending screen === */
.lf-overlay--sending {
  /* slightly more opaque to focus attention */
  background: color-mix(in oklab, var(--ink) 60%, transparent);
}
.lf-sending {
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  width: min(440px, calc(100vw - 32px));
  padding: 44px 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: lf-fade .25s ease-out;
}
.lf-sending::before {
  /* subtle marker swoosh top-right */
  content: "";
  position: absolute;
  top: -30px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, color-mix(in oklab, var(--marker) 55%, transparent), transparent 70%);
  pointer-events: none;
}

/* Envelope + orbiting dots */
.lf-send-art {
  position: relative;
  width: 140px; height: 140px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
}
.lf-send-envelope {
  position: relative;
  animation: lf-env-bob 1.6s ease-in-out infinite;
  z-index: 2;
}
.lf-send-envelope svg { display: block; }
.lf-send-spark {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  border: 1.5px solid var(--ink);
  opacity: 0;
}
.lf-send-spark-1 { top: -6px; left: 14px; animation: lf-spark 1.4s ease-out infinite; }
.lf-send-spark-2 { top: -2px; right: 8px; animation: lf-spark 1.4s ease-out .35s infinite; }
.lf-send-spark-3 { top: -8px; left: 50%; animation: lf-spark 1.4s ease-out .7s infinite; }

.lf-send-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed var(--ink);
  opacity: .18;
}
.lf-send-orbit-1 {
  animation: lf-orbit-spin 6s linear infinite;
}
.lf-send-orbit-2 {
  inset: 14px;
  border-style: dotted;
  opacity: .25;
  animation: lf-orbit-spin 4s linear infinite reverse;
}

@keyframes lf-env-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}
@keyframes lf-spark {
  0%   { opacity: 0; transform: translateY(0) scale(.6); }
  30%  { opacity: 1; transform: translateY(-10px) scale(1); }
  70%  { opacity: 1; transform: translateY(-18px) scale(1); }
  100% { opacity: 0; transform: translateY(-26px) scale(.6); }
}
@keyframes lf-orbit-spin {
  to { transform: rotate(360deg); }
}

/* Stage messages */
.lf-send-stages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 22px;
  min-height: 96px;
}
.lf-send-stage {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 15px;
  color: var(--ink-mute);
  opacity: .35;
  transition: opacity .35s ease, color .35s ease, transform .35s ease;
  transform: translateY(2px);
}
.lf-send-stage.is-active {
  opacity: 1;
  color: var(--ink);
  font-weight: 600;
  transform: translateY(0);
}
.lf-send-stage.is-done {
  opacity: .7;
  color: var(--ink-soft);
}
.lf-send-stage.is-done .lf-send-stage-icon {
  color: var(--accent-deep);
  font-weight: 800;
}
.lf-send-stage-icon {
  font-size: 18px;
  width: 22px;
  display: inline-flex;
  justify-content: center;
}
.lf-send-stage-text {
  text-align: left;
}

/* Progress bar */
.lf-send-bar {
  width: 100%;
  height: 8px;
  background: color-mix(in oklab, var(--ink) 10%, transparent);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.lf-send-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-right: 1px solid var(--ink);
  transition: width .12s linear;
  position: relative;
}
.lf-send-bar-fill::after {
  /* shimmer */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: lf-shimmer 1.4s linear infinite;
}
@keyframes lf-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.lf-send-pct {
  margin-top: 10px;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.lf-send-foot {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
}

/* Mobile */
@media (max-width: 640px) {
  .lf-overlay { padding: 12px; }
  .lf-modal { padding: 24px 20px 20px; border-radius: 18px; }
  .lf-title { font-size: 22px; }
  .lf-opt { padding: 12px 14px; font-size: 14.5px; }
  .lf-result { padding: 32px 20px 24px; }
  .lf-result-emoji { width: 60px; height: 60px; font-size: 28px; }
  .lf-result-hot { padding: 24px 16px 18px !important; }
  .lf-preview .lf-preview-card { padding: 20px 18px 18px; }
  .lf-preview-big { font-size: 30px; }
  .lf-draft { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lf-draft-actions { width: 100%; }
  /* Sending screen mobile */
  .lf-sending { padding: 36px 22px 22px; }
  .lf-send-art { width: 120px; height: 120px; margin-bottom: 16px; }
  .lf-send-stage { font-size: 14px; }
  .lf-send-stages { min-height: 84px; }
}

/* === Burger / mobile nav === */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 0;
  position: relative;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-burger span {
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav.is-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 18px 18px;
  border-top: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg) 92%, transparent);
}
.nav-drawer a {
  padding: 12px 4px;
  font-size: 17px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
}
.nav-drawer a:last-child {
  border-bottom: none;
  margin-top: 10px;
  align-self: flex-start;
}
.nav.is-open .nav-drawer { display: flex; }

/* === Responsive (basic) === */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; font-size: 13.5px; }
  .wrap, .wrap-narrow { padding: 0 24px; }
  .nav-inner { padding: 12px 24px; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-inner { padding: 12px 20px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-collage { height: 360px; }
  .services-grid, .cases-grid, .steps { grid-template-columns: 1fr; }
  .tm-grid { column-count: 1; }
  .loss-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px dashed var(--line); padding-bottom: 18px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 18px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap, .wrap-narrow { padding: 0 18px; }
  .nav-inner { padding: 11px 18px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 26px; height: 26px; font-size: 15px; }

  /* Hero */
  section { position: relative; }
  .hero { padding: 28px 0 36px; }
  .hero h1 { font-size: clamp(46px, 11.5vw, 64px); line-height: 1.02; margin: 14px 0 16px; letter-spacing: -.02em; }
  .hero p.lead { font-size: 17px; margin-bottom: 24px; }
  .hero-cta { gap: 10px; }
  .hero-cta .meta { font-size: 17px; margin-top: 4px; }
  .btn { padding: 13px 18px; font-size: 14px; }
  .btn-sm { padding: 9px 13px; font-size: 12.5px; }

  /* Hero collage shrink */
  .hero-collage { height: 320px; }
  .hero-collage .sticker { transform-origin: center; }
  .hero-collage .sticker:nth-child(1) { width: 200px; left: 0; top: 4%; }
  .hero-collage .sticker:nth-child(2) { width: 158px; right: 0; top: 0; }
  .hero-collage .sticker:nth-child(3) { width: 200px; left: 8%; bottom: 6%; }
  .hero-collage > svg { right: 0 !important; bottom: 36% !important; width: 80px !important; }
  .hero-collage .hand { right: 0 !important; bottom: 22% !important; font-size: 18px !important; max-width: 130px !important; }

  /* Stats */
  .stats { padding: 18px 0 4px; }
  .stats-row { padding: 18px 0; }
  .stat-num { font-size: 32px; }
  .stat-lbl { font-size: 11.5px; }
  .stat { padding: 0 8px; }

  /* Brand row */
  .brand-row { gap: 8px 14px; padding: 18px 0 4px; }
  .brand-pill { font-size: 17px; padding: 4px 11px; }

  /* Sec heads */
  .sec-head { margin-bottom: 30px; }
  .sec-head h2 { font-size: clamp(34px, 8.6vw, 46px); line-height: 1.04; }
  .sec-head p { font-size: 16px; }

  /* Services */
  .services { padding: 60px 0; }
  .svc-card { padding: 22px; }
  .svc-card h3 { font-size: 24px; }
  .svc-card p { font-size: 14.5px; }

  /* Loss */
  .loss { padding: 56px 0; }
  .loss-copy h2 { font-size: clamp(34px, 8.8vw, 46px); line-height: 1.04; }
  .loss-copy p.lead { font-size: 17px; }
  .loss-stat { padding: 14px 16px; max-width: 100%; }
  .loss-stat .ls-big { font-size: 26px; }
  .loss-stat .ls-sub { font-size: 14px; }

  /* Calc card */
  .calc { padding: 22px 18px; box-shadow: 4px 4px 0 var(--ink); }
  .calc h3 { font-size: 22px; }
  .calc .calc-sub { font-size: 13px; }
  .calc-field { margin: 12px 0; }
  .calc-field label { font-size: 12.5px; }
  .calc-field label .val { font-size: 17px; }
  .calc-field input[type="range"]::-webkit-slider-thumb { width: 26px; height: 26px; }
  .calc-field input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; }
  .calc-out { padding: 18px; }
  .calc-out .co-big { font-size: 38px; }
  .calc-out .co-cell .co-num { font-size: 20px; }
  .calc-foot { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* Differentiator */
  .diff { padding: 60px 0 50px; }
  .diff-tags { gap: 8px 12px; margin-top: 20px; }
  .diff-tag { font-size: 20px; padding: 7px 14px; }
  .diff-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
  .diff-pillar { padding: 16px 14px; }
  .diff-pillar h4 { font-size: 18px; }
  .diff-pillar p { font-size: 13px; }
  .diff-pillar .pcount { font-size: 26px; }

  /* Journey — VERTICAL STACK on mobile */
  .journey { padding: 56px 0 64px; }
  .journey-board { padding: 20px 16px 18px; box-shadow: 4px 4px 0 var(--ink); }
  .journey-track {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 4px 0;
  }
  .journey-path,
  .j-dot,
  .email-pop { display: none; }
  .journey-stop {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: rotate(-1deg) !important;
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto;
  }
  .journey-stop:nth-child(even) { transform: rotate(1deg) !important; }
  .j-card { padding: 12px 14px; }
  .journey-legend { font-size: 12px; gap: 10px; flex-direction: column; align-items: flex-start; }
  .journey-controls { width: 100%; justify-content: flex-start; }

  /* Cases */
  .cases { padding: 60px 0; }
  .case-img { height: 150px; }
  .case h4 { font-size: 20px; }
  .case-metric .m { font-size: 22px; }
  .case-badge { font-size: 16px; padding: 5px 10px; top: -8px; right: -8px; }

  /* Before/After */
  .bafter { padding: 60px 0; }
  .ba-col { padding: 22px 20px; }
  .ba-col h3 { font-size: 22px; }
  .ba-arrow { width: 52px; height: 52px; font-size: 22px; }

  /* Process */
  .process { padding: 60px 0; }
  .step { padding: 18px; }
  .step-n { font-size: 48px; }
  .step h4 { font-size: 20px; }

  /* Testimonials */
  .testimonials { padding: 60px 0; }
  .tm { padding: 18px 18px 16px; }
  .tm-quote { font-size: 14.5px; }

  /* FAQ */
  .faq { padding: 56px 0; }
  .faq-q { font-size: 18px; gap: 12px; }
  .faq-toggle { width: 28px; height: 28px; font-size: 16px; }
  .faq-item.open .faq-a { max-height: 360px; }

  /* Final CTA */
  .cta-final { padding: 72px 0; }
  .cta-final h2 { font-size: clamp(38px, 10vw, 56px); line-height: 1.02; }
  .cta-final p { font-size: 16px; }
  .cta-orbit { display: none; }

  /* Footer */
  footer { padding: 40px 0 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 26px; }
  .foot-brand { font-size: 24px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Tweaks panel */
  .twk-panel { width: calc(100vw - 24px); right: 12px; bottom: 12px; max-height: 60vh; }
}

@media (max-width: 400px) {
  .wrap, .wrap-narrow { padding: 0 14px; }
  .nav-inner { padding: 10px 14px; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .diff-grid { grid-template-columns: 1fr; }
  /* Stats stay 2x2 — do NOT collapse to single column */
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 28px; }
  .stat-lbl { font-size: 11px; }
  .case-badge { font-size: 14px; }
  .hero-collage { height: 280px; }
  .hero-collage .sticker:nth-child(1) { width: 178px; }
  .hero-collage .sticker:nth-child(2) { width: 138px; }
  .hero-collage .sticker:nth-child(3) { width: 178px; }
}
