/* ===========================================================
   Бізнес·Сервіс — Design System v2
   Aesthetic: Ukrainian Industrial Precision
   Deep navy · Electric teal · Geometric confidence
   =========================================================== */

:root {
  /* ── Brand ── */
  --brand:        #0fd4b0;
  --brand-vivid:  #14e8c4;
  --brand-strong: #0aab8e;
  --brand-soft:   rgba(15, 212, 176, 0.10);
  --brand-ink:    #054538;
  --brand-glow:   rgba(15, 212, 176, 0.30);

  /* ── Navy depth ── */
  --navy:     #0d1f2d;
  --navy-2:   #091620;
  --navy-3:   #060f18;
  --navy-mid: #132030;
  --navy-line: rgba(255,255,255,0.07);
  --navy-line-2: rgba(255,255,255,0.13);

  /* ── Light surfaces ── */
  --bg:        #f4f7f5;
  --surface:   #ffffff;
  --surface-2: #eef2ef;
  --surface-3: #e5ebe7;

  /* ── Ink ── */
  --ink:   #0d1e28;
  --ink-2: #3a5060;
  --ink-3: #678090;
  --ink-4: #6b8898;

  /* ── Borders ── */
  --line:        #e0e8e3;
  --line-strong: #cad4ce;

  /* ── Accent ── */
  --amber: #f5b544;

  /* ── Type ── */
  --font-head: "Onest", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* ── Shape ── */
  --r-xs: 6px;
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* ── Shadow ── */
  --shadow-xs: 0 1px 3px rgba(13,30,40,.06);
  --shadow-sm: 0 2px 8px rgba(13,30,40,.08), 0 1px 2px rgba(13,30,40,.04);
  --shadow:    0 6px 20px rgba(13,30,40,.09), 0 2px 6px rgba(13,30,40,.05);
  --shadow-lg: 0 16px 48px rgba(13,30,40,.12), 0 6px 16px rgba(13,30,40,.07);
  --shadow-xl: 0 24px 64px rgba(13,30,40,.16), 0 8px 24px rgba(13,30,40,.10);
  --shadow-brand: 0 8px 28px rgba(15,212,176,.32), 0 2px 8px rgba(15,212,176,.16);
  --shadow-brand-lg: 0 16px 48px rgba(15,212,176,.28);

  --maxw: 1220px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
}
p  { margin: 0; text-wrap: pretty; }
a  { color: inherit; text-decoration: none; }
img{ display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── Eyebrow ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-strong);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  border-radius: 2px;
}
.eyebrow.on-dark            { color: var(--brand); }
.eyebrow.on-dark::before    { background: linear-gradient(90deg, var(--brand), rgba(15,212,176,.3)); }

/* ─── Sections ─── */
.section { padding-block: clamp(48px, 6vw, 80px); }
.section-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-top: 18px;
  letter-spacing: -.03em;
}
.section-head p {
  margin-top: 20px;
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--ink-2);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  border: 1.5px solid transparent;
  transition: all .22s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .2s ease;
  background: rgba(255,255,255,.1);
}
.btn:hover::after { opacity: 1; }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(145deg, var(--brand-vivid), var(--brand-strong));
  color: #042a23;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-brand-lg);
}
.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.btn-outline-light {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.10);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 32px; font-size: 17px; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,247,245,.75);
  backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(244,247,245,.94);
  box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(13,30,40,.06);
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 74px;
}

/* ── Logo mark ── */
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
/* wrapper handles the badge overflow */
.logo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 44px; height: 44px;
}
.logo-wrap::after {
  content: "";
  position: absolute; right: -6px; bottom: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230fd4b0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
  border: 2px solid var(--bg);
  z-index: 2;
}
.logo-mark {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: linear-gradient(145deg, #1ad8b4 0%, #0aab8e 100%);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(15,212,176,.42), inset 0 1px 0 rgba(255,255,255,.22);
  overflow: hidden;
}
.logo-mark::before {
  content: "";
  position: absolute; top: -12px; right: -12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.logo-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  letter-spacing: .5px;
  position: relative; z-index: 1;
}

.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b {
  font-family: var(--font-head);
  font-weight: 800; font-size: 17.5px; letter-spacing: -.01em;
}
.brand-name b i { font-style: normal; color: var(--brand-strong); }
.brand-name small { font-size: 11px; color: var(--ink-3); letter-spacing: .05em; margin-top: 3px; font-weight: 600; }

/* nav links */
.nav-links { display: flex; gap: 2px; margin-left: 4px; }
.nav-links a {
  padding: 9px 13px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--brand-strong); background: var(--brand-soft); }
.nav-links a.nav-shop {
  color: var(--brand-strong); background: var(--brand-soft);
  border: 1px solid rgba(15,212,176,.2);
}
.nav-links a.nav-shop:hover {
  background: rgba(15,212,176,.16);
  border-color: rgba(15,212,176,.35);
}

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; color: var(--ink); }
.nav-phone svg { width: 17px; height: 17px; color: var(--brand-strong); flex-shrink: 0; }
.nav-phone span { white-space: nowrap; }
.nav-phone span small { display: block; font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: .04em; }

.burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: var(--surface);
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.burger i { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger.open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 74px 0 auto 0; z-index: 55;
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 18px var(--gutter) 28px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px); opacity: 0;
  visibility: hidden; pointer-events: none;
  transition: transform .25s, opacity .25s, visibility .25s;
}
.mobile-menu.open {
  transform: none; opacity: 1;
  visibility: visible; pointer-events: auto;
}
.mobile-menu a { padding: 13px 14px; border-radius: 12px; font-weight: 600; font-size: 17px; }
.mobile-menu a:hover { background: var(--surface-2); }
.mobile-menu .btn { margin-top: 10px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy-3);
  color: #d8e8e5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 74px);
}

/* Atmospheric layers */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 680px at 68% -10%, rgba(15,212,176,.19) 0%, transparent 60%),
    radial-gradient(ellipse 580px 460px at 95% 85%, rgba(15,212,176,.08) 0%, transparent 55%),
    radial-gradient(ellipse 480px 380px at 4% 65%, rgba(10,170,142,.10) 0%, transparent 50%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  pointer-events: none;
}
/* Dot grid */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(52px, 5.5vw, 72px) clamp(40px, 4.5vw, 60px);
  position: relative; z-index: 1;
  flex: 1;
}

/* Eyebrow row with location pill */
.hero-eyebrow-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px; border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-location svg { width: 13px; height: 13px; color: var(--brand); }

.hero-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand);
  background: rgba(15,212,176,.10);
  border: 1px solid rgba(15,212,176,.26);
  padding: 5px 13px; border-radius: 999px;
}
.hero-free-badge svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Headline */
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -.038em;
  line-height: 1.04;
  margin-top: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(130deg, var(--brand-vivid) 0%, #7ae8d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  margin-top: 24px;
  max-width: 500px;
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(215,236,232,.90);
  line-height: 1.72;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; align-items: center; }
.hero-cta .btn { flex: 0 0 auto; justify-content: center; }

/* Response badge */
.hero-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 18px;
  background: rgba(15,212,176,.09);
  border: 1px solid rgba(15,212,176,.24);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
  max-width: fit-content;
}
.hero-response-badge .pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(15,212,176,.22);
  animation: pulse 2.2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(15,212,176,.22); }
  50%      { box-shadow: 0 0 0 8px rgba(15,212,176,0); }
}
.hero-response-badge span { font-size: 14px; font-weight: 600; color: rgba(195,228,224,.88); }
.hero-response-badge b   { color: var(--brand); }

/* Hero stat chips — compact trust indicators above headline */
.hero-stat-chips { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.hero-stat-chip {
  background: rgba(15,212,176,.08);
  border: 1px solid rgba(15,212,176,.18);
  border-radius: 10px; padding: 8px 16px; text-align: center; min-width: 54px;
}
.hero-stat-chip b {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(17px, 1.9vw, 21px);
  color: #fff; letter-spacing: -.03em; line-height: 1;
}
.hero-stat-chip span {
  display: block; font-size: 10px; color: rgba(155,185,185,.65);
  margin-top: 3px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
}
.hero-stat-chip.accent { background: rgba(15,212,176,.12); border-color: rgba(15,212,176,.28); }
.hero-stat-chip.accent b { color: #0fd4b0; }
.hero-stat-chip.accent span { color: rgba(15,212,176,.6); }

/* Secondary text link in hero CTA */
.hero-link-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.50); font-size: 14.5px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: color .2s;
}
.hero-link-secondary:hover { color: rgba(255,255,255,.80); }
.hero-link-secondary svg { width: 14px; height: 14px; }

/* Stats row — full-width bar below the grid */
.hero-stats-row {
  position: relative; z-index: 1;
  border-top: 1px solid var(--navy-line);
}
.hero-stats {
  display: flex;
  gap: 0;
  padding-block: 30px 34px;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding-inline: 20px;
  border-right: 1px solid var(--navy-line);
}
.hero-stat:last-child { border-right: none; }
.hero-stat b {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  color: #fff; letter-spacing: -.03em; line-height: 1;
}
.hero-stat span {
  font-size: 13px; color: rgba(155,185,185,.72);
  font-weight: 600; margin-top: 7px; display: block;
}

/* ── Hero Visual — POS mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pos-mockup {
  position: relative;
  width: 100%; max-width: 420px;
  z-index: 2;
}

/* Main terminal card */
.pos-terminal {
  background: linear-gradient(145deg, rgba(255,255,255,.085) 0%, rgba(255,255,255,.032) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(22px);
  box-shadow:
    0 0 0 1px rgba(15,212,176,.09),
    0 28px 72px rgba(0,0,0,.44),
    inset 0 1px 0 rgba(255,255,255,.1);
  animation: float 6.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-9px); }
}

.pos-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pos-header-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: rgba(255,255,255,.9); }
.pos-header-sub   { font-size: 12px; color: rgba(155,185,182,.6); margin-top: 2px; font-weight: 500; }

.pos-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--brand);
  background: rgba(15,212,176,.12);
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(15,212,176,.22);
}
.pos-status::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  animation: pulse 2.2s ease infinite;
}

