/* ===========================================================
   Anfragio — Landingpage
   Design system: light, electric-blue accent, bold editorial
   =========================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #ffffff;
  --bg-alt:    #f3f5fb;
  --bg-deep:   #0a0e1a;
  --ink:       #0b1020;
  --ink-soft:  #5b6478;
  --ink-faint: #8a93a8;
  --line:      #e7eaf3;
  --line-soft: #eef1f8;

  --accent:        #2b5bff;
  --accent-press:  #1d44e0;
  --accent-tint:   #e9eeff;
  --accent-tint-2: #f3f6ff;
  --accent-ink:    #1530a8;

  --green:      #16a866;
  --green-tint: #e3f7ee;

  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(11,16,32,.06), 0 2px 8px rgba(11,16,32,.04);
  --shadow-md: 0 8px 24px rgba(11,16,32,.08), 0 2px 8px rgba(11,16,32,.04);
  --shadow-lg: 0 30px 60px -20px rgba(11,16,32,.30), 0 12px 28px -12px rgba(11,16,32,.18);
  --shadow-blue: 0 24px 50px -18px rgba(43,91,255,.45);

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-tint);
  padding: 7px 13px; border-radius: 100px;
  white-space: nowrap;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.muted { color: var(--ink-soft); }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -.025em; }
.h-hero {
  font-size: clamp(2.7rem, 6.4vw, 5.4rem);
  line-height: .98; letter-spacing: -.035em; font-weight: 800;
  text-wrap: balance;
}
.h-sec {
  font-size: clamp(2.05rem, 4.4vw, 3.5rem);
  letter-spacing: -.03em; text-wrap: balance;
}
.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  color: var(--ink-soft); line-height: 1.55; font-weight: 400;
  text-wrap: pretty;
}
.accent-text { color: var(--accent); }
.hl {
  background: linear-gradient(180deg, transparent 60%, var(--accent-tint) 60%);
  padding-inline: .05em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 1rem;
  padding: 14px 24px; border-radius: 13px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--accent-press); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 1.08rem; border-radius: 14px; }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-white { background: #fff; color: var(--accent-ink); box-shadow: 0 14px 30px -12px rgba(0,0,0,.4); }
.btn-white:hover { transform: translateY(-2px); }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -.03em; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent); display: grid; place-items: center;
  box-shadow: var(--shadow-blue);
}
.logo__mark svg { width: 18px; height: 18px; }
.nav__links { display: flex; gap: 34px; }
.nav__links a { font-size: .98rem; font-weight: 500; color: var(--ink-soft); transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__login { font-weight: 600; font-size: .98rem; }
.nav__login:hover { color: var(--accent); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(4rem, 8vw, 7rem); overflow: clip; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 78% 12%, rgba(43,91,255,.10), transparent 70%),
    radial-gradient(closest-side at 50% 50%, rgba(11,16,32,.04) 1px, transparent 1px) 0 0 / 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent);
          mask-image: linear-gradient(180deg, #000 55%, transparent);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__copy .eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 34px; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid #fff;
  margin-left: -10px; background-size: cover; box-shadow: var(--shadow-sm);
}
.avatars span:first-child { margin-left: 0; }
.hero__trust small { font-size: .9rem; color: var(--ink-soft); line-height: 1.3; }
.hero__trust small b { color: var(--ink); font-weight: 700; }
.trust-line { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font-size: .87rem; color: var(--ink-faint); font-weight: 500; }
.trust-line span { display: inline-flex; align-items: center; gap: 7px; }
.trust-line .check { color: var(--green); font-weight: 800; }

/* ---------- Hero stage (phones) ---------- */
.stage { position: relative; height: 600px; display: grid; place-items: center; }
.stage__glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,91,255,.22), transparent 65%);
  filter: blur(10px); z-index: 0;
}

/* Phone frame */
.phone {
  position: relative; width: 296px; height: 600px;
  background: #0b1020; border-radius: 46px; padding: 11px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  z-index: 2;
}
.phone__screen {
  position: relative; width: 100%; height: 100%;
  background: #fff; border-radius: 36px; overflow: hidden;
}
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #0b1020; border-radius: 100px; z-index: 10;
}
/* secondary stacked phones */
.phone--back {
  position: absolute; width: 250px; height: 510px; z-index: 1;
  border-radius: 40px; padding: 9px;
  box-shadow: var(--shadow-lg);
}
.phone--back .phone__screen { border-radius: 31px; }
.phone--left  { left: -2%;  top: 14%; transform: rotate(-9deg); }
.phone--right { right: -2%; top: 16%; transform: rotate(9deg); }
.phone--back .phone__notch { width: 78px; height: 21px; }

