/* ==========================================================================
   AutoKassa — общая дизайн-система
   ========================================================================== */

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---- Tokens ------------------------------------------------------------ */
:root {
  /* Нейтральные */
  --ink:#0B1220; --text:#131A26; --muted:#5A6472; --faint:#8A93A3;
  --line:#E7E9EF; --line-soft:#EEF0F5;
  /* Поверхности */
  --bg:#FFFFFF; --bg-sub:#F7F8FB; --bg-panel:#EEF1F7;
  /* Акцент */
  --accent:#2563EB; --accent-600:#1D4ED8; --accent-700:#1E40AF;
  --accent-50:#EFF6FF; --accent-100:#DBE7FE;
  /* Статусы */
  --success:#16A34A; --success-50:#ECFDF5; --warning:#F59E0B; --danger:#DC2626;
  --amber-50:#FEF6E7;
  /* Тёмная полоса/футер */
  --navy:#0A1020; --navy-card:#121A2E; --navy-line:rgba(255,255,255,.09);
  --navy-text:#E8ECF4; --navy-muted:#93A0B5;
  /* Радиусы */
  --r-sm:10px; --r-md:14px; --r-lg:20px; --r-xl:28px;
  /* Тени */
  --sh-xs:0 1px 2px rgba(16,24,40,.05);
  --sh-sm:0 2px 8px -2px rgba(16,24,40,.08);
  --sh-md:0 10px 30px -10px rgba(20,40,90,.18);
  --sh-lg:0 28px 70px -24px rgba(15,35,80,.30);
  --sh-blue:0 18px 40px -14px rgba(37,99,235,.45);
  /* Сетка */
  --maxw:1200px; --nav-h:68px;
}

/* ---- Base -------------------------------------------------------------- */
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02","cv03","cv04","cv11";
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.06;
  font-weight: 700;
}
.tnum { font-variant-numeric: tabular-nums; }

/* ---- Layout utilities -------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px,10vw,132px) 0; }
.section-sm { padding: clamp(48px,6vw,80px) 0; }
.center { text-align: center; }
.rel { position: relative; }

/* ---- Typography classes ------------------------------------------------ */
.h-display { font-family:"Inter Tight",sans-serif; font-weight:700; color:var(--ink);
  font-size: clamp(38px,6.2vw,70px); letter-spacing:-.035em; line-height:1.04; }
.h1 { font-size: clamp(32px,4.6vw,52px); letter-spacing:-.03em; }
.h2 { font-size: clamp(27px,3.5vw,40px); letter-spacing:-.025em; }
.h3 { font-size: clamp(20px,2.2vw,25px); letter-spacing:-.02em; }
.lead { font-size: clamp(17px,1.5vw,20px); color: var(--muted); line-height:1.6; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }
.small { font-size:13.5px; }

.kicker { font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color: var(--accent); }

.eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600;
  color: var(--accent-700); background: var(--accent-50); border:1px solid var(--accent-100);
  padding:6px 13px; border-radius:999px; }
.eyebrow .dot { width:6px; height:6px; border-radius:50%; background:var(--accent);
  box-shadow:0 0 0 3px var(--accent-100); flex:none; }

.section-head { max-width:680px; }
.section-head.center { margin-left:auto; margin-right:auto; }
.section-head .h2 { margin-top:14px; }
.section-head .lead { margin-top:16px; }

/* ---- Buttons ----------------------------------------------------------- */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:"Inter",sans-serif; font-weight:600; font-size:15px; line-height:1;
  border-radius:12px; height:48px; padding:0 20px; border:1px solid transparent;
  transition: all .18s ease; white-space:nowrap; }