/* Receipt rows */
.receipt-items { display: grid; gap: 13px; margin-bottom: 20px; }
.receipt-item {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.receipt-item-name {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(195,220,218,.72); font-weight: 500;
}
.receipt-item-dot {
  width: 8px; height: 8px; border-radius: 3px; flex-shrink: 0;
}
.receipt-item-dot.teal  { background: var(--brand); }
.receipt-item-dot.blue  { background: #6ab4f5; }
.receipt-item-dot.amber { background: var(--amber); }
.receipt-item-price {
  font-family: var(--font-head); font-weight: 700;
  font-size: 14px; color: rgba(255,255,255,.85); white-space: nowrap;
}

.receipt-total {
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center;
}
.receipt-total-label {
  font-size: 12.5px; font-weight: 700;
  color: rgba(155,185,182,.65);
  text-transform: uppercase; letter-spacing: .08em;
}
.receipt-total-sum {
  font-family: var(--font-head); font-weight: 800;
  font-size: 28px; color: #fff; letter-spacing: -.02em;
}

/* Success state */
.receipt-success {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; padding: 14px 18px;
  background: rgba(15,212,176,.11);
  border: 1px solid rgba(15,212,176,.24);
  border-radius: var(--r);
}
.receipt-success-ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center; flex-shrink: 0;
}
.receipt-success-ic svg { width: 16px; height: 16px; color: #042a23; stroke-width: 3; }
.receipt-success-text { font-size: 13.5px; font-weight: 700; color: var(--brand); }
.receipt-success-sub  { font-size: 12px; color: rgba(155,185,182,.7); margin-top: 1px; }

/* Floating badges */
.hero-float-1 {
  position: absolute;
  top: -26px; right: -36px;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 13px;
  z-index: 3;
  animation: float-a 7s ease-in-out infinite;
  animation-delay: -2s;
  min-width: 185px;
}
@keyframes float-a {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-6px) rotate(.8deg); }
}
.hero-float-2 {
  position: absolute;
  bottom: -72px; left: -42px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  animation: float-b 8.5s ease-in-out infinite;
  animation-delay: -4.5s;
  backdrop-filter: blur(14px);
  min-width: 168px;
}
@keyframes float-b {
  0%,100% { transform: translateY(0) rotate(.4deg); }
  50%      { transform: translateY(-5px) rotate(-.8deg); }
}

.float-ic {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; flex-shrink: 0;
}
.float-ic.teal { background: var(--brand-soft); }
.float-ic.teal svg { color: var(--brand-strong); }
.float-ic.navy { background: rgba(15,212,176,.14); }
.float-ic.navy svg { color: var(--brand); }
.float-ic svg { width: 20px; height: 20px; }

.float-value { font-family: var(--font-head); font-weight: 800; letter-spacing: -.02em; }
.float-label { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.float-label.light { color: rgba(200,222,220,.92); }
.float-sub { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.float-sub.light { color: rgba(125,162,160,.72); }

/* ── Trust strip ── */
.trust {
  background: rgba(0,0,0,.3);
  border-top: 1px solid var(--navy-line);
  padding-block: 20px;
  position: relative; z-index: 1;
  backdrop-filter: blur(8px);
}
.trust-inner {
  display: flex; align-items: center;
  gap: 12px 40px; flex-wrap: wrap; justify-content: center;
}
.trust-inner span {
  font-size: 13.5px; font-weight: 600;
  color: rgba(150,182,180,.82);
  display: inline-flex; align-items: center; gap: 9px;
}
.trust-inner svg { width: 16px; height: 16px; color: var(--brand); }

/* ═══════════════════════════════════════
   SERVICES CARDS
═══════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-vivid), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15,212,176,.25);
}
.card-ic {
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--brand-soft);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: background .2s, transform .22s cubic-bezier(.34,1.56,.64,1);
}
.card:hover .card-ic { background: rgba(15,212,176,.17); transform: scale(1.08); }
.card-ic svg { width: 24px; height: 24px; color: var(--brand-strong); stroke-width: 1.7; }
.card h3 { font-size: 19.5px; margin-bottom: 9px; letter-spacing: -.01em; }
.card p  { color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.card .tags span {
  font-size: 11.5px; font-weight: 700; color: var(--ink-3);
  background: var(--surface-2);
  padding: 4px 10px; border-radius: 999px; letter-spacing: .04em;
  border: 1px solid var(--line);
}

/* ═══════════════════════════════════════
   BRANDS
═══════════════════════════════════════ */
.brands {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding-block: 36px 40px;
  position: relative;
  overflow: hidden;
}
.brands::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(15,212,176,.04) 0%, transparent 70%);
  pointer-events: none;
}
.brands-lead {
  text-align: center; font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 24px;
  position: relative; z-index: 1;
}
.brands-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 12px;
  position: relative; z-index: 1;
}
.brand-chip {
  font-family: var(--font-head); font-weight: 800;
  font-size: 17px; letter-spacing: -.01em; color: var(--ink-3);
  padding: 9px 20px; border: 1.5px solid var(--line);
  border-radius: 999px; background: var(--bg);
  transition: all .22s cubic-bezier(.34,1.56,.64,1);
}
.brand-chip:hover {
  color: var(--brand-strong); border-color: var(--brand);
  background: var(--brand-soft); transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15,212,176,.15);
}
.brand-chip small { font-weight: 600; font-size: 12px; color: var(--ink-4); }

