/* sections.css - story, dot-matrix demo, redesigned pricing, shared modifiers */

.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }
.eyebrow--light { color: #ff8163; }
.eyebrow--light::before { background: #ff8163; }

/* ---------- PRICING STRIP ---------- */
.pricing.section { padding: var(--section-pad) var(--pad); }
.pricing__strip {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.pricing__strip .eyebrow { margin-bottom: 0; }
.pricing__strip .section__title { color: var(--cream); font-size: clamp(2.2rem, 6vw, 4.6rem); }
.pricing__strip .section__lead { color: rgba(255,245,238,0.6); margin-top: 0; font-size: 1rem; }
.pricing__strip-cta { margin-top: 4px; }

/* ---------- 8-BIT TEASER (landing only) — looks retro, just redirects ---------- */
/* same dark band + live dot-matrix as the Setup (how) section */
.pricing.pricing--8bit {
  background: var(--screen);
  /* teaser only — compact band, content goes wide (not a centered column) */
  padding-top: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(28px, 3vw, 44px);
}
/* spread across the full band: heading left, lead + CTA right */
.pricing--8bit .pricing__strip {
  max-width: var(--maxw);
  flex-direction: row; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  text-align: left; gap: clamp(28px, 5vw, 72px);
}
.pricing--8bit .pricing__strip-text { flex: 1 1 52%; min-width: 280px; }
.pricing--8bit .pricing__strip-text .section__title { margin: 10px 0 0; }
.pricing--8bit .pricing__strip-action {
  flex: 1 1 34%; min-width: 240px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.pricing--8bit .pricing__strip-action .section__lead { margin: 0; max-width: 32ch; }
.pricing--8bit .pricing__strip-cta { margin-top: 0; }
@media (max-width: 820px) {
  .pricing--8bit .pricing__strip { flex-direction: column; text-align: center; align-items: center; }
  .pricing--8bit .pricing__strip-action { align-items: center; }
}
.pricing--8bit .pricing__strip { position: relative; z-index: 1; }
/* pixel eyebrow */
.pricing--8bit .eyebrow {
  font-family: "Press Start 2P", monospace; font-size: .6rem; letter-spacing: .05em;
  color: #ff8163; line-height: 1.6;
}
.pricing--8bit .eyebrow::before { background: #ff8163; }
/* pixel CTA — square, hard offset shadow, mono caps */
.pricing--8bit .pricing__strip-cta {
  font-family: "JetBrains Mono", monospace; text-transform: uppercase;
  font-size: .82rem; font-weight: 500; letter-spacing: .06em;
  border-radius: 0; background: var(--accent); color: #fff;
  border: 3px solid var(--accent-deep);
  box-shadow: 6px 6px 0 0 var(--accent-deep);
  transition: transform .08s, box-shadow .08s;
}
.pricing--8bit .pricing__strip-cta:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 0 var(--accent-deep);
  background: var(--accent);
}
@media (prefers-reduced-motion: reduce) {
  .pricing--8bit .pricing__strip-cta { transition: none; }
}

/* ---------- CALENDAR ---------- */
.calendar.section {
  /* Full viewport width so the glow reaches true edges */
  max-width: none;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
/* Center content inside the full-width section; keep above glow */
.calendar .section__head,
.calendar .dash {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  position: relative;
  z-index: 1;
}
.calendar .section__head { margin-bottom: clamp(32px, 4vw, 52px); }
.calendar .section__lead { font-size: 1rem; }

/* wind-flow glow layer */
.cal-glow {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
  /* Fade transparent at top → the section boundary becomes invisible */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 16%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%);
}
.cal-glow__orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.85;
}
.cal-glow__orb--1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(99,30,180,0.32) 0%, transparent 70%);
  top: -120px; left: -80px;
  animation: wind-1 14s ease-in-out infinite;
}
.cal-glow__orb--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(20,90,200,0.28) 0%, transparent 70%);
  top: 10%; left: 30%;
  animation: wind-2 18s ease-in-out infinite;
}
.cal-glow__orb--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,30,100,0.22) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation: wind-3 16s ease-in-out infinite;
}
.cal-glow__orb--4 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(10,140,120,0.20) 0%, transparent 70%);
  bottom: 10%; left: 55%;
  animation: wind-4 20s ease-in-out infinite;
}
@keyframes wind-1 {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(160px, 80px) scale(1.1); }
  45%  { transform: translate(320px, 30px) scale(0.9); }
  65%  { transform: translate(200px, 150px) scale(1.05); }
  85%  { transform: translate(60px, 100px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes wind-2 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-200px, 60px) scale(1.12); }
  50%  { transform: translate(180px, 120px) scale(0.88); }
  75%  { transform: translate(260px, -60px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes wind-3 {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(-250px, -80px) scale(1.1); }
  55%  { transform: translate(-400px, 40px) scale(0.92); }
  80%  { transform: translate(-180px, -120px) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes wind-4 {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(-180px, -100px) scale(1.15); }
  50%  { transform: translate(-360px, 60px) scale(0.9); }
  75%  { transform: translate(-100px, 120px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}


/* ---------- STORY ---------- */
.story { max-width: 1180px; }
.story__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.story__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4.6rem); letter-spacing: -0.03em;
  max-width: 15ch; margin: 16px 0 clamp(32px, 4vw, 52px);
}
.story__col--text p:not(.eyebrow) { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); margin-bottom: 18px; line-height: 1.5; }
.story__lead { color: var(--ink) !important; font-weight: 500; }
.story__q {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  color: var(--accent) !important; font-size: clamp(1.3rem, 2.4vw, 2rem) !important;
}
.story__col--side { display: flex; flex-direction: column; gap: 22px; justify-content: center; }

/* Missed-call proof card - fills the top-right, drives the pain home */
.missed-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: 0 30px 70px -45px rgba(22,19,15,.35);
}
.missed-card__row { display: flex; align-items: center; gap: 14px; }
.missed-card__icon {
  width: 46px; height: 46px; border-radius: 14px; flex: none; position: relative;
  background: rgba(255,90,60,.14); border: 1px solid rgba(255,90,60,.3);
  animation: pulse-dot 2.2s infinite;
}
.missed-card__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; width: 22px; height: 22px;
  background: var(--accent);
  -webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h3l1.5 4-2 1.5a12 12 0 005 5l1.5-2 4 1.5V18a2 2 0 01-2 2A15 15 0 014 6a2 2 0 011-2z'/%3E%3Cpath d='M15 4l5 5M20 4l-5 5'/%3E%3C/svg%3E");
  mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h3l1.5 4-2 1.5a12 12 0 005 5l1.5-2 4 1.5V18a2 2 0 01-2 2A15 15 0 014 6a2 2 0 011-2z'/%3E%3Cpath d='M15 4l5 5M20 4l-5 5'/%3E%3C/svg%3E");
}
.missed-card__body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.missed-card__label { font-weight: 600; font-size: 1rem; color: var(--accent); }
.missed-card__sub { font-size: .82rem; color: var(--ink-mute); }
.missed-card__pill { font-family: var(--font-mono); font-weight: 600; font-size: .78rem; color: #fff; background: var(--accent); padding: 4px 10px; border-radius: 100px; flex: none; }
.missed-card__cost { margin-top: 20px; font-size: 1.02rem; color: var(--ink-soft); line-height: 1.4; }
.missed-card__cost strong { color: var(--ink); font-weight: 700; font-size: 1.15rem; }
.missed-card__note { margin-top: 12px; font-size: .85rem; color: var(--ink-mute); line-height: 1.45; border-top: 1px solid var(--line); padding-top: 12px; }

.story__solution {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 20px 50px -30px rgba(22,19,15,.2);
}
.story__solution p { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 0; line-height: 1.6; }

/* ---------- DEMO - dark "screen" device on cream ---------- */
.demo__inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
.demo__head { max-width: 460px; }
.demo__title {
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 3.6rem); letter-spacing: -0.02em; margin: 14px 0 18px;
}
.demo__sub { color: var(--ink-soft); font-size: 1.15rem; }

