/* FR apps — landing. Tokens mirror the "Bankar · Color / Dimensions" collections in Figma. */
:root {
  --orange: #FF6B1A;
  --orange-hover: #E85A0C;
  --orange-soft: #FFE6D6;
  --orange-tint: #FFF4EE;
  --bg: #FFFFFF;
  --peach: #FDF1EB;
  --muted: #F5F5F5;
  --dark: #1E1E1E;
  --dark-2: #2A2A2A;
  --black: #111111;
  --text: #141414;
  --text-2: #5C5C5C;
  --text-3: #8A8A8A;
  --inv: #FFFFFF;
  --inv-muted: #B3B3B3;
  --border: #E6E6E6;
  --border-strong: #141414;
  --border-dark: #3A3A3A;

  --r-sm: 6px;
  --r-input: 8px;
  --r-card: 16px;
  --r-section: 32px;
  --r-pill: 999px;

  --shadow-card: 0 12px 32px rgba(0,0,0,.08);
  --shadow-float: 0 20px 48px rgba(0,0,0,.14);

  --pad-x: 80px;
  --section-y: 120px;
  --max: 1440px;

  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol { margin: 0; padding: 0; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
[hidden] { display: none !important; }

/* ---------- Type scale ---------- */
.t-display { font-size: 64px; line-height: 1.1; letter-spacing: -2px; font-weight: 500; }
.t-h-xl { font-size: 48px; line-height: 1.15; letter-spacing: -1.5px; font-weight: 500; }
.t-h-lg { font-size: 40px; line-height: 1.2; letter-spacing: -1px; font-weight: 500; }
.t-h { font-size: 32px; line-height: 1.25; letter-spacing: -.5px; font-weight: 500; }
.t-h-sm { font-size: 24px; line-height: 1.3; letter-spacing: -.25px; font-weight: 500; }
.t-title { font-size: 20px; line-height: 1.3; letter-spacing: -.2px; font-weight: 600; }
.t-body-lg { font-size: 18px; line-height: 1.5; }
.t-body-sm { font-size: 14px; line-height: 1.5; }
.t-label { font-size: 14px; line-height: 1.2; font-weight: 500; }
.t-label-sm { font-size: 12px; line-height: 1.2; font-weight: 500; }
.t-caption { font-size: 12px; line-height: 1.4; }
.c-2 { color: var(--text-2); }
.c-3 { color: var(--text-3); }
.c-brand { color: var(--orange); }
.c-inv { color: var(--inv); }
.c-inv-muted { color: var(--inv-muted); }
.balance { text-wrap: balance; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-y) 0; }
.bg-peach { background: var(--peach); }
.bg-muted { background: var(--muted); }
.stack { display: flex; flex-direction: column; }
.row { display: flex; }
.center { text-align: center; align-items: center; }

.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 56px; }
.section-head.center { align-items: center; text-align: center; }
.section-head.center p { max-width: 620px; }
.section-head--split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 80px; }
.section-head--split > p { max-width: 460px; }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 6px 14px 6px 12px; border-radius: var(--r-pill);
  background: var(--orange-tint); color: var(--orange);
  font-size: 12px; font-weight: 600; line-height: 1.2;
}
.center > .pill, .section-head.center .pill { align-self: center; }
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.pill--white { background: var(--bg); }
.pill--dark { background: var(--dark-2); }
.pill--glass { background: rgba(255,255,255,.2); color: var(--inv); }
.pill--glass::before { display: none; }
.tag { white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 500; line-height: 1.2; background: var(--muted); }
.tag--outline { background: transparent; border: 1px solid var(--border); }
.tag--brand { background: var(--orange-tint); color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 14px 24px; border-radius: var(--r-input);
  font-size: 14px; font-weight: 600; line-height: 1.2; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer; transition: background-color .15s, border-color .15s, color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--sm { min-height: 36px; padding: 9px 16px; font-size: 12px; }
.btn--sm svg { width: 16px; height: 16px; }
.btn--primary { background: var(--orange); color: var(--inv); }
.btn--primary:hover { background: var(--orange-hover); }
.btn--secondary { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--secondary:hover { background: var(--text); color: var(--inv); }
.btn--dark { background: var(--black); color: var(--inv); }
.btn--dark:hover { background: #2b2b2b; }
.btn--on-dark { background: transparent; color: var(--inv); border-color: var(--border-dark); }
.btn--on-dark:hover { border-color: var(--inv); }
.btn--white { background: var(--bg); color: var(--text); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.ic { width: 20px; height: 20px; flex: none; }
.ic-tile { display: grid; place-items: center; width: 48px; height: 48px; border-radius: var(--r-input); background: var(--orange-soft); color: var(--orange); flex: none; }
.ic-tile .ic { width: 24px; height: 24px; }
.ic-tile--white { background: var(--bg); }
.ic-tile--solid { background: var(--orange); color: var(--inv); }
.ic-circle { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; flex: none; }
.ic-circle--outline { border: 1px solid var(--border-strong); color: var(--text); }
.check { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; flex: none; background: var(--orange); color: var(--inv); }
.check svg { width: 12px; height: 12px; }
.check--soft { background: var(--orange-soft); color: var(--orange); }
.check--muted { background: var(--muted); color: var(--text-3); }
.check--dark { background: var(--dark-2); color: var(--orange); }
.check--white { background: var(--bg); color: var(--text-2); }

.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-card); }
.panel-dark { background: var(--dark); color: var(--inv); border-radius: var(--r-section); position: relative; overflow: hidden; }
.ring { position: absolute; border-radius: 50%; pointer-events: none; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); }
.header.is-scrolled { box-shadow: 0 1px 0 var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: inline-flex; color: var(--text); }
.logo svg { width: 71px; height: 40px; fill: currentColor; }
.nav { display: flex; gap: 32px; }
.nav a { font-size: 14px; font-weight: 500; transition: color .15s; }
.nav a:hover { color: var(--orange); }
.header__actions { display: flex; align-items: center; gap: 8px; }
.menu-btn { display: none; width: 40px; height: 40px; border-radius: var(--r-input); border: 1px solid var(--border); background: var(--bg); place-items: center; cursor: pointer; }
.mobile-menu { display: none; }

/* ---------- 01 Hero ---------- */
.hero { padding-top: 64px; background: linear-gradient(to bottom, var(--bg) 0, var(--bg) calc(100% - 200px), var(--peach) calc(100% - 200px)); }
.hero__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; margin-bottom: 56px; }
.hero__title { max-width: 1100px; }
.hero__accent { display: inline-flex; align-items: center; gap: 16px; color: var(--orange); }
.hero__badge { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--orange-soft); flex: none; }
.hero__badge svg { width: 28px; height: 28px; }
.hero__sub { max-width: 620px; }
.hero__panel { padding: 40px 48px 48px; display: flex; flex-direction: column; gap: 48px; }
.geo { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 32px; border-bottom: 1px solid var(--border-dark); }
.geo__list { display: contents; }
.geo__item { display: inline-flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 500; }
.geo__item svg { width: 18px; height: 18px; color: var(--inv-muted); }
.hero__split { display: grid; grid-template-columns: 600px 1fr; gap: 64px; align-items: center; }
.media { position: relative; overflow: hidden; border-radius: var(--r-card); height: 480px; display: flex; justify-content: center; padding-top: 40px; }
.media--orange { background: linear-gradient(135deg, #FF6B1A 0%, #8C3308 100%); }
.media--dark { background: linear-gradient(135deg, #2A2A2A 0%, #111 100%); }
.media--dark::before { content: ""; position: absolute; width: 420px; height: 420px; left: 50%; top: 55%; transform: translate(-50%,-50%); background: radial-gradient(closest-side, rgba(255,107,26,.55), rgba(255,107,26,0)); }
.note {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px; background: var(--bg); color: var(--text); border-radius: var(--r-input); box-shadow: var(--shadow-float);
}
.note__ic { display: grid; place-items: center; width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--orange-soft); color: var(--orange); }
.note__ic svg { width: 18px; height: 18px; }
.note small { display: block; font-size: 10px; line-height: 1.3; color: var(--text-3); font-weight: 500; }
.note b { display: block; font-size: 12px; line-height: 1.3; font-weight: 600; white-space: nowrap; }
.note--1 { left: 20px; top: 230px; }
.note--2 { right: 20px; top: 110px; }
.note--3 { right: 20px; top: 340px; }
.hero__copy { display: flex; flex-direction: column; gap: 24px; }
.stats { background: var(--peach); padding: 64px 0 72px; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 80px; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.stat b { font-size: 56px; line-height: 1; letter-spacing: -1.5px; font-weight: 500; }

/* ---------- Phone mockup ---------- */
.phone { width: 300px; height: 620px; flex: none; padding: 10px; border-radius: 48px; background: var(--black); box-shadow: var(--shadow-float); position: relative; z-index: 1; }
.phone__screen { height: 100%; border-radius: 38px; background: var(--bg); overflow: hidden; padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 14px; color: var(--text); }
.phone__bar { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 600; }
.phone__island { width: 80px; height: 22px; border-radius: 11px; background: var(--black); }
.phone__battery { width: 22px; height: 11px; border-radius: 3px; background: var(--text); }
.phone__head { display: flex; justify-content: space-between; align-items: center; }
.phone__head small { display: block; font-size: 12px; color: var(--text-3); }
.phone__head b { display: block; font-size: 24px; font-weight: 500; letter-spacing: -.25px; line-height: 1.2; }
.phone__cart { width: 36px; height: 36px; border-radius: 50%; background: var(--muted); display: grid; place-items: center; }
.phone__cart svg { width: 18px; height: 18px; }
.phone__search { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: var(--r-input); background: var(--muted); font-size: 12px; color: var(--text-3); }
.phone__search svg { width: 14px; height: 14px; }
.phone__loyal { padding: 12px 14px 14px; border-radius: var(--r-input); background: var(--dark); color: var(--inv); display: flex; flex-direction: column; gap: 8px; }
.phone__loyal small { font-size: 10px; color: var(--inv-muted); }
.phone__loyal b { font-size: 12px; font-weight: 500; }
.phone__progress { height: 6px; border-radius: 3px; background: var(--dark-2); overflow: hidden; }
.phone__progress i { display: block; width: 75%; height: 100%; background: var(--orange); border-radius: 3px; }
.phone__chips { display: flex; gap: 6px; }
.phone__chips span { padding: 6px 12px; border-radius: var(--r-pill); border: 1px solid var(--border); font-size: 10px; font-weight: 500; }
.phone__chips span:first-child { background: var(--orange); border-color: var(--orange); color: var(--inv); }
.phone__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.phone__product { border: 1px solid var(--border); border-radius: var(--r-input); padding: 8px 8px 10px; display: flex; flex-direction: column; gap: 8px; }
.phone__img { height: 84px; border-radius: 6px; background: var(--muted); display: flex; justify-content: center; align-items: flex-end; padding-bottom: 10px; }
.phone__img i { width: 28px; height: 52px; border-radius: 8px 8px 6px 6px; background: var(--dark); }
.phone__product:nth-child(2) .phone__img i { background: var(--orange); }
.phone__product small { font-size: 10px; color: var(--text-2); }
.phone__price { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 600; }
.phone__price i { width: 20px; height: 20px; border-radius: 50%; background: var(--text); color: var(--inv); font-style: normal; display: grid; place-items: center; font-size: 12px; line-height: 1; }
.phone__tabs { margin-top: auto; padding: 10px 12px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; color: var(--text-3); }
.phone__tabs svg { width: 20px; height: 20px; }
.phone__tabs svg:first-child { color: var(--orange); }

/* ---------- 02 Audience ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.situation { padding: 32px; display: flex; flex-direction: column; gap: 24px; transition: border-color .2s, box-shadow .2s; }
.situation:hover { border-color: var(--orange); box-shadow: var(--shadow-card); }
.situation--hl { background: var(--peach); border-color: var(--orange); }
.situation__top { display: flex; justify-content: space-between; align-items: center; }
.situation__text { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.cta-card { background: var(--dark); color: var(--inv); border-radius: var(--r-card); padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.cta-card .btn-row { margin-top: auto; }

/* ---------- 03 Cases ---------- */
.case { display: grid; grid-template-columns: 1fr 480px; background: var(--bg); border-radius: var(--r-section); overflow: hidden; }
.case__body { padding: 56px; display: flex; flex-direction: column; gap: 28px; }
.case__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.case__ts { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.case__ts h4 { font-size: 12px; font-weight: 600; color: var(--orange); margin-bottom: 8px; letter-spacing: .02em; }
.features { display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; }
.feature { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.feature__ic { width: 28px; height: 28px; border-radius: 50%; background: var(--orange-tint); color: var(--orange); display: grid; place-items: center; flex: none; }
.feature__ic svg { width: 16px; height: 16px; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric { background: var(--peach); border-radius: var(--r-input); padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.metric b { font-size: 24px; line-height: 1.3; font-weight: 500; letter-spacing: -.25px; white-space: nowrap; }
.play-link { display: inline-flex; align-items: center; gap: 10px; padding-left: 12px; font-size: 14px; font-weight: 600; }
.play-link span { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: var(--inv); display: grid; place-items: center; }
.play-link svg { width: 16px; height: 16px; }
.case__media { height: auto; min-height: 100%; align-items: center; padding: 0; }
.rating { position: absolute; left: 24px; bottom: 120px; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 14px; background: var(--bg); border-radius: var(--r-input); box-shadow: var(--shadow-float); }
.rating b { font-size: 24px; font-weight: 500; color: var(--orange); }
.rating strong { display: block; font-size: 12px; font-weight: 600; }
.rating small { display: block; font-size: 10px; color: var(--text-3); }
.quote { margin-top: 24px; padding: 48px 56px; display: flex; gap: 40px; align-items: center; }
.quote__mark { font-size: 120px; line-height: .75; color: var(--orange); font-weight: 500; align-self: flex-start; padding-top: 20px; }
.quote__text { display: flex; flex-direction: column; gap: 24px; }
.author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: var(--inv); font-size: 14px; font-weight: 600; flex: none; }
.teasers { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.teaser { padding: 32px; display: flex; gap: 24px; align-items: center; border: none; }
.teaser > div { display: flex; flex-direction: column; gap: 12px; flex: 1; }

/* ---------- 04 AI ---------- */
.ai-cards { display: grid; grid-template-columns: 420px 1fr; gap: 24px; }
.ai-card { background: var(--muted); border-radius: var(--r-card); padding: 40px; display: flex; flex-direction: column; gap: 24px; }
.ai-card__title { display: flex; align-items: center; gap: 12px; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.list { display: flex; flex-direction: column; gap: 14px; }
.list li { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; }
.list li .check { margin-top: -1px; }
.ai-card__note { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.dev-card { background: var(--dark); color: var(--inv); border-radius: var(--r-card); padding: 40px; display: flex; flex-direction: column; gap: 24px; }
.dev-card .list { display: block; columns: 2; column-gap: 32px; }
.dev-card .list li { break-inside: avoid; margin-bottom: 14px; }
.compare { margin-top: 24px; border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; }
.compare table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { text-align: left; padding: 0 24px 0 32px; height: 64px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.compare thead th { height: 56px; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: none; }
.compare tbody th { font-weight: 500; width: 300px; }
.compare .us { background: var(--peach); }
.compare thead .us { color: var(--orange); }
.compare td > span { display: flex; align-items: center; gap: 12px; }
.compare td.us > span { font-weight: 500; }
.cta-orange { margin-top: 24px; background: var(--orange); color: var(--inv); border-radius: var(--r-section); padding: 48px 56px; display: flex; align-items: center; gap: 48px; position: relative; overflow: hidden; }
.cta-orange > div { display: flex; flex-direction: column; gap: 12px; flex: 1; position: relative; }
.cta-orange .btn { position: relative; }
.cta-orange .ring { width: 360px; height: 360px; right: 60px; top: -140px; border: 48px solid rgba(255,255,255,.18); }

/* ---------- 05 Why ---------- */
.why { display: grid; grid-template-columns: 460px 1fr; gap: 80px; }
.why__intro { display: flex; flex-direction: column; gap: 24px; }
.team-card { margin-top: auto; background: var(--dark); color: var(--inv); border-radius: var(--r-card); padding: 32px; display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; }
.team-card .ring { width: 200px; height: 200px; right: -90px; top: -100px; border: 32px solid var(--orange); }
.avatars { display: flex; }
.avatars span { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 600; border: 3px solid var(--dark); margin-left: -10px; }
.avatars span:first-child { margin-left: 0; background: var(--orange); }
.avatars span:nth-child(2) { background: var(--dark-2); }
.avatars span:nth-child(3) { background: var(--orange-soft); color: var(--text); }
.avatars span:nth-child(4) { background: var(--bg); color: var(--text); }
.reasons { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; }
.reason { padding: 32px 0; display: flex; flex-direction: column; gap: 16px; border-bottom: 1px solid var(--border); }
.reason:nth-child(-n+2) { padding-top: 0; }
.reason:nth-last-child(-n+2) { border-bottom: none; }
.reason__top { display: flex; justify-content: space-between; align-items: center; }

/* ---------- 06 Services ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.service .situation__top { margin-bottom: 36px; }
.promise { background: var(--dark); color: var(--inv); border-radius: var(--r-card); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.promise__item { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 500; }
.promise__item .ic-circle { background: var(--orange); color: var(--inv); }
.promise .btn { margin-top: auto; }

/* ---------- 07 Steps ---------- */
.steps-panel { padding: 64px 64px 56px; display: flex; flex-direction: column; gap: 64px; }
.steps-panel .ring { border: 1px solid var(--border-dark); }
.steps-panel .ring--1 { width: 420px; height: 420px; right: 20px; top: -200px; }
.steps-panel .ring--2 { width: 260px; height: 260px; right: 100px; top: -120px; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; }
.step { display: flex; flex-direction: column; gap: 20px; }
.step__marker { display: flex; align-items: center; gap: 12px; }
.step__num { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--dark-2); border: 1px solid var(--border-dark); color: var(--orange); flex: none; }
.step__num svg { width: 22px; height: 22px; }
.step:first-child .step__num { background: var(--orange); border-color: var(--orange); color: var(--inv); }
.step__line { height: 2px; flex: 1; background: var(--border-dark); }
.step:first-child .step__line { background: var(--orange); }
.step:last-child .step__line { visibility: hidden; }
.step__text { display: flex; flex-direction: column; gap: 8px; padding-right: 8px; }
.steps-foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 32px; border-top: 1px solid var(--border-dark); }
.steps-foot p { display: flex; align-items: center; gap: 10px; }

/* ---------- 08 Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan { background: var(--bg); border-radius: var(--r-card); padding: 36px; display: flex; flex-direction: column; gap: 28px; }
.plan--dark { background: var(--dark); color: var(--inv); box-shadow: var(--shadow-float); }
.plan__top { display: flex; justify-content: space-between; align-items: center; min-height: 28px; gap: 12px; }
.badge { padding: 5px 10px; border-radius: var(--r-pill); background: var(--orange); color: var(--inv); font-size: 12px; font-weight: 600; white-space: nowrap; }
.plan__price { padding-bottom: 28px; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 6px; }
.plan--dark .plan__price { border-color: var(--border-dark); }
.plan__term { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.plan__term::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.plan .list { flex: 1; }
.pay-note { margin: 56px auto 0; display: flex; align-items: center; gap: 12px; width: fit-content; max-width: 100%; padding: 14px 24px 14px 20px; background: var(--bg); border-radius: var(--r-pill); font-size: 14px; color: var(--text-2); }
.pay-note svg { color: var(--orange); width: 18px; height: 18px; flex: none; }

/* ---------- 09 Team ---------- */
.team { display: grid; grid-template-columns: 1fr 1fr 380px; gap: 24px; }
.person { padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.person__photo { height: 220px; border-radius: var(--r-input); display: grid; place-items: center; background: linear-gradient(135deg, #FFE6D6, #FF9E66); }
.person__photo--gray { background: linear-gradient(135deg, #EDEDED, #B8B8B8); }
.person__photo span { width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: var(--inv); font-size: 32px; font-weight: 500; border: 4px solid var(--bg); }
.person__photo--gray span { background: var(--dark); }
.person__name { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.person__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.team--no-video { grid-template-columns: 1fr 1fr; }
.video-card { background: var(--dark); color: var(--inv); border-radius: var(--r-card); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.video-card__preview { height: 220px; border-radius: var(--r-input); background: linear-gradient(135deg, #333, #8C3808); display: grid; place-items: center; position: relative; }
.video-card__preview > span { width: 72px; height: 72px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; }
.video-card__preview svg { width: 28px; height: 28px; }
.video-card__preview em { position: absolute; left: 12px; top: 12px; font-style: normal; font-size: 12px; font-weight: 600; background: var(--black); padding: 4px 8px; border-radius: var(--r-sm); }
.video-card .btn { margin-top: auto; }

/* ---------- 10 Guarantees ---------- */
.guar { display: grid; grid-template-columns: 420px 1fr; gap: 24px; }
.guar__intro { background: var(--orange); color: var(--inv); border-radius: var(--r-section); padding: 40px; display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; }
.guar__intro .ring { width: 300px; height: 300px; right: -140px; bottom: -140px; border: 40px solid rgba(255,255,255,.18); }
.guar__shield { width: 64px; height: 64px; border-radius: 50%; background: var(--bg); color: var(--orange); display: grid; place-items: center; }
.guar__shield svg { width: 30px; height: 30px; }
.guar__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.guarantee { background: var(--bg); border-radius: var(--r-card); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.guarantee__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.guarantee__top b { font-size: 24px; font-weight: 500; color: var(--orange); }

/* ---------- 11 FAQ ---------- */
.faq { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; }
.faq__intro { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 104px; }
.ask-card { background: var(--dark); color: var(--inv); border-radius: var(--r-card); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.ask-card .ic-circle { width: 48px; height: 48px; background: var(--orange); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-card); transition: background-color .2s, border-color .2s; }
.faq-item[open] { background: var(--peach); border-color: var(--peach); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 22px 20px 22px 28px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__num { font-size: 14px; font-weight: 500; color: var(--text-3); width: 20px; flex: none; }
.faq-item[open] .faq-item__num { color: var(--orange); }
.faq-item__q { flex: 1; font-size: 18px; font-weight: 500; line-height: 1.35; }
.faq-item__toggle { width: 36px; height: 36px; border-radius: 50%; background: var(--muted); display: grid; place-items: center; flex: none; transition: transform .2s, background-color .2s; }
.faq-item__toggle svg { width: 16px; height: 16px; transform: rotate(45deg); transition: transform .2s; }
.faq-item[open] .faq-item__toggle { background: var(--orange); color: var(--inv); }
.faq-item[open] .faq-item__toggle svg { transform: rotate(0deg); }
.faq-item__a { padding: 0 28px 28px 64px; color: var(--text-2); }

/* ---------- 12 Lead form ---------- */
.lead { display: grid; grid-template-columns: 500px 1fr; gap: 24px; }
.lead__intro { padding: 48px; display: flex; flex-direction: column; gap: 24px; }
.lead__intro .ring { width: 380px; height: 380px; right: -260px; top: -240px; border: 56px solid var(--orange); }
.lead__intro > *:not(.ring) { position: relative; }
.lead__alt { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border-dark); display: flex; flex-direction: column; gap: 14px; }
.form { background: var(--bg); border-radius: var(--r-section); padding: 16px 40px 40px; }
.q { border: none; margin: 0; padding: 24px 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.q legend { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; padding: 0; float: left; width: 100%; }
.q legend + * { clear: both; }
.q__num { width: 28px; height: 28px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; font-size: 12px; flex: none; }
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.opt span { display: inline-block; padding: 10px 16px; border-radius: var(--r-pill); border: 1px solid var(--border); font-size: 12px; font-weight: 500; line-height: 1.2; transition: all .15s; }
.opt input:hover + span { border-color: var(--text); }
.opt input:checked + span { background: var(--orange); border-color: var(--orange); color: var(--inv); }
.opt input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.field label { font-size: 12px; color: var(--text-2); }
.input { width: 100%; height: 44px; padding: 0 16px; border: 1px solid var(--border); border-radius: var(--r-input); background: var(--bg); font-size: 14px; transition: border-color .15s; }
.input::placeholder { color: var(--text-3); }
.input:hover { border-color: #cfcfcf; }
.input:focus { outline: none; border-color: var(--text); }
.fields { display: flex; gap: 12px; }
.form__submit { display: flex; flex-direction: column; gap: 16px; padding-top: 24px; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--text-2); cursor: pointer; }
.consent input { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border-radius: var(--r-sm); border: 1px solid var(--border); flex: none; margin: 0; display: grid; place-items: center; cursor: pointer; background: var(--bg); }
.consent input:checked { background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/12px no-repeat; border-color: var(--orange); }
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.form__status { font-size: 14px; padding: 12px 16px; border-radius: var(--r-input); }
.form__status.is-error { background: #FDECEC; color: #B42318; }
.form__status.is-ok { background: var(--orange-tint); color: var(--text); }
.form__error { font-size: 12px; color: #B42318; }
.form-success { padding: 64px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.form-success .ic-circle { width: 64px; height: 64px; background: var(--orange); color: var(--inv); }
.form-success .ic-circle svg { width: 28px; height: 28px; }

/* ---------- 13 Footer ---------- */
.footer { padding: 80px 0 40px; }
.footer .container { padding: 0 40px; }
.contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.contact { background: var(--peach); border-radius: var(--r-card); padding: 24px 28px; display: flex; align-items: center; gap: 16px; transition: transform .2s; }
.contact:hover { transform: translateY(-2px); }
.contact > div { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.contact .ic-circle { width: 48px; height: 48px; background: var(--dark); color: var(--inv); }
.contact--accent { background: var(--orange); color: var(--inv); }
.contact--accent .c-brand { color: var(--inv); }
.contact--accent .ic-circle { background: var(--bg); color: var(--orange); }
.contact .t-h-sm { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.footer__panel { padding: 64px 56px 0; display: flex; flex-direction: column; gap: 56px; }
.footer__top { display: flex; gap: 48px; }
.footer__brand { width: 340px; display: flex; flex-direction: column; gap: 20px; }
.footer__brand .logo { color: var(--inv); }
.footer__cols { display: flex; gap: 48px; margin-left: auto; }
.footer__col { width: 210px; display: flex; flex-direction: column; gap: 14px; }
.footer__col a { font-size: 12px; color: var(--inv-muted); transition: color .15s; }
.footer__col a:hover { color: var(--inv); }
.footer__legal { display: flex; justify-content: space-between; gap: 16px; padding-top: 28px; border-top: 1px solid var(--border-dark); }
.footer__giant { display: flex; justify-content: center; color: var(--dark-2); margin-bottom: -60px; }
.footer__giant svg { width: 560px; height: auto; aspect-ratio: 773 / 433; fill: currentColor; }

/* Cookie + sticky CTA */
.cookie { position: fixed; z-index: 60; right: 24px; bottom: 24px; width: 360px; background: var(--bg); border-radius: var(--r-card); box-shadow: var(--shadow-float); padding: 24px; display: flex; flex-direction: column; gap: 14px; border: 1px solid var(--border); }
.cookie .btn-row { flex-wrap: nowrap; gap: 8px; }
.cookie .btn { flex: 1; }
.sticky-cta { display: none; }

/* Reveal animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ================= Tablet ================= */
@media (max-width: 1279px) {
  .hide-tablet { display: none; }
  :root { --pad-x: 40px; --section-y: 96px; }
  .t-display { font-size: 52px; letter-spacing: -1.5px; }
  .t-h-xl { font-size: 40px; letter-spacing: -1px; }
  .nav { gap: 20px; }
  .hero__split { grid-template-columns: 1fr 1fr; gap: 40px; }
  .geo { flex-wrap: wrap; justify-content: flex-start; column-gap: 28px; }
  .case { grid-template-columns: 1fr 400px; }
  .case__body { padding: 40px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .ai-cards { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 48px; }
  .team-card { margin-top: 8px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .step:nth-child(3) .step__line { visibility: hidden; }
  .team { grid-template-columns: 1fr 1fr; }
  .video-card { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .video-card__preview { width: 220px; height: 140px; flex: none; }
  .video-card .btn { margin-top: 0; }
  .guar { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }
  .lead { grid-template-columns: 1fr; }
  .footer__top { flex-wrap: wrap; }
  .footer__cols { margin-left: 0; }
}

/* ================= Mobile ================= */
@media (max-width: 767px) {
  :root { --pad-x: 20px; --section-y: 64px; }
  .hide-mobile { display: none !important; }
  body { font-size: 16px; }
  .t-display { font-size: 38px; line-height: 1.15; letter-spacing: -1px; }
  .t-h-xl { font-size: 32px; line-height: 1.2; letter-spacing: -.5px; }
  .t-h-lg { font-size: 32px; letter-spacing: -.5px; }
  .t-h { font-size: 24px; }
  .t-h-sm { font-size: 20px; }
  .t-body-lg { font-size: 16px; }
  .section-head { margin-bottom: 32px; gap: 12px; }
  .section-head.center { align-items: flex-start; text-align: left; }
  .section-head.center .pill { align-self: flex-start; }
  .section-head--split { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }

  .header__inner { height: 64px; }
  .logo svg { width: 64px; height: 36px; }
  .nav { display: none; }
  .menu-btn { display: grid; }
  .mobile-menu { position: fixed; inset: 64px 0 0; z-index: 49; background: var(--bg); padding: 24px 20px 32px; flex-direction: column; gap: 4px; overflow-y: auto; }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu a:not(.btn) { font-size: 24px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .mobile-menu .btn { margin-top: 24px; }

  .hero { padding-top: 32px; background: linear-gradient(to bottom, var(--bg) 0, var(--bg) calc(100% - 160px), var(--peach) calc(100% - 160px)); }
  .hero .container { padding: 0 20px; }
  .hero__head { gap: 16px; margin-bottom: 32px; }
  .hero__accent { display: inline; }
  .hero__badge { display: none; }
  .hero__head .btn-row { width: 100%; padding-top: 8px; }
  .hero__panel { padding: 24px 20px; gap: 28px; }
  .geo { flex-direction: column; align-items: flex-start; gap: 12px; padding-bottom: 20px; }
  .geo__list { display: flex; flex-wrap: wrap; gap: 8px; }
  .geo__item { font-size: 12px; padding: 6px 12px 6px 10px; border-radius: var(--r-pill); background: var(--dark-2); }
  .geo__item svg { width: 14px; height: 14px; }
  .hero__split { grid-template-columns: 1fr; gap: 28px; }
  .media { height: 400px; padding-top: 28px; }
  .media .phone { transform: scale(.78); transform-origin: top center; }
  .note { padding: 10px 12px 10px 10px; gap: 10px; }
  .note__ic { width: 30px; height: 30px; }
  .note--1 { left: 12px; top: 170px; }
  .note--2 { display: none; }
  .note--3 { right: 12px; top: 300px; }
  .stats { padding: 40px 0; }
  .stats__grid { padding: 0 20px; gap: 12px; }
  .stat { align-items: flex-start; text-align: left; }
  .stat b { font-size: 32px; letter-spacing: -.5px; }

  .grid-3, .grid-4, .plans, .team, .guar__grid, .teasers, .contacts { grid-template-columns: 1fr; gap: 12px; }
  .situation { padding: 20px; gap: 14px; }
  .situation__top { gap: 12px; justify-content: flex-start; }
  .situation__top .t-label { margin-left: auto; }
  .situation .ic-circle--outline { display: none; }
  .cta-card { padding: 24px 20px 20px; gap: 14px; }

  .case { grid-template-columns: 1fr; border-radius: var(--r-section); }
  .case__media { order: -1; height: 340px; min-height: 0; align-items: flex-start; padding-top: 28px; }
  .case__media .phone { transform: scale(.72); transform-origin: top center; }
  .rating { bottom: auto; top: 250px; left: 14px; }
  .case__body { padding: 24px 20px; gap: 20px; }
  .case__ts, .features { grid-template-columns: 1fr; gap: 16px; }
  .features { gap: 0; }
  .metrics { gap: 8px; }
  .metric { padding: 14px; }
  .metric b { font-size: 20px; }
  .case .btn-row { align-items: stretch; }
  .play-link { justify-content: center; padding: 4px 0 0; }
  .quote { flex-direction: column; gap: 12px; padding: 24px 20px; align-items: flex-start; margin-top: 12px; }
  .quote__mark { font-size: 64px; padding-top: 12px; }
  .quote__text .t-h-sm { font-size: 17px; line-height: 1.5; font-weight: 400; }
  .teasers { margin-top: 12px; }
  .teaser { padding: 20px; }
  .teaser .ic-circle { display: none; }

  .ai-card, .dev-card { padding: 24px 20px; gap: 16px; }
  .dev-card .list { columns: 1; }
  .compare { border: none; border-radius: 0; margin-top: 32px; }
  .compare table, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: 100%; }
  .compare thead { display: none; }
  .compare tr { padding: 18px 0; border-bottom: 1px solid var(--border); }
  .compare tbody th, .compare td { height: auto; padding: 0; border: none; background: none !important; }
  .compare tbody th { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
  .compare td + td { margin-top: 10px; }
  .cta-orange { flex-direction: column; align-items: stretch; padding: 28px 20px 20px; gap: 16px; }
  .cta-orange .ring { width: 200px; height: 200px; right: -60px; top: -90px; border-width: 32px; }

  .why { gap: 24px; }
  .reasons { grid-template-columns: 1fr; }
  .reason { flex-direction: row; gap: 16px; padding: 20px 0; }
  .reason:nth-child(-n+2) { padding-top: 20px; }
  .reason:first-child { padding-top: 0; }
  .reason:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .reason:last-child { border-bottom: none; }
  .reason__top { flex-direction: column; align-items: flex-start; }
  .reason__top .t-label { display: none; }
  .reason .ic-tile { width: 44px; height: 44px; }
  .team-card { padding: 24px 20px 20px; order: 2; }
  .why__intro { display: contents; }
  .why { display: flex; flex-direction: column; }
  .why__intro > .stack { order: 0; }

  .service { flex-direction: row; padding: 18px 16px; gap: 14px; }
  .service .situation__top { margin-bottom: 0; }
  .service .situation__top > span:not(.ic-tile) { display: none; }
  .service { align-items: flex-start; }
  .service .ic-tile { width: 44px; height: 44px; }
  .promise { padding: 20px; }

  .steps-wrap .container { padding: 0 12px !important; }
  .steps-panel { padding: 40px 20px 24px; gap: 32px; border-radius: var(--r-section); }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { flex-direction: row; gap: 16px; }
  .step__marker { flex-direction: column; gap: 0; }
  .step__num { width: 44px; height: 44px; }
  .step__line { width: 2px; height: auto; flex: 1; min-height: 20px; }
  .step:nth-child(3) .step__line { visibility: visible; }
  .step__text { padding-bottom: 28px; gap: 4px; }
  .step:last-child .step__text { padding-bottom: 0; }
  .steps-foot { flex-direction: column; align-items: stretch; padding-top: 20px; }
  .steps-foot p { font-size: 12px; align-items: flex-start; }

  .plan { padding: 24px 20px 20px; gap: 20px; }
  .plan__price { padding-bottom: 20px; }
  .pay-note { margin-top: 24px; border-radius: var(--r-card); align-items: flex-start; font-size: 12px; padding: 14px 16px; }

  .person { padding: 20px; gap: 16px; }
  .person__photo { height: 160px; }
  .video-card { flex-direction: row; padding: 16px; gap: 14px; }
  .video-card__preview { width: 88px; height: 88px; }
  .video-card__preview > span { width: 40px; height: 40px; }
  .video-card__preview svg { width: 16px; height: 16px; }
  .video-card__preview em { display: none; }
  .video-card .t-body-sm { font-size: 12px; }

  .guar-wrap { padding-top: 48px !important; padding-bottom: 48px !important; }
  .guar { gap: 12px; }
  .guar__intro { padding: 24px 20px 28px; gap: 14px; }
  .guar__shield { display: none; }
  .guarantee { padding: 20px; gap: 12px; }
  .guarantee__top { margin-bottom: 0; }
  .guarantee__top b { font-size: 16px; }

  .faq { gap: 24px; }
  .faq__intro { display: contents; }
  .faq { display: flex; flex-direction: column; }
  .ask-card { order: 3; padding: 20px; }
  .faq-item summary { padding: 16px 12px 16px 16px; gap: 12px; }
  .faq-item__num { display: none; }
  .faq-item__q { font-size: 16px; }
  .faq-item__toggle { width: 32px; height: 32px; }
  .faq-item__a { padding: 0 16px 16px; font-size: 14px; }

  .lead-wrap .container { padding: 0 12px; }
  .lead { gap: 12px; }
  .lead__intro { padding: 28px 20px; gap: 14px; }
  .lead__intro .ring { width: 200px; height: 200px; right: -90px; top: -110px; border-width: 36px; }
  .lead__alt { margin-top: 8px; }
  .lead__alt .btn-row { flex-direction: row; }
  .lead__alt .btn-row .btn { width: auto; flex: 1; }
  .form { padding: 4px 20px 24px; }
  .q { padding: 20px 0; }
  .fields { flex-direction: column; }

  .footer { padding: 12px 0 96px; }
  .footer .container { padding: 0 12px; }
  .contacts { margin-bottom: 12px; }
  .contact { padding: 16px 16px 16px 20px; }
  .contact .ic-circle { width: 40px; height: 40px; }
  .footer__panel { padding: 32px 20px 0; gap: 28px; }
  .footer__top { flex-direction: column; gap: 28px; }
  .footer__brand { width: 100%; }
  .footer__cols { flex-wrap: wrap; gap: 28px 16px; }
  .footer__col { width: calc(50% - 8px); }
  .footer__col:last-child { width: 100%; }
  .footer__col a { font-size: 14px; }
  .footer__legal { flex-direction: column; gap: 6px; padding-top: 20px; }
  .footer__giant { margin-bottom: -40px; }
  .footer__giant svg { width: 310px; }

  .cookie { left: 12px; right: 12px; bottom: 84px; width: auto; padding: 20px; }
  .sticky-cta { display: block; position: fixed; z-index: 40; left: 12px; right: 12px; bottom: 12px; transition: transform .25s, opacity .25s; }
  .sticky-cta .btn { width: 100%; box-shadow: var(--shadow-float); }
  .sticky-cta.is-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
}