/* ═══════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════ */
.industries { background: var(--bg); }
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ind {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px;
  transition: all .22s cubic-bezier(.34,1.56,.64,1);
}
.ind:hover {
  transform: translateY(-3px); box-shadow: var(--shadow);
  border-color: rgba(15,212,176,.2);
}
.ind .pic {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--brand-soft);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .2s;
}
.ind:hover .pic { background: rgba(15,212,176,.17); }
.ind .pic svg { width: 24px; height: 24px; color: var(--brand-strong); stroke-width: 1.7; }
.ind h4 { font-size: 17.5px; margin-bottom: 6px; letter-spacing: -.01em; }
.ind p  { font-size: 14.5px; color: var(--ink-2); line-height: 1.62; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { background: var(--surface); }
.about-grid {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px,6vw,80px); align-items: center;
}
.about-slot { width: 100%; aspect-ratio: 5/4.3; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }

/* ── About visual stat card ── */
.about-visual-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 5/4.3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.avc-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 420px 320px at 90% -10%, rgba(15,212,176,.18) 0%, transparent 60%),
    radial-gradient(ellipse 300px 200px at -5% 90%, rgba(15,212,176,.10) 0%, transparent 50%);
  pointer-events: none;
}
.avc-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.avc-stats {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative; z-index: 1;
}
.avc-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.avc-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 72px);
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}
.avc-num sup {
  font-size: .45em;
  vertical-align: super;
  color: var(--brand);
}
.avc-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(155,185,185,.7);
  line-height: 1.4;
}
.avc-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,.1);
  margin: 0 clamp(20px, 3vw, 36px);
  flex-shrink: 0;
}

.avc-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative; z-index: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}
.avc-location svg {
  width: 20px; height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 1px;
}
.avc-location b {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.avc-location span {
  font-size: 13px;
  color: rgba(150,182,180,.72);
  margin-top: 2px;
  display: block;
}

.avc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative; z-index: 1;
}
.avc-tags span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(15,212,176,.12);
  border: 1px solid rgba(15,212,176,.22);
  padding: 6px 13px;
  border-radius: 999px;
  letter-spacing: .03em;
}

.avc-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative; z-index: 1;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.avc-cert svg {
  width: 16px; height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}
.avc-cert span {
  font-size: 12.5px;
  color: rgba(140,172,172,.7);
  font-weight: 600;
  line-height: 1.4;
}
.about-points { display: grid; gap: 24px; margin-top: 32px; }
.about-point { display: flex; gap: 16px; }
.about-point .pic {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--brand-soft);
  display: grid; place-items: center; flex-shrink: 0;
}
.about-point .pic svg { width: 22px; height: 22px; color: var(--brand-strong); }
.about-point h4 { font-size: 17.5px; margin-bottom: 5px; font-weight: 700; }
.about-point p  { font-size: 15px; color: var(--ink-2); line-height: 1.65; }