/* The contained dark screen - same dark language as pricing setup + CTA */
.demo__screen {
  position: relative; overflow: hidden;
  background: var(--screen); color: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 50px 110px -50px rgba(22,19,15,.55);
  min-height: 420px;
}
.demo__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 1; }

.demo__terminal {
  position: relative; z-index: 2; margin: 18px;
  background: rgba(14, 11, 8, 0.28);
  border: 1px solid rgba(233, 220, 203, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(3px);
  overflow: hidden;
}
.demo__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-bottom: 1px solid rgba(233,220,203,.12);
  font-family: "JetBrains Mono", monospace;
}
.demo__dots { display: flex; gap: 7px; }
.demo__dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(233,220,203,.28); }
.demo__dots i:first-child { background: #ff5a3c; }
.demo__status { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(244,237,228,.6); margin-left: 4px; }
/* Amber, static dot - this terminal is a scripted example, not a live connection. */
.demo__status i { width: 8px; height: 8px; border-radius: 50%; background: #d8a23a; }
/* Profession label - updated per conversation by the reel (demo-reel.js). */
.demo__pro { color: rgba(244,237,228,.85); font-weight: 500; }
.demo__pro:not(:empty)::before { content: "· "; color: rgba(244,237,228,.4); }

/* Auto-scrolling chat: fixed height so longer conversations scroll within the
   terminal. The reel keeps the latest line in view (demo-reel.js). */
.demo__chat {
  padding: 24px 22px; display: flex; flex-direction: column; gap: 16px;
  height: clamp(280px, 42vh, 380px); overflow-y: auto; scroll-behavior: smooth;
  font-family: "JetBrains Mono", monospace;
  scrollbar-width: thin; scrollbar-color: rgba(233,220,203,.28) transparent;
}
.demo__chat::-webkit-scrollbar { width: 6px; }
.demo__chat::-webkit-scrollbar-thumb { background: rgba(233,220,203,.24); border-radius: 100px; }
.demo__chat::-webkit-scrollbar-track { background: transparent; }
.chat-line:last-child { margin-bottom: 2px; }
.chat-line {
  display: flex; flex-direction: column; gap: 5px; max-width: 86%;
  opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.chat-line.is-shown { opacity: 1; transform: none; }
.chat-line[data-role="voicyy"] { align-self: flex-end; align-items: flex-end; text-align: right; }
.chat-role { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(244,237,228,.45); }
.chat-line[data-role="voicyy"] .chat-role { color: #ff8163; }
.chat-text {
  font-size: .92rem; line-height: 1.5;
  background: rgba(10,8,6,.5); border: 1px solid rgba(233,220,203,.14);
  backdrop-filter: blur(3px);
  padding: 11px 15px; border-radius: 14px; color: var(--cream);
}
.chat-line[data-role="voicyy"] .chat-text { background: rgba(180,52,32,.45); border-color: rgba(255,90,60,.45); }
.demo__chat.is-typing::after {
  content: "▋"; color: var(--accent); align-self: flex-start;
  animation: caret 1s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

/* ---------- PRICING — 4-column card grid ---------- */
/* Warm dark band — lighter than the HOW black, just dark enough to pull the eye
   to the price. The cursor-driven water (pricing-water.js) glows on top of it. */
.pricing {
  position: relative; isolation: isolate; overflow: hidden;
  max-width: none; margin: 0;            /* full-bleed band, not a centered box */
  background: #221d18; color: var(--cream);
  padding-top: clamp(48px, 5vw, 72px); padding-bottom: clamp(56px, 7vw, 90px);
}
.pricing__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.pricing > .section__head,
.pricing > #pricingGrid { position: relative; z-index: 1; }
.pricing .section__title { color: var(--cream); }
.pricing .eyebrow { color: #ff8163; }
.pricing .eyebrow::before { background: #ff8163; }
.pricing .section__lead { color: rgba(244, 237, 228, .7); }
#pricingGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
@media (max-width: 1100px) { #pricingGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { #pricingGrid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.price-card:hover { box-shadow: 0 24px 60px -30px rgba(22,19,15,.22); transform: translateY(-3px); }
.price-card--popular {
  border: 2px solid var(--ink);
  box-shadow: 0 30px 70px -30px rgba(22,19,15,.3);
}

.price-card__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.price-card__tag {
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink-mute); background: rgba(22,19,15,.07);
  padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}
.price-card__tag--popular {
  background: #00d4d4; color: #000;
}

.price-card__priceline { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.price-card__original { font-size: 1.1rem; color: var(--ink-mute); text-decoration: line-through; }
.price-card__price { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; letter-spacing: -.03em; color: var(--ink); }
.price-card__month { font-size: .9rem; color: var(--ink-mute); }

.price-card__setup { font-size: .85rem; color: var(--ink-soft); }

.price-card__divider { border: none; border-top: 1px solid var(--line); margin: 4px 0; }

.price-card__minutes { font-size: .92rem; color: var(--ink-soft); }
.price-card__minutes strong { color: var(--ink); font-weight: 600; }
.price-card__minutes--warn { color: var(--accent); }
.price-card__minutes--warn strong { color: var(--accent); }

.price-card__roi {
  display: inline-block; font-size: .78rem; font-weight: 600;
  background: rgba(0,180,100,.12); color: #007a40;
  border: 1px solid rgba(0,180,100,.25);
  padding: 3px 10px; border-radius: 100px;
}

.price-card__desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.45; }

.price-card__feats { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-top: 4px; flex: 1; }
.price-card__feat { font-size: .86rem; color: var(--ink-soft); padding-left: 20px; position: relative; line-height: 1.35; }
.price-card__feat--yes::before {
  content: "✓"; position: absolute; left: 0; color: var(--ink); font-weight: 700; font-size: .8rem;
}
.price-card__feat--no {
  color: var(--ink-mute); text-decoration: line-through;
}
.price-card__feat--no::before {
  content: "✕"; position: absolute; left: 0; color: var(--ink-mute); font-weight: 600; font-size: .8rem;
}

.price-card__cta {
  margin-top: auto; width: 100%; justify-content: center;
  padding: 14px 20px; font-size: .9rem; border-radius: 10px;
}

.price-guarantee {
  text-align: center; font-size: .82rem; color: var(--ink-mute);
  margin-top: 24px; padding: 0 var(--pad);
}
.price-enterprise {
  display: block; text-align: center; font-size: .9rem; color: var(--ink-soft);
  margin-top: 12px; padding: 0 var(--pad); text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- PRICING — homepage teaser (compact "ab 49 €", links to /preise.html) ---------- */
#pricingGrid.pricing__grid--single {
  display: block; /* no card grid on the homepage — just the compact teaser below */
}
.price-teaser {
  position: relative; isolation: isolate;
  max-width: 520px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
/* Aurora halo — a soft coral + lavender glow that breathes behind the price.
   Deliberately the opposite of the HOW dot-matrix: calm, airy, no hard edges. */
.price-teaser::before {
  content: ""; position: absolute; z-index: -1;
  left: 50%; top: 44%; transform: translate(-50%, -50%);
  width: min(620px, 108%); height: 340px; pointer-events: none;
  background:
    radial-gradient(42% 58% at 36% 46%, rgba(255, 90, 60, .22), transparent 70%),
    radial-gradient(46% 56% at 66% 56%, rgba(207, 195, 232, .26), transparent 72%);
  filter: blur(26px);
  animation: priceAura 9s ease-in-out infinite;
}
@keyframes priceAura {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: .9; }
  50%      { transform: translate(-50%, -52%) scale(1.12) rotate(4deg); opacity: 1; }
}
.price-teaser__lead {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display); color: var(--ink);
}
.price-teaser__from { font-size: 1.1rem; font-weight: 500; color: rgba(244, 237, 228, .65); }
/* Foil shine — a coral glint sweeps across the cream number on the dark band. */
.price-teaser__amt {
  font-size: clamp(3rem, 7vw, 4.4rem); font-weight: 700; letter-spacing: -.03em; line-height: 1;
  background: linear-gradient(100deg,
    var(--cream) 0%, var(--cream) 42%, var(--accent) 50%, var(--cream) 58%, var(--cream) 100%);
  background-size: 280% 100%; background-position: 150% 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: priceShine 5.5s var(--ease) infinite;
}
@keyframes priceShine {
  0%, 18% { background-position: 150% 0; }
  60%, 100% { background-position: -60% 0; }
}
.price-teaser__unit { font-size: 1.1rem; font-weight: 500; color: rgba(244, 237, 228, .5); }
.price-teaser__note { font-size: .95rem; color: rgba(244, 237, 228, .65); }
/* Light pill so the CTA pops against the dark band (btn--dark would vanish). */
.price-teaser__cta { margin-top: 8px; background: var(--cream); color: var(--ink); }
.price-teaser__cta:hover { background: #fff; color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .price-teaser::before { animation: none; }
  .price-teaser__amt {
    animation: none; background: none;
    -webkit-text-fill-color: var(--cream); color: var(--cream);
  }
}

@media (max-width: 820px) {
  .story__grid { grid-template-columns: 1fr; align-items: start; }
  .demo__inner { grid-template-columns: 1fr; }
  .demo__screen { min-height: 380px; }
}

/* ---------- CALLBACK SECTION ---------- */
.callback-section {
  /* cream wrapper — gives the dark card breathing room on every side (not edge-to-edge) */
  max-width: var(--maxw); margin: 0 auto;
  padding: var(--section-pad) clamp(16px, 2.5vw, 32px);
}
.callback-section__inner {
  background:
    radial-gradient(120% 130% at 80% 0%, rgba(255,90,60,0.12), transparent 55%),
    var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  max-width: 1320px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(48px, 6vw, 80px) clamp(34px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 56px); align-items: center;
}
@media (max-width: 900px) { .callback-section__inner { grid-template-columns: 1fr; } }

.callback-section__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4.6rem); letter-spacing: -.03em;
  line-height: 1.08; margin-bottom: 16px; color: var(--ink);
}
.callback-section__sub { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.55; max-width: 40ch; }

.callback-section__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .callback-section__cards { grid-template-columns: 1fr; } }

.callback-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.callback-card--accent {
  background: var(--accent); border-color: transparent; color: #fff;
}
.callback-card__title { font-weight: 700; font-size: 1.05rem; }
.callback-card__sub { font-size: .88rem; opacity: .75; line-height: 1.45; }
.callback-card__label { font-size: .82rem; font-weight: 600; opacity: .8; }
.callback-card__input {
  width: 100%; padding: 13px 16px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; font: inherit; font-size: .95rem;
  background: rgba(255,255,255,.1); color: var(--cream); outline: none;
  transition: border-color .2s;
}
.callback-card__input::placeholder { color: rgba(244,237,228,.4); }
.callback-card__input:focus { border-color: var(--accent); }
.callback-card__btn {
  width: 100%; justify-content: center; border-radius: 10px;
  background: var(--accent); color: #fff; padding: 14px 20px; font-size: .92rem;
  margin-top: 2px;
}
.callback-card__btn:hover { background: var(--accent-deep); transform: translateY(-2px); }
.callback-card__btn2 {
  margin-top: auto; width: 100%; justify-content: center;
  border-radius: 10px; background: rgba(255,255,255,.15);
  color: #fff; border: 1px solid rgba(255,255,255,.3);
  padding: 14px 20px; font-size: .92rem;
}
.callback-card__btn2:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.callback-card__msg { font-size: .82rem; min-height: 18px; }
.callback-card__msg--ok { color: #6eef9a; }
.callback-card__msg--err { color: #ff9e8a; }

/* Single CTA (replaces the dual cards) */
.callback-section__cta { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; padding-left: clamp(16px, 3vw, 56px); }
.callback-cta__btn { font-size: 1.05rem; padding: 16px 32px; }
.callback-cta__note { font-size: .9rem; color: var(--ink-mute); line-height: 1.5; max-width: 42ch; }
@media (max-width: 900px) { .callback-section__cta { align-items: stretch; padding-left: 0; } .callback-cta__btn { justify-content: center; } }

/* Trust bar */
.trust-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 48px;
  padding: 22px var(--pad);
}
.trust-bar__item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: rgba(244,237,228,.55);
}
.trust-bar__item svg { color: var(--accent); flex: none; }

/* ---------- EXIT POPUP ---------- */
.exit-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.exit-popup[hidden] { display: none; }
.exit-popup__backdrop {
  position: absolute; inset: 0;
  background: rgba(22,19,15,.6); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .35s var(--ease);
}
.exit-popup.is-open .exit-popup__backdrop { opacity: 1; }

.exit-popup__card {
  position: relative; z-index: 1;
  background: var(--screen); color: var(--cream);
  border-radius: var(--radius-lg); padding: 48px 40px;
  max-width: 420px; width: calc(100% - 40px);
  text-align: center;
  transform: translateY(24px) scale(0.97);
  opacity: 0; transition: transform .35s var(--ease), opacity .35s var(--ease);
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.7);
}
.exit-popup.is-open .exit-popup__card { transform: none; opacity: 1; }

.exit-popup__close {
  position: absolute; top: 14px; right: 16px;
  font-size: 1rem; color: rgba(244,237,228,.4);
  padding: 6px 10px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.exit-popup__close:hover { color: var(--cream); background: rgba(255,255,255,.08); }

.exit-popup__wave {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  height: 32px; margin-bottom: 20px;
}
.exit-popup__wave i {
  width: 4px; height: 100%; border-radius: 4px;
  background: var(--accent); animation: wave 1s ease-in-out infinite;
}
.exit-popup__wave i:nth-child(2){ animation-delay:.1s }
.exit-popup__wave i:nth-child(3){ animation-delay:.2s }
.exit-popup__wave i:nth-child(4){ animation-delay:.3s }
.exit-popup__wave i:nth-child(5){ animation-delay:.15s }

.exit-popup__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 10px;
}
.exit-popup__sub { font-size: .92rem; color: rgba(244,237,228,.6); margin-bottom: 28px; }
.exit-popup__cta { width: 100%; justify-content: center; border-radius: 12px; }
.exit-popup__dismiss {
  display: block; margin: 16px auto 0;
  font-size: .82rem; color: rgba(244,237,228,.4);
  transition: color .2s;
}
.exit-popup__dismiss:hover { color: rgba(244,237,228,.7); }

/* ---------- HERO TRUST BAR (in-hero, pinned above the fold) ---------- */
.hero-trust {
  position: relative; z-index: 5;
  flex: none;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 36px;
  padding: 20px var(--pad) 28px;
}
.hero-trust__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--ink); font-weight: 600;
}
.hero-trust__item svg {
  color: #fff; background: var(--accent);
  width: 18px; height: 18px; padding: 3px;
  border-radius: 50%; flex: none;
}