/* floating chips */
.chip {
  position: absolute; z-index: 5;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 11px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px;
  animation: float 5s var(--ease) infinite;
}
.chip__ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.chip__big { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; line-height: 1; white-space: nowrap; }
.chip__lbl { font-size: .73rem; color: var(--ink-soft); font-weight: 500; white-space: nowrap; }
.chip--a { top: 8%; right: -6%; animation-delay: -1s; }
.chip--b { bottom: 13%; left: -10%; animation-delay: -2.6s; }
.chip--c { top: 46%; right: -11%; animation-delay: -3.8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .chip { animation: none; } }

/* ---------- Funnel screen UI (inside phone) ---------- */
.fn { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 44px 20px 22px; background: #fff; }
.fn__bar { height: 5px; background: var(--line); border-radius: 100px; overflow: hidden; margin-bottom: 22px; }
.fn__bar i { display: block; height: 100%; width: 20%; background: var(--accent); border-radius: 100px; transition: width .5s var(--ease); }
.fn__brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .82rem; margin-bottom: 18px; }
.fn__brand .b { width: 22px; height: 22px; border-radius: 7px; background: var(--accent); display: grid; place-items: center; color: #fff; font-size: .7rem; font-weight: 800; }
.fn__q { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 6px; }
.fn__sub { font-size: .85rem; color: var(--ink-soft); margin-bottom: 18px; }
.fn__opts { display: flex; flex-direction: column; gap: 10px; }
.fn__opt {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line); border-radius: 14px; padding: 14px 14px;
  font-weight: 600; font-size: .92rem; background: #fff;
  transition: border-color .25s, background .25s, transform .25s;
}
.fn__opt .oic { width: 30px; height: 30px; border-radius: 9px; background: var(--accent-tint); display: grid; place-items: center; flex-shrink: 0; }
.fn__opt.sel { border-color: var(--accent); background: var(--accent-tint-2); transform: scale(1.015); }
.fn__opt.sel .oic { background: var(--accent); }
.fn__spacer { flex: 1; }
.fn__btn { background: var(--accent); color: #fff; text-align: center; font-weight: 700; padding: 14px; border-radius: 13px; font-size: .95rem; }
.fn__field { border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 14px; font-size: .88rem; color: var(--ink-soft); margin-bottom: 10px; display: flex; align-items: center; gap: 9px; }
.fn__field .cursor { width: 1.5px; height: 16px; background: var(--accent); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.fn__success { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; }
.fn__check { width: 78px; height: 78px; border-radius: 50%; background: var(--green-tint); display: grid; place-items: center; margin-bottom: 8px; }
.fn__check svg { width: 38px; height: 38px; }
.fn__success h4 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; }
.fn__success p { font-size: .88rem; color: var(--ink-soft); max-width: 200px; }

/* mini static funnel (back phones) */
.mini { position: absolute; inset: 0; padding: 34px 16px 16px; display: flex; flex-direction: column; }
.mini .fn__bar { margin-bottom: 16px; }
.mini h5 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 14px; }
.mini .mopt { border: 1.4px solid var(--line); border-radius: 11px; padding: 11px 12px; font-size: .78rem; font-weight: 600; margin-bottom: 8px; }
.mini .mopt.on { border-color: var(--accent); background: var(--accent-tint-2); }

/* ===========================================================
   LOGO STRIP
   =========================================================== */
.logos { padding-block: 38px; border-block: 1px solid var(--line-soft); }
.logos__lead { text-align: center; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: 22px; }
.logos__row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.logos__row span { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #aeb6c8; letter-spacing: -.02em; opacity: .9; }

/* ===========================================================
   PROBLEM
   =========================================================== */
.problem { background: var(--bg-alt); }
.problem__head { max-width: 760px; margin-bottom: 56px; }
.problem__head h2 { margin: 18px 0 0; }
.problem__head h2 .strike { position: relative; }
.problem__head h2 .strike::after { content: ""; position: absolute; left: -2%; right: -2%; top: 52%; height: .09em; background: var(--accent); transform: rotate(-2.5deg); }
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.pcard__n { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--accent); letter-spacing: -.04em; line-height: 1; margin-bottom: 16px; }
.pcard h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pcard p { color: var(--ink-soft); font-size: .98rem; }
.stat-band {
  margin-top: 46px; background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px); display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.stat-band__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(4.5rem, 11vw, 8.5rem); line-height: .85; letter-spacing: -.04em; }