/* ═══════════════════════════════════════
   COMPLIANCE
═══════════════════════════════════════ */
.compliance {
  position: relative;
  background: var(--navy-2); color: #d8e8e5; overflow: hidden;
}
.compliance::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 420px at 12% 0%, rgba(15,212,176,.14) 0%, transparent 60%),
    radial-gradient(ellipse 480px 300px at 90% 100%, rgba(15,212,176,.07) 0%, transparent 50%);
  pointer-events: none;
}
.compliance::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.038) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.comp-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px,6vw,72px); align-items: center;
  position: relative; z-index: 1;
}
.comp-info h2 { color: #fff; font-size: clamp(28px,3.8vw,46px); }
.comp-info p  { color: rgba(175,210,208,.72); margin-top: 18px; font-size: 18px; max-width: 440px; line-height: 1.7; }
.comp-list { display: grid; gap: 14px; }
.comp-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 20px 22px;
  transition: border-color .2s, background .2s;
  backdrop-filter: blur(8px);
}
.comp-item:hover {
  border-color: rgba(15,212,176,.2);
  background: rgba(15,212,176,.05);
}
.comp-item .tag {
  font-family: var(--font-head); font-weight: 800;
  font-size: 11px; color: #042a23; background: var(--brand);
  padding: 5px 11px; border-radius: 999px;
  white-space: nowrap; margin-top: 2px; letter-spacing: .04em;
}
.comp-item h4 { color: #fff; font-size: 17px; margin-bottom: 4px; letter-spacing: -.01em; }
.comp-item p  { color: rgba(138,172,172,.78); font-size: 14.5px; margin: 0; }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding-top: 28px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head); font-weight: 800;
  font-size: 14px; color: var(--brand-strong);
  position: absolute; top: 0; left: 0; letter-spacing: .04em;
}
.step .bar {
  height: 3px; background: var(--line); border-radius: 3px;
  margin-bottom: 24px; position: relative; overflow: hidden;
}
.step .bar::after {
  content: "";
  position: absolute; inset: 0;
  width: 45%;
  background: linear-gradient(90deg, var(--brand), var(--brand-vivid));
  border-radius: 3px;
  animation: bar-anim 3s ease-in-out infinite alternate;
}
@keyframes bar-anim { from { width: 28%; } to { width: 65%; } }
.step h4 { font-size: 19.5px; margin-bottom: 9px; letter-spacing: -.01em; }
.step p  { font-size: 15px; color: var(--ink-2); line-height: 1.65; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing { background: var(--surface); }
.tabs {
  display: inline-flex; gap: 4px; padding: 5px;
  background: var(--surface-2); border-radius: 999px;
  margin-bottom: 42px; border: 1px solid var(--line);
}
.tabs button {
  border: none; background: transparent; padding: 11px 24px;
  border-radius: 999px; font-weight: 700; font-size: 15px;
  color: var(--ink-2); transition: all .2s;
}
.tabs button.active {
  background: var(--surface); color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.plan {
  border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px; background: var(--surface);
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand-vivid), var(--shadow-lg);
  position: relative;
  background: linear-gradient(155deg, rgba(15,212,176,.04) 0%, var(--surface) 40%);
}
.plan.featured::before {
  content: "Найпопулярніше";
  position: absolute; top: -14px; left: 26px;
  background: linear-gradient(135deg, var(--brand-vivid), var(--brand-strong));
  color: #042a23; font-size: 12px; font-weight: 800;
  padding: 6px 16px; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: var(--shadow-brand);
}
.plan h3   { font-size: 22px; letter-spacing: -.01em; }
.plan .who { color: var(--ink-3); font-size: 14px; margin-top: 6px; font-weight: 600; }
.plan .price { margin: 24px 0 4px; display: flex; align-items: baseline; gap: 8px; }
.plan .price small { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.plan .price b {
  font-family: var(--font-head); font-weight: 800;
  font-size: 40px; letter-spacing: -.03em; color: var(--ink);
}
.plan.featured .price b { color: var(--brand-strong); }
.plan .note { font-size: 13.5px; color: var(--ink-3); }
.plan ul { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 13px; }
.plan li { display: flex; gap: 11px; font-size: 15px; color: var(--ink-2); align-items: flex-start; }
.plan li svg { width: 18px; height: 18px; color: var(--brand-strong); flex-shrink: 0; margin-top: 2px; }
.plan .btn { width: 100%; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { background: var(--surface); }
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tst {
  display: flex; flex-direction: column;
  border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.tst:hover {
  border-color: rgba(15,212,176,.26); box-shadow: var(--shadow-sm);
}
.tst .stars { display: flex; gap: 3px; margin-bottom: 18px; }
.tst .stars svg { width: 18px; height: 18px; color: var(--amber); }
.tst blockquote { margin: 0; font-size: 16px; line-height: 1.65; color: var(--ink); flex-grow: 1; }
.tst .who {
  display: flex; align-items: center; gap: 13px;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
}
.tst .av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #042a23; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 17px; flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(15,212,176,.30);
}
.tst .who b    { display: block; font-size: 15px; font-family: var(--font-head); }
.tst .who span { font-size: 13.5px; color: var(--ink-3); }

/* ═══════════════════════════════════════
   BOOKING
═══════════════════════════════════════ */
.booking {
  position: relative;
  background: var(--navy-2); color: #d8e8e5; overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 480px at 88% 110%, rgba(15,212,176,.15) 0%, transparent 60%),
    radial-gradient(ellipse 580px 380px at -5% 0%, rgba(15,212,176,.08) 0%, transparent 50%);
  pointer-events: none;
}
.booking::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.booking-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px,6vw,80px); align-items: start;
  position: relative; z-index: 1;
}
.booking-info h2 { color: #fff; font-size: clamp(28px,3.8vw,46px); }
.booking-info p  { color: rgba(170,210,208,.72); margin-top: 18px; font-size: 18px; max-width: 420px; line-height: 1.7; }
.booking-contacts { margin-top: 36px; display: grid; gap: 18px; }
.bc-row { display: flex; gap: 14px; align-items: flex-start; }
.bc-row .pic {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center; flex-shrink: 0;
}
.bc-row .pic svg { width: 20px; height: 20px; color: var(--brand); }
.bc-row b    { color: #fff; font-size: 16px; font-family: var(--font-head); }
.bc-row span { display: block; color: rgba(125,162,160,.78); font-size: 14px; margin-top: 2px; }

.form-card {
  background: var(--surface); color: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(26px,4vw,40px);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.06);
}
.form-card h3 { font-size: 24px; margin-bottom: 4px; letter-spacing: -.02em; }
.form-card .sub { color: var(--ink-3); font-size: 14.5px; margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; color: var(--ink); letter-spacing: .02em; }
.field label .req { color: var(--brand-strong); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  border: 1.5px solid var(--line-strong); background: var(--surface);
  border-radius: 999px; padding: 10px 17px;
  font-size: 14px; font-weight: 600; color: var(--ink-2); transition: all .15s;
}
.chip:hover { border-color: var(--brand); color: var(--brand-strong); }
.chip.active { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-strong); }
.input, .textarea, select.input {
  width: 100%; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 13px 15px; font-size: 15.5px; font-family: inherit; color: var(--ink);
  background: var(--surface); transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.input:focus, .textarea:focus, select.input:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(15,212,176,.12);
}
.textarea { resize: vertical; min-height: 88px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.error .input { border-color: #e0584b; }
.err-msg { color: #d6483b; font-size: 12.5px; margin-top: 6px; display: none; }
.field.error .err-msg { display: block; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-foot { text-align: center; font-size: 12.5px; color: var(--ink-3); margin-top: 14px; }

.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ok {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--brand-soft);
  display: grid; place-items: center; margin: 0 auto 22px;
}
.form-success .ok svg { width: 38px; height: 38px; color: var(--brand-strong); }
.form-success h3 { font-size: 26px; margin-bottom: 10px; }
.form-success p  { color: var(--ink-2); font-size: 16px; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-wrap { max-width: 840px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink);
  transition: color .15s;
}
.faq-q:hover { color: var(--brand-strong); }
.faq-q .ic {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center; flex-shrink: 0;
  transition: all .2s; position: relative;
}
.faq-q .ic::before,.faq-q .ic::after {
  content: ""; position: absolute;
  background: var(--ink-2); border-radius: 2px;
  transition: transform .25s, background .2s;
}
.faq-q .ic::before { width: 12px; height: 2px; }
.faq-q .ic::after  { width: 2px; height: 12px; }
.faq-item.open .faq-q { color: var(--brand-strong); }
.faq-item.open .faq-q .ic { border-color: var(--brand); background: var(--brand); }
.faq-item.open .faq-q .ic::before,
.faq-item.open .faq-q .ic::after { background: #042a23; }
.faq-item.open .faq-q .ic::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: 24px; color: var(--ink-2); font-size: 16px; max-width: 680px; line-height: 1.72; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy-3);
  color: rgba(140,172,175,.78);
  padding-block: clamp(48px,6vw,72px) 32px;
  border-top: 1px solid var(--navy-line);
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand-name b     { color: #fff; }
.footer .brand-name b i   { color: var(--brand); }
.footer .brand-name small { color: rgba(118,142,145,.78); }
.footer-about { color: rgba(128,158,162,.72); font-size: 14.5px; margin-top: 18px; max-width: 280px; line-height: 1.7; }
.footer h5 {
  color: rgba(255,255,255,.82); font-family: var(--font-head);
  font-size: 13px; letter-spacing: .10em; text-transform: uppercase; margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a { font-size: 14.5px; color: rgba(138,168,172,.72); transition: color .15s; }
.footer ul a:hover { color: var(--brand); }
.footer ul li { font-size: 14.5px; }
.footer-bottom {
  margin-top: 44px; padding-top: 26px;
  border-top: 1px solid var(--navy-line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13px; color: rgba(108,138,142,.58);
}

/* ═══════════════════════════════════════
   BENEFITS
═══════════════════════════════════════ */
.benefits { background: var(--bg); }
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ben-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.ben-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-vivid), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s ease;
}
.ben-card:hover::before { transform: scaleX(1); }
.ben-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15,212,176,.25);
}
.ben-ic {
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--brand-soft);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: background .2s, transform .22s cubic-bezier(.34,1.56,.64,1);
}
.ben-card:hover .ben-ic { background: rgba(15,212,176,.17); transform: scale(1.08); }
.ben-ic svg { width: 24px; height: 24px; color: var(--brand-strong); }
.ben-card h4 { font-size: 19px; margin-bottom: 10px; letter-spacing: -.01em; }
.ben-card p  { color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.ben-card p strong { color: var(--ink); }

@media (max-width: 1100px) { .ben-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .ben-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   RRO vs PRRO COMPARE
═══════════════════════════════════════ */
.rro-compare { background: var(--surface); }

.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.cmp-card {
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg);
  position: relative;
}

.cmp-card--featured {
  border-color: var(--brand);
  background: linear-gradient(155deg, rgba(15,212,176,.04) 0%, var(--surface) 50%);
  box-shadow: 0 0 0 1px rgba(15,212,176,.18), var(--shadow-lg);
}

.cmp-badge {
  position: absolute; top: -14px; left: 28px;
  background: linear-gradient(135deg, var(--brand-vivid), var(--brand-strong));
  color: #042a23; font-size: 12px; font-weight: 800;
  padding: 5px 16px; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: var(--shadow-brand);
}

.cmp-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}

.cmp-ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; flex-shrink: 0;
}
.cmp-ic--navy  { background: rgba(13,31,45,.08); }
.cmp-ic--navy svg { color: var(--ink-2); }
.cmp-ic--brand { background: var(--brand-soft); }
.cmp-ic--brand svg { color: var(--brand-strong); }
.cmp-ic svg { width: 24px; height: 24px; }

.cmp-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-4); margin-bottom: 4px;
}
.cmp-title { font-size: 22px; letter-spacing: -.02em; margin: 0; }