.btn svg { width:18px; height:18px; flex:none; }
.btn-primary { background:var(--accent); color:#fff; box-shadow:var(--sh-blue); }
.btn-primary:hover { background:var(--accent-600); transform:translateY(-1px); }
.btn-dark { background:var(--ink); color:#fff; }
.btn-dark:hover { background:#1c2740; transform:translateY(-1px); }
.btn-ghost { background:var(--bg); color:var(--text); border-color:var(--line); box-shadow:var(--sh-xs); }
.btn-ghost:hover { border-color:#d4d8e2; background:var(--bg-sub); }
.btn-white { background:#fff; color:var(--ink); }
.btn-white:hover { transform:translateY(-1px); box-shadow:var(--sh-md); }
.btn-lg { height:54px; font-size:16px; padding:0 26px; border-radius:13px; }
.btn-sm { height:40px; font-size:14px; padding:0 15px; border-radius:10px; }
.btn-block { width:100%; }

/* ---- Navigation -------------------------------------------------------- */
.nav { position:sticky; top:0; z-index:60; height:var(--nav-h);
  background:rgba(255,255,255,.78);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent; transition:border-color .2s, box-shadow .2s; }
.nav.scrolled { border-bottom-color:var(--line); box-shadow:var(--sh-xs); }
.nav-inner { display:flex; align-items:center; gap:28px; height:100%; }

.brand { display:flex; align-items:center; gap:10px; }
.brand-mark { width:30px; height:30px; border-radius:9px;
  background:linear-gradient(150deg,#3b82f6,var(--accent-700));
  display:flex; align-items:center; justify-content:center; flex:none;
  box-shadow:0 4px 12px -3px rgba(37,99,235,.55); }
.brand-mark i { width:11px; height:11px; border:2.5px solid #fff; border-radius:4px; display:block; }
.brand-text { display:flex; flex-direction:column; line-height:1; }
.brand-name { font-family:"Inter Tight",sans-serif; font-weight:700; font-size:18px;
  color:var(--ink); letter-spacing:-.02em; }
.brand-name b { color:var(--accent); font-weight:700; }
.brand-text small { font-size:9.5px; font-weight:600; letter-spacing:.14em; color:var(--accent);
  margin-top:2px; }

.nav-links { display:flex; align-items:center; gap:4px; }
.nav-link { font-size:14.5px; font-weight:500; color:var(--muted); padding:8px 12px;
  border-radius:9px; transition:all .15s; }
.nav-link:hover { color:var(--ink); background:var(--bg-sub); }
.nav-link.active { color:var(--ink); font-weight:600; background:var(--bg-sub); }
.nav-spacer { flex:1; }
.nav-cta { display:flex; align-items:center; gap:10px; }

.nav-burger { display:none; width:42px; height:42px; border-radius:10px; border:1px solid var(--line);
  align-items:center; justify-content:center; background:var(--bg); }
.nav-burger svg { width:22px; height:22px; }

/* Mobile menu */
.mmenu { position:fixed; left:0; right:0; top:var(--nav-h); z-index:55;
  background:var(--bg); border-bottom:1px solid var(--line); box-shadow:var(--sh-md);
  padding:14px 28px 22px; display:none; flex-direction:column; gap:4px; }
.mmenu.open { display:flex; }
.mmenu a { padding:13px 12px; border-radius:10px; font-size:16px; font-weight:500; color:var(--text);
  border-bottom:1px solid var(--line-soft); }
.mmenu a:last-of-type { border-bottom:none; }
.mmenu .btn { margin-top:10px; }
body.no-scroll { overflow:hidden; }

/* ---- Footer ------------------------------------------------------------ */
.footer { background:var(--ink); color:var(--navy-muted); padding:64px 0 36px; }
.footer-grid { display:grid; grid-template-columns:1.7fr 1fr 1fr 1fr; gap:40px; }
.footer .brand-name, .footer h4 { color:#fff; }
.footer-about { max-width:300px; margin-top:16px; font-size:14px; line-height:1.65; color:var(--navy-muted); }
.footer h4 { font-family:"Inter Tight",sans-serif; font-size:14px; letter-spacing:.04em;
  text-transform:uppercase; margin-bottom:16px; color:#fff; font-weight:600; }
.footer-col a { display:block; font-size:14px; color:var(--navy-muted); padding:6px 0; transition:color .15s; }
.footer-col a:hover { color:#fff; }
.footer .brand-mark { box-shadow:none; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  margin-top:48px; padding-top:26px; border-top:1px solid var(--navy-line);
  font-size:13.5px; color:var(--navy-muted); }
.footer-bottom .fb-links { display:flex; gap:22px; }
.footer-bottom a:hover { color:#fff; }

/* ---- Cards ------------------------------------------------------------- */
.card { background:var(--bg); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:26px; box-shadow:var(--sh-sm); }
.card-soft { background:var(--bg-sub); border:1px solid var(--line-soft); box-shadow:none; }
.card h3 { margin-bottom:9px; }
.card .card-txt { color:var(--muted); font-size:15px; line-height:1.6; }

.feature-ico { width:46px; height:46px; border-radius:13px; background:var(--accent-50);
  color:var(--accent); border:1px solid var(--accent-100);
  display:flex; align-items:center; justify-content:center; flex:none; }
.feature-ico svg { width:22px; height:22px; }
.feature-ico.green { background:var(--success-50); color:var(--success); border-color:#CFEAD8; }
.feature-ico.amber { background:var(--amber-50); color:var(--warning); border-color:#F6E4BD; }

/* ---- Grids ------------------------------------------------------------- */
.grid { display:grid; gap:22px; }
.g2 { grid-template-columns:repeat(2,1fr); }
.g3 { grid-template-columns:repeat(3,1fr); }
.g4 { grid-template-columns:repeat(4,1fr); }

/* ---- Decor (hero/dark backgrounds) ------------------------------------- */
.decor { position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.blob { position:absolute; border-radius:50%; filter:blur(60px); opacity:.5; }
.blob-a { width:520px; height:520px; background:radial-gradient(circle,#bcd2fb,transparent 70%);
  top:-160px; right:-120px; }
.blob-b { width:440px; height:440px; background:radial-gradient(circle,#dce7fc,transparent 70%);
  bottom:-180px; left:-120px; opacity:.45; }
.grid-bg { position:absolute; inset:0;
  background-image:linear-gradient(var(--line-soft) 1px,transparent 1px),
                   linear-gradient(90deg,var(--line-soft) 1px,transparent 1px);
  background-size:56px 56px;
  -webkit-mask-image:radial-gradient(ellipse 80% 60% at 50% 0%,#000 30%,transparent 75%);
  mask-image:radial-gradient(ellipse 80% 60% at 50% 0%,#000 30%,transparent 75%); }

/* ---- Product mockups --------------------------------------------------- */
.mock { background:var(--bg); border:1px solid var(--line); border-radius:16px;
  box-shadow:var(--sh-lg); overflow:hidden; position:relative; z-index:1; }
.mock-bar { height:38px; display:flex; align-items:center; gap:14px; padding:0 14px;
  border-bottom:1px solid var(--line-soft); background:var(--bg-sub); }
.mock-dots { display:flex; gap:6px; }
.mock-dot { width:11px; height:11px; border-radius:50%; }
.mock-dot.r { background:#FF5F57; } .mock-dot.y { background:#FEBC2E; } .mock-dot.g { background:#28C840; }
.mock-title { font-size:12px; font-weight:600; color:var(--faint); }
.mock-body { padding:18px; }
.mock-stat-label { font-size:10.5px; font-weight:600; text-transform:uppercase;
  letter-spacing:.04em; color:var(--faint); }

/* KPI tiles inside mocks */
.kpi { background:var(--bg-sub); border:1px solid var(--line-soft); border-radius:var(--r-md);
  padding:13px 14px; }
.kpi-val { font-family:"Inter Tight",sans-serif; font-weight:700; font-size:22px;
  color:var(--ink); letter-spacing:-.02em; margin-top:5px; }
.kpi-val.sm { font-size:18px; }

/* progress bar */
.bar { height:8px; border-radius:99px; background:var(--bg-panel); overflow:hidden; }
.bar > span { display:block; height:100%; border-radius:99px;
  background:linear-gradient(90deg,var(--accent),#5b8df3); }
.bar.green > span { background:linear-gradient(90deg,var(--success),#3ec06f); }

/* product cells (POS grid) */
.prod-cell { border:1px solid var(--line-soft); border-radius:12px; padding:11px; background:var(--bg);
  display:flex; flex-direction:column; gap:7px; }
.prod-thumb { height:40px; border-radius:8px; background:var(--bg-panel); }
.prod-cell .pn { font-size:12px; font-weight:600; color:var(--text); line-height:1.25; }
.prod-cell .pp { font-size:12.5px; font-weight:700; color:var(--accent); }

/* receipt / list rows */
.line-row { display:flex; align-items:center; justify-content:space-between; padding:9px 0;
  border-bottom:1px solid var(--line-soft); font-size:13.5px; }
.line-row:last-child { border-bottom:none; }
.line-row .lr-name { color:var(--text); font-weight:500; }
.line-row .lr-sub { font-size:11.5px; color:var(--faint); margin-top:2px; }
.line-row .lr-amt { font-weight:700; color:var(--ink); font-family:"Inter Tight",sans-serif; }

/* stock rows */
.stock-row { display:flex; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid var(--line-soft); }
.stock-row:last-child { border-bottom:none; }
.sdot { width:9px; height:9px; border-radius:50%; flex:none; }
.sdot.g { background:var(--success); } .sdot.a { background:var(--warning); } .sdot.r { background:var(--danger); }
.stock-row .st-name { flex:1; font-size:13.5px; font-weight:500; }
.stock-row .st-qty { font-size:13px; font-weight:600; color:var(--muted); font-variant-numeric:tabular-nums; }

/* avatars (clients) */
.ava { width:30px; height:30px; border-radius:50%; background:var(--accent-50); color:var(--accent-700);
  display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; flex:none; }

/* ---- Pills ------------------------------------------------------------- */
.pill { display:inline-flex; align-items:center; gap:5px; font-size:12px; font-weight:600;
  border-radius:999px; padding:3px 9px; line-height:1.4; }
.pill-green { background:var(--success-50); color:var(--success); }
.pill-red { background:#FEF2F2; color:var(--danger); }
.pill-amber { background:var(--amber-50); color:#B45309; }
.pill-blue { background:var(--accent-50); color:var(--accent-700); }
.pill-gray { background:var(--bg-panel); color:var(--muted); }

/* ---- Dark band --------------------------------------------------------- */
.band-dark { background:var(--navy); color:var(--navy-text); position:relative; overflow:hidden; }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color:#fff; }
.band-dark .lead, .band-dark .muted { color:var(--navy-muted); }
.band-dark .kicker { color:#7fa6f5; }

.stat-num { font-family:"Inter Tight",sans-serif; font-weight:700;
  font-size:clamp(34px,4vw,50px); letter-spacing:-.03em; color:#fff; line-height:1; }
.band-dark .stat-lbl { color:var(--navy-muted); font-size:14.5px; margin-top:9px; }

/* ---- Segment logos ("ghost") ------------------------------------------- */
.logos { display:flex; flex-wrap:wrap; justify-content:center; gap:14px 34px; }
.logo-ghost { display:inline-flex; align-items:center; gap:10px; color:var(--faint);
  font-size:15px; font-weight:600; }
.logo-ghost .lg-ico { width:34px; height:34px; border-radius:9px; background:var(--bg-panel);
  display:flex; align-items:center; justify-content:center; }
.logo-ghost svg { width:18px; height:18px; }

/* ---- Steps ------------------------------------------------------------- */
.step-num { width:34px; height:34px; border-radius:10px; background:var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:"Inter Tight",sans-serif;
  font-weight:700; font-size:16px; flex:none; }

/* ---- FAQ --------------------------------------------------------------- */
.faq-list { max-width:820px; margin:0 auto; }
.faq-item { border:1px solid var(--line); border-radius:var(--r-md); background:var(--bg);
  margin-bottom:12px; overflow:hidden; }
.faq-q { display:flex; align-items:center; justify-content:space-between; gap:16px; width:100%;
  text-align:left; padding:20px 22px; font-family:"Inter Tight",sans-serif; font-weight:600;
  font-size:18px; color:var(--ink); }
.faq-q .chev { width:22px; height:22px; flex:none; position:relative; transition:transform .25s; color:var(--muted); }
.faq-q .chev::before, .faq-q .chev::after { content:""; position:absolute; background:currentColor;
  border-radius:2px; }
.faq-q .chev::before { left:0; top:50%; width:100%; height:2.2px; transform:translateY(-50%); }
.faq-q .chev::after { top:0; left:50%; height:100%; width:2.2px; transform:translateX(-50%); }
.faq-item.open .faq-q { color:var(--accent); }
.faq-item.open .chev { transform:rotate(45deg); color:var(--accent); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a-inner { padding:0 22px 22px; color:var(--muted); font-size:15.5px; line-height:1.65; }

/* ---- Pricing cards ----------------------------------------------------- */
.price-card { background:var(--bg); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:30px; display:flex; flex-direction:column; position:relative; }
.price-card.featured { border-color:var(--accent); box-shadow:var(--sh-md); }
.price-card.featured::before { content:"Популярный"; position:absolute; top:-12px; left:30px;
  background:var(--accent); color:#fff; font-size:12px; font-weight:600; padding:5px 12px;
  border-radius:999px; box-shadow:var(--sh-blue); }
.price-name { font-family:"Inter Tight",sans-serif; font-weight:600; font-size:19px; color:var(--ink); }
.price-desc { color:var(--muted); font-size:14px; margin-top:4px; }
.price-amt { font-family:"Inter Tight",sans-serif; font-weight:700; font-size:44px; color:var(--ink);
  letter-spacing:-.03em; line-height:1; margin-top:18px; }
.price-amt .cur { font-size:20px; font-weight:600; color:var(--muted); letter-spacing:0; }
.price-per { font-size:14px; color:var(--faint); margin-top:6px; }
.price-card .btn { margin-top:22px; }
.price-list { margin-top:22px; display:flex; flex-direction:column; gap:13px; }
.price-feat { display:flex; align-items:flex-start; gap:10px; font-size:14.5px; color:var(--text); }
.price-feat svg { width:18px; height:18px; flex:none; color:var(--success); margin-top:1px; }
.price-feat.off { color:var(--faint); }
.price-feat.off svg { color:var(--faint); }

/* ---- Check list -------------------------------------------------------- */
.check-li { display:flex; align-items:flex-start; gap:12px; font-size:15.5px; color:var(--text);
  line-height:1.5; }
.check-li::before { content:""; width:22px; height:22px; flex:none; border-radius:7px;
  background:var(--success-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
  margin-top:1px; }
.bullets { display:flex; flex-direction:column; gap:14px; }

.hero-checks { display:flex; flex-wrap:wrap; gap:10px 22px; }
.hero-checks .check-li { font-size:14.5px; font-weight:500; }

/* ---- Photo placeholder ------------------------------------------------- */
.ph { background:repeating-linear-gradient(45deg,var(--bg-panel),var(--bg-panel) 9px,var(--bg-sub) 9px,var(--bg-sub) 18px);
  border:1px solid var(--line); border-radius:var(--r-md); display:flex; align-items:center;
  justify-content:center; color:var(--faint); font-size:12px; font-weight:600; letter-spacing:.04em; }
.ph-ava { width:74px; height:74px; border-radius:50%; }

/* team card */
.team-card { text-align:center; }
.team-card .t-name { font-family:"Inter Tight",sans-serif; font-weight:600; font-size:17px;
  color:var(--ink); margin-top:14px; }
.team-card .t-role { color:var(--muted); font-size:14px; margin-top:3px; }
.team-card .ph-ava { margin:0 auto; }

/* ---- Hero / feature layouts ------------------------------------------- */
.hero { position:relative; overflow:hidden; padding:clamp(48px,7vw,92px) 0 clamp(60px,8vw,104px); }
.hero-grid { display:grid; grid-template-columns:1.04fr .96fr; gap:54px; align-items:center;
  position:relative; z-index:1; }
.hero-mock { position:relative; }

.feat-row { display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:center; }
.feat-row-rev .feat-text { order:2; }
.feat-row-rev .feat-media { order:1; }

.mini-feat { display:flex; gap:11px; align-items:flex-start; }
.mini-feat .feature-ico { width:38px; height:38px; border-radius:10px; }
.mini-feat .feature-ico svg { width:18px; height:18px; }
.mini-feat .mf-t { font-weight:600; font-size:15px; color:var(--ink); }
.mini-feat .mf-d { font-size:13.5px; color:var(--muted); line-height:1.5; margin-top:2px; }

/* floating cluster pieces */
.float-card { position:absolute; background:var(--bg); border:1px solid var(--line);
  border-radius:var(--r-md); box-shadow:var(--sh-md); z-index:2; }
.float-phone { position:absolute; width:184px; bottom:-26px; left:-34px; z-index:3;
  background:var(--bg); border:1px solid var(--line); border-radius:24px; box-shadow:var(--sh-lg);
  padding:12px; }
.chip-float { position:absolute; top:-22px; right:-14px; z-index:3; display:inline-flex; align-items:center;
  gap:8px; background:var(--bg); border:1px solid var(--line); box-shadow:var(--sh-md);
  border-radius:999px; padding:8px 14px; font-size:13px; font-weight:600; color:var(--text); }

/* dark CTA card */
.cta-card { position:relative; overflow:hidden; background:var(--navy); border-radius:var(--r-xl);
  padding:clamp(40px,6vw,72px); text-align:center; color:#fff; }
.cta-card h1, .cta-card h2 { color:#fff; }
.cta-card .lead { color:var(--navy-muted); margin:16px auto 0; max-width:560px; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:30px; }

/* nav anchor block (features) */
.anchor-card { display:flex; gap:14px; align-items:center; }
.anchor-card .feature-ico { width:40px; height:40px; }

/* ---- Form fields ------------------------------------------------------- */
.field { display:flex; flex-direction:column; gap:7px; }
.field label { font-size:13px; font-weight:600; color:var(--muted); }
.field input, .field textarea, .field select {
  border:1px solid var(--line); border-radius:var(--r-md); padding:12px 14px; background:var(--bg);
  color:var(--text); font-size:15px; transition:border-color .15s, box-shadow .15s; width:100%; }
.field textarea { resize:vertical; min-height:104px; }
.field input::placeholder, .field textarea::placeholder { color:var(--faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline:none; border-color:var(--accent); box-shadow:0 0 0 4px var(--accent-100); }
.form-grid { display:grid; gap:16px; }
.form-row2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.contact-item { display:flex; gap:14px; align-items:flex-start; }
.contact-item .feature-ico { width:42px; height:42px; }
.contact-item .ci-l { font-size:12.5px; font-weight:600; text-transform:uppercase; letter-spacing:.03em;
  color:var(--faint); }
.contact-item .ci-v { font-size:16px; font-weight:600; color:var(--ink); margin-top:2px; }
.contact-item .ci-s { font-size:13.5px; color:var(--muted); margin-top:2px; }

.form-success { text-align:center; padding:30px 10px; }
.form-success .fs-ico { width:64px; height:64px; border-radius:50%; background:var(--success-50);
  color:var(--success); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.form-success .fs-ico svg { width:32px; height:32px; }

/* ---- Reveal animation -------------------------------------------------- */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1),
  transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.06s; }
.reveal.d2 { transition-delay:.12s; }
.reveal.d3 { transition-delay:.18s; }
.reveal.d4 { transition-delay:.24s; }

/* ---- Floaty keyframes -------------------------------------------------- */
@keyframes floaty { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
.float-a { animation:floaty 6s ease-in-out infinite; }
.float-b { animation:floaty 7s ease-in-out infinite; animation-delay:.8s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; }
  .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  .float-a, .float-b { animation:none !important; }
}

/* helpers */
.mt-8{margin-top:8px;} .mt-14{margin-top:14px;} .mt-18{margin-top:18px;} .mt-22{margin-top:22px;}
.mt-28{margin-top:28px;} .mt-36{margin-top:36px;} .mt-44{margin-top:44px;}
.flex{display:flex;} .gap-10{gap:10px;} .gap-14{gap:14px;} .gap-22{gap:22px;}
.wrap-actions{display:flex;gap:14px;flex-wrap:wrap;}
.align-c{align-items:center;}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:980px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .g4 { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px) {
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .feat-row { grid-template-columns:1fr; gap:36px; }
  .feat-row-rev .feat-text { order:1; }
  .feat-row-rev .feat-media { order:2; }
  .hero-mock { max-width:440px; margin:0 auto; }
}
@media (max-width:860px) {
  .nav-links { display:none; }
  .nav-cta .btn-ghost { display:none; }
  .nav-burger { display:inline-flex; }
  .g3, .g2 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:560px) {
  .wrap { padding:0 18px; }
  .g4 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; }
  .btn:not(.nav-cta .btn) { width:100%; }
  .nav-cta .btn { width:auto; }
  .form-row2 { grid-template-columns:1fr; }
  .cta-actions .btn, .wrap-actions .btn, .hero-actions .btn { width:100%; }
  .price-card.featured::before { left:50%; transform:translateX(-50%); }
}