.stat-band__big small { font-size: .42em; color: var(--accent); vertical-align: top; }
.stat-band__txt h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); color: #fff; margin-bottom: 10px; }
.stat-band__txt p { color: #aab2c6; font-size: 1.05rem; max-width: 480px; }

/* ===========================================================
   PACKAGES
   =========================================================== */
.pkg__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.pkg__head .eyebrow { margin-bottom: 18px; }
.pkg__head p { margin-top: 16px; }
.pkg__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #d4dbef; }
.pkg__tag { align-self: flex-start; font-size: .76rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 6px 11px; border-radius: 8px; margin-bottom: 22px; }
.pkg__visual { height: 132px; border-radius: 16px; margin-bottom: 24px; position: relative; overflow: hidden; display: grid; place-items: center; }
.pkg__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; box-shadow: var(--shadow-md); background: #fff; z-index: 2; }
.pkg__icon svg { width: 30px; height: 30px; }
.pkg h3 { font-size: 1.55rem; margin-bottom: 8px; }
.pkg__for { font-size: .92rem; color: var(--ink-soft); margin-bottom: 20px; min-height: 44px; }
.pkg__for b { color: var(--ink); font-weight: 700; }
.pkg ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.pkg li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; }
.pkg li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.pkg__foot { margin-top: auto; }
.pkg__targets { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.pkg__targets span { font-size: .8rem; font-weight: 600; background: var(--bg-alt); color: var(--ink-soft); padding: 5px 11px; border-radius: 8px; }
.pkg .btn { width: 100%; }

/* ===========================================================
   FEATURES
   =========================================================== */
.feat { background: var(--bg-alt); }
.feat__head { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; margin-bottom: 50px; }
.feat__head .lead { max-width: 420px; }
.feat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fcard__ic { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-tint); display: grid; place-items: center; margin-bottom: 20px; }
.fcard__ic svg { width: 25px; height: 25px; color: var(--accent); }
.fcard h3 { font-size: 1.28rem; margin-bottom: 9px; }
.fcard p { color: var(--ink-soft); font-size: .97rem; }
.fcard--dark { background: var(--ink); border: none; }
.fcard--dark .fcard__ic { background: rgba(255,255,255,.1); }
.fcard--dark .fcard__ic svg { color: #fff; }
.fcard--dark h3 { color: #fff; }
.fcard--dark p { color: #aab2c6; }

/* ===========================================================
   CRM / DASHBOARD
   =========================================================== */
.crm__head { max-width: 720px; margin-bottom: 50px; }
.crm__head h2 { margin: 18px 0 16px; }
.dash {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.dash__top { display: flex; align-items: center; gap: 9px; padding: 15px 20px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.dash__dots { display: flex; gap: 7px; }
.dash__dots i { width: 11px; height: 11px; border-radius: 50%; background: #d4dbef; }
.dash__url { margin-left: 12px; font-size: .82rem; color: var(--ink-faint); background: #fff; border: 1px solid var(--line); padding: 5px 14px; border-radius: 8px; font-weight: 500; }
.dash__body { display: grid; grid-template-columns: 200px 1fr; min-height: 460px; }
.dash__side { border-right: 1px solid var(--line); padding: 20px 14px; display: flex; flex-direction: column; gap: 4px; background: #fcfdff; }
.dash__side .si { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.dash__side .si svg { width: 18px; height: 18px; }
.dash__side .si.on { background: var(--accent-tint); color: var(--accent-ink); }
.dash__side .si.on svg { color: var(--accent); }
.dash__side hr { border: none; border-top: 1px solid var(--line); margin: 12px 6px; }
.dash__main { padding: 24px; }
.dash__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.kpi { border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.kpi__lbl { font-size: .76rem; color: var(--ink-soft); font-weight: 600; margin-bottom: 8px; }
.kpi__val { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; letter-spacing: -.03em; line-height: 1; }
.kpi__chg { font-size: .76rem; font-weight: 700; margin-top: 7px; display: inline-flex; align-items: center; gap: 3px; }
.kpi__chg.up { color: var(--green); }
.dash__pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.col__head { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; font-weight: 700; margin-bottom: 11px; color: var(--ink-soft); }
.col__head .cnt { background: var(--bg-alt); border-radius: 6px; padding: 1px 8px; font-size: .72rem; }
.lead-card { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 12px; margin-bottom: 9px; box-shadow: var(--shadow-sm); }
.lead-card__name { font-weight: 700; font-size: .86rem; margin-bottom: 4px; }
.lead-card__meta { font-size: .75rem; color: var(--ink-faint); display: flex; align-items: center; gap: 6px; }
.lead-card__tag { display: inline-block; margin-top: 8px; font-size: .68rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.t-pv { background: var(--accent-tint); color: var(--accent-ink); }
.t-dach { background: #fff0e6; color: #b25a18; }
.t-hot { background: var(--green-tint); color: #0d7a47; }

/* ===========================================================
   SOCIAL PROOF
   =========================================================== */
.proof { background: var(--bg-alt); }
.proof__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 26px; align-items: stretch; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote__mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--accent); font-weight: 800; margin-bottom: 12px; }
.quote p { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -.02em; line-height: 1.25; margin-bottom: auto; text-wrap: balance; }
.quote__by { display: flex; align-items: center; gap: 13px; margin-top: 30px; }
.quote__by .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #2b5bff, #5b8cff); flex-shrink: 0; }
.quote__by b { display: block; font-size: .98rem; }
.quote__by small { color: var(--ink-soft); font-size: .86rem; }
.proof__stats { display: grid; grid-template-rows: repeat(3, 1fr); gap: 26px; }
.bigstat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; }
.bigstat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.2rem); letter-spacing: -.04em; line-height: 1; color: var(--accent); }
.bigstat .l { color: var(--ink-soft); font-size: .98rem; margin-top: 8px; }

/* ===========================================================
   FINAL CTA
   =========================================================== */
.cta-final { padding-block: clamp(4rem, 8vw, 7rem); }
.cta-card {
  position: relative; overflow: hidden;
  background: var(--accent); color: #fff; border-radius: 32px;
  padding: clamp(44px, 7vw, 88px); text-align: center;
  box-shadow: var(--shadow-blue);
}
.cta-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(40% 60% at 15% 20%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(closest-side at 50% 50%, rgba(255,255,255,.10) 1px, transparent 1px) 0 0 / 30px 30px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent);
          mask-image: linear-gradient(180deg, #000, transparent);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 18px; }
.cta-card p { color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 1.8vw, 1.3rem); max-width: 540px; margin: 0 auto 36px; }
.cta-card .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-card .micro { margin-top: 22px; font-size: .88rem; color: rgba(255,255,255,.8); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { padding-block: 60px 40px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p { color: var(--ink-soft); font-size: .95rem; max-width: 280px; }
.footer__col h4 { font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); margin-bottom: 16px; font-weight: 700; }
.footer__col a { display: block; font-size: .95rem; color: var(--ink-soft); margin-bottom: 11px; transition: color .15s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 14px; }
.footer__bottom small { color: var(--ink-faint); font-size: .87rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); transition: all .2s; }
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }
.footer__social svg { width: 18px; height: 18px; }

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .stage { height: 540px; margin-top: 10px; }
  .hero__copy { max-width: 640px; }
  .problem__grid, .pkg__grid, .feat__grid { grid-template-columns: 1fr 1fr; }
  .dash__body { grid-template-columns: 1fr; }
  .dash__side { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid var(--line); }
  .dash__side hr { display: none; }
  .proof__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .stat-band { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .problem__grid, .pkg__grid, .feat__grid { grid-template-columns: 1fr; }
  .feat__head { grid-template-columns: 1fr; align-items: start; }
  .dash__kpis { grid-template-columns: 1fr 1fr; }
  .dash__pipe { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: span 2; }
  .chip--c { display: none; }
  .phone--back { display: none; }
}
@media (max-width: 460px) {
  .wrap { padding-inline: 18px; }
  .dash__kpis, .dash__pipe { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ===========================================================
   LOGO CLOUD (real-looking brand marks)
   =========================================================== */
.logos__row { gap: 20px 38px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #aab2c6; transition: color .2s; }
.brand:hover { color: #7e879b; }
.brand svg { width: 25px; height: 25px; flex-shrink: 0; }
.brand b { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: -.025em; }
.brand b span { font-weight: 500; }

/* ===========================================================
   TESTIMONIAL CARDS (customer "photos" = initial avatars)
   =========================================================== */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 26px; }
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard__stars { color: #ffb400; font-size: .95rem; letter-spacing: 2px; margin-bottom: 16px; }
.tcard__quote { font-size: 1.04rem; line-height: 1.5; color: var(--ink); margin-bottom: auto; text-wrap: pretty; }
.tcard__by { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.av-i {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  box-shadow: var(--shadow-sm);
}
.tcard__by b { display: block; font-size: .96rem; line-height: 1.2; }
.tcard__by small { color: var(--ink-soft); font-size: .84rem; }
.tcard__pill {
  align-self: flex-start; margin-bottom: 18px;
  font-size: .73rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 8px;
}
.proof__band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proof__band .bigstat { align-items: flex-start; }

/* ===========================================================
   PRICING
   =========================================================== */
.pricing__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.pricing__head .eyebrow { margin-bottom: 18px; }
.pricing__head p { margin-top: 16px; }
.ph-pill { background: #fff3e0; color: #b25a18; }
.price__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan--pop { border: 1.5px solid var(--accent); box-shadow: var(--shadow-md); }
.plan--pop:hover { box-shadow: var(--shadow-lg); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .78rem; font-weight: 700;
  letter-spacing: .03em; padding: 6px 16px; border-radius: 100px; box-shadow: var(--shadow-blue);
  white-space: nowrap;
}
.plan__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 6px; }
.plan__desc { color: var(--ink-soft); font-size: .94rem; min-height: 42px; margin-bottom: 22px; }
.price { display: flex; align-items: flex-start; gap: 5px; margin-bottom: 4px; }
.price__num { font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; line-height: .9; letter-spacing: -.04em; }
.price__suf { display: flex; flex-direction: column; justify-content: flex-start; padding-top: 5px; }
.price__cur { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; line-height: 1.1; }
.price__per { font-size: .82rem; color: var(--ink-soft); font-weight: 500; white-space: nowrap; }
.plan__note { font-size: .8rem; color: var(--ink-faint); margin-bottom: 26px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; }
.plan li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.plan li.muted-li { color: var(--ink-faint); }
.plan li.muted-li svg { color: var(--ink-faint); }
.plan .btn { width: 100%; margin-top: auto; }
.pricing__foot { text-align: center; margin-top: 28px; font-size: .9rem; color: var(--ink-faint); }

/* billing toggle */
.billing {
  display: inline-flex; gap: 4px; margin: 30px auto 0;
  background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 5px;
  box-shadow: var(--shadow-sm);
}
.billing__opt {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .96rem; color: var(--ink-soft);
  padding: 10px 22px; border-radius: 100px; transition: all .2s var(--ease);
}
.billing__opt.is-active { background: var(--ink); color: #fff; }
.billing__save { font-size: .76rem; font-weight: 700; color: var(--green); background: var(--green-tint); padding: 3px 8px; border-radius: 100px; white-space: nowrap; }

/* ===========================================================
   TRUST BAND
   =========================================================== */
.trustband { padding-block: clamp(3rem, 6vw, 5rem); border-bottom: 1px solid var(--line-soft); }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 4px 24px; box-shadow: var(--shadow-sm); transition: border-color .2s; }
.faq__item[open] { border-color: var(--accent); }
.faq__item summary { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; padding: 20px 30px 20px 0; cursor: pointer; list-style: none; position: relative; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 16px; font-size: 1.6rem; font-weight: 400; color: var(--accent); transition: transform .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; padding: 0 0 22px; margin: 0; max-width: 680px; }
.trustband__head { text-align: center; margin-bottom: 40px; }
.trustband__head .eyebrow { margin-bottom: 14px; }
.trustband__head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -.025em; }
.trustband__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.tbadge {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 18px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s;
}
.tbadge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tbadge__ic { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-tint); display: grid; place-items: center; }
.tbadge__ic svg { width: 25px; height: 25px; color: var(--accent); }
.tbadge.green .tbadge__ic { background: var(--green-tint); }
.tbadge.green .tbadge__ic svg { color: var(--green); }
.tbadge b { font-size: 1.02rem; font-weight: 700; }
.tbadge span { font-size: .85rem; color: var(--ink-soft); }
.tbadge .stars { color: #ffb400; font-size: .9rem; letter-spacing: 2px; }
@media (max-width: 900px) { .trustband__row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .trustband__row { grid-template-columns: 1fr; } }
.billing__opt.is-active .billing__save { background: rgba(255,255,255,.16); color: #5fe0a0; }

/* emphasized feature row inside a plan — unified: bold ink, accent check only */
.plan li.hi-li { color: var(--ink); }
.plan li.hi-li svg { color: var(--accent); }
.plan li b { font-weight: 700; color: var(--ink); }

@media (max-width: 1000px) {
  .tcards, .proof__band, .price__grid { grid-template-columns: 1fr 1fr; }
  .plan--pop { grid-column: span 1; }
}
@media (max-width: 720px) {
  .tcards, .proof__band, .price__grid { grid-template-columns: 1fr; }
  .logos__row { justify-content: flex-start; gap: 18px 26px; }
}