.cmp-desc {
  font-size: 15px; color: var(--ink-2); line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.cmp-who { margin-bottom: 24px; }
.cmp-who-label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-4);
  display: block; margin-bottom: 14px;
}
.cmp-who ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cmp-who li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink-2);
}
.cmp-who li svg {
  width: 16px; height: 16px; color: var(--brand-strong);
  flex-shrink: 0;
}

.cmp-pros {
  display: grid; gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.cmp-pro {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.cmp-pro svg { width: 16px; height: 16px; color: var(--brand-strong); flex-shrink: 0; }

.cmp-note {
  text-align: center;
  margin-top: 36px;
  font-size: 16px; color: var(--ink-2);
}
.cmp-note a {
  color: var(--brand-strong); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
}
.cmp-note a:hover { color: var(--brand); }

@media (max-width: 860px) { .cmp-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   HERO ENTRANCE ANIMATIONS
═══════════════════════════════════════ */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-in-right {
  from { opacity: 0; transform: translateX(28px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow-row    { animation: hero-in .60s cubic-bezier(.16,1,.3,1) .06s both; }
  .hero-stat-chips     { animation: hero-in .65s cubic-bezier(.16,1,.3,1) .16s both; }
  .hero h1             { animation: hero-in .72s cubic-bezier(.16,1,.3,1) .28s both; }
  .hero-lead           { animation: hero-in .70s cubic-bezier(.16,1,.3,1) .40s both; }
  .hero-cta            { animation: hero-in .70s cubic-bezier(.16,1,.3,1) .52s both; }
  .hero-visual         { animation: hero-in-right .80s cubic-bezier(.16,1,.3,1) .14s both; }
  .trust               { animation: hero-in .65s cubic-bezier(.16,1,.3,1) .64s both; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-grid, .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .about-slot  { max-width: 460px; }
  .about-visual-card { aspect-ratio: auto; max-width: 480px; }
  .avc-num { font-size: clamp(40px, 10vw, 64px); }
  .cards, .plans { grid-template-columns: repeat(2,1fr); }
  .ind-grid, .tst-grid { grid-template-columns: repeat(2,1fr); }
  .comp-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); row-gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-float-1, .hero-float-2 { display: none; }
}
@media (max-width: 1120px) { .nav-phone { display: none; } }
@media (max-width: 940px)  { .nav-links { display: none; } .burger { display: flex; } .nav-cta { display: none; } }
@media (max-width: 720px) {
  .burger { display: flex; }
  .cards, .plans, .steps { grid-template-columns: 1fr; }
  .ind-grid, .tst-grid   { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-float-1, .hero-float-2 { display: none; }
  .pos-mockup { max-width: 360px; margin: 0 auto; }
  /* Compact terminal on mobile to keep CTAs visible above the fold */
  .pos-terminal { padding: 20px; }
  .receipt-items { gap: 10px; margin-bottom: 14px; }
  .receipt-total { padding-top: 10px; }
  .receipt-total-sum { font-size: 22px; }
  .receipt-success { padding: 11px 14px; margin-top: 12px; }
  .hero-response-badge { margin-top: 18px; padding: 10px 14px; }
  .hero-cta { margin-top: 28px; }
  .hero-cta .btn { min-width: 0; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-float-1, .hero-float-2 { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { flex: none; width: 100%; }
  .hero-link-secondary { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .pos-terminal  { animation: none; }
  .hero-float-1, .hero-float-2 { animation: none; }
  .pos-status::before, .hero-response-badge .pulse { animation: none; }
  .step .bar::after { animation: none; width: 45%; }
  .reveal { transition: none; }
  .btn, .card, .ind, .comp-item, .tst, .plan,
  .brand-chip, .nav-links a, .site-header { transition: none; }
}

/* ============================================================
   ПІДБІР-КАЛЬКУЛЯТОР
   ============================================================ */
.calc-section { background: var(--bg); }

.calc-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

/* Progress bar */
.calc-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px 0;
}
.calc-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--surface-3);
  border-radius: 99px;
  overflow: hidden;
}
.calc-progress-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 99px;
  width: 25%;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.calc-step-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Steps container */
.calc-steps { position: relative; min-height: 340px; }
.calc-step {
  display: none;
  flex-direction: column;
  padding: 32px 32px 36px;
  animation: calc-slide-in .35s cubic-bezier(.16,1,.3,1) both;
}
.calc-step.active { display: flex; }

@keyframes calc-slide-in {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: none; }
}

.calc-question {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -.02em;
}

/* Option grid */
.calc-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.calc-options--2 { grid-template-columns: repeat(2, 1fr); }
.calc-options--3 { grid-template-columns: repeat(3, 1fr); }

.calc-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .18s, background .18s, box-shadow .18s, transform .15s;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  text-align: center;
  line-height: 1.3;
}
.calc-opt svg {
  width: 28px; height: 28px;
  color: var(--ink-3);
  transition: color .18s;
  flex-shrink: 0;
}
.calc-opt:hover {
  border-color: var(--brand);
  background: rgba(15,212,176,.05);
  box-shadow: 0 0 0 3px rgba(15,212,176,.12);
  color: var(--ink);
  transform: translateY(-2px);
}
.calc-opt:hover svg { color: var(--brand); }
.calc-opt.selected {
  border-color: var(--brand);
  background: rgba(15,212,176,.08);
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(15,212,176,.18);
}
.calc-opt.selected svg { color: var(--brand-strong); }

/* Result step */
.calc-result { align-items: center; }
.calc-result-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 100%;
}
.calc-result-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(15,212,176,.12);
  display: flex; align-items: center; justify-content: center;
}
.calc-result-icon svg {
  width: 28px; height: 28px;
  color: var(--brand-strong);
  stroke-width: 2.2;
}
.calc-result-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.calc-result-kit {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 620px;
}
.calc-kit-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.calc-kit-item svg {
  width: 14px; height: 14px;
  color: var(--brand-strong);
  flex-shrink: 0;
}
.calc-result-price {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--brand-strong);
  letter-spacing: -.03em;
}
.calc-result-note {
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0;
  max-width: 480px;
}
.calc-result-cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.calc-result-cta svg { width: 16px; height: 16px; }
.calc-restart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  padding: 4px 0;
  transition: color .18s;
}
.calc-restart:hover { color: var(--ink); }
.calc-restart svg { width: 14px; height: 14px; }

/* Responsive */
@media (max-width: 680px) {
  .calc-progress { padding: 20px 20px 0; }
  .calc-step { padding: 24px 20px 28px; }
  .calc-options { grid-template-columns: repeat(2, 1fr); }
  .calc-options--2 { grid-template-columns: 1fr; }
  .calc-options--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 420px) {
  .calc-options--3 { grid-template-columns: repeat(2, 1fr); }
}

/* Google rating badge (testimonials) */
.tst-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--ink-2);
}
.tst-google-badge svg {
  width: 18px; height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}
.tst-google-badge b { color: var(--ink); }

/* ============================================================
   СЕРВІСНИЙ КОНТРАКТ
   ============================================================ */
.svc-contract {
  position: relative;
  background: var(--navy-2);
  color: #d8e8e5;
  overflow: hidden;
}
.svc-contract::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 420px at 85% 0%, rgba(15,212,176,.13) 0%, transparent 60%),
    radial-gradient(ellipse 480px 300px at 8% 100%, rgba(15,212,176,.06) 0%, transparent 50%);
  pointer-events: none;
}
.svc-contract .wrap { position: relative; z-index: 1; }
.svc-contract .section-head h2 { color: #fff; }
.svc-contract .section-head p { color: rgba(215,236,232,.75); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--navy-line-2);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.svc-card:hover {
  border-color: rgba(15,212,176,.35);
  transform: translateY(-4px);
}
.svc-card--featured {
  background: rgba(15,212,176,.08);
  border-color: rgba(15,212,176,.40);
  box-shadow: 0 12px 40px rgba(15,212,176,.10);
}
.svc-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--brand-ink);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.svc-name {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.svc-who {
  font-size: 13.5px;
  color: rgba(155,185,185,.75);
  margin-top: 4px;
}
.svc-price {
  margin: 18px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy-line);
}
.svc-price b {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.03em;
}
.svc-price span {
  font-size: 14px;
  color: rgba(155,185,185,.7);
  margin-left: 4px;
}
.svc-feats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.svc-feats li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(215,236,232,.85);
}
.svc-feats li b { color: #fff; }
.svc-feats li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  background: rgba(15,212,176,.14);
  border-radius: 50%;
}
.svc-feats li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: 7.5px;
  width: 7px; height: 4px;
  border-left: 1.8px solid var(--brand);
  border-bottom: 1.8px solid var(--brand);
  transform: rotate(-45deg);
}
.svc-cta { width: 100%; text-align: center; justify-content: center; }

.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--navy-line-2);
}
.btn-ghost-dark:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(15,212,176,.06);
}

.svc-note {
  text-align: center;
  font-size: 14px;
  color: rgba(155,185,185,.65);
  margin: 26px 0 0;
}

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .svc-card--featured { order: -1; }
}

/* About card: Google star accent */
.avc-star {
  font-size: .55em;
  color: var(--amber);
  vertical-align: super;
  margin-left: 2px;
}

/* Тултіп "Магазин у розробці" — біля клікнутої кнопки */
.shop-soon-tip {
  position: fixed;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 300px;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(15,212,176,.35);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .22s, transform .22s cubic-bezier(.16,1,.3,1);
  z-index: 1200;
  --arrow-x: 50%;
}
.shop-soon-tip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: var(--arrow-x);
  margin-left: -6px;
  width: 12px; height: 12px;
  background: var(--navy);
  border-left: 1px solid rgba(15,212,176,.35);
  border-top: 1px solid rgba(15,212,176,.35);
  transform: rotate(45deg);
}
.shop-soon-tip.show {
  opacity: 1;
  transform: translateY(0);
}
.shop-soon-tip svg {
  width: 20px; height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 1px;
}
.shop-soon-tip b {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  margin-bottom: 2px;
}
.shop-soon-tip span {
  font-size: 12.5px;
  color: rgba(215,236,232,.8);
  line-height: 1.4;
}

/* Географія у футері */
.footer-geo {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(155,185,185,.55);
  line-height: 1.6;
  max-width: 340px;
}

/* ── Mobile hero: центрування eyebrow і стат-чіпів ── */
@media (max-width: 760px) {
  .hero-eyebrow-row { justify-content: center; }
  /* дзеркальна смужка праворуч від тексту eyebrow */
  .hero-eyebrow-row .eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px; height: 2px;
    background: linear-gradient(270deg, var(--brand), rgba(15,212,176,.3));
    border-radius: 2px;
  }
  .hero-stat-chips { justify-content: center; }
}
