:root {
  --bg: #030712;
  --surface: #111827;
  --raised: #1f2937;
  --border: #374151;
  --text: #ffffff;
  --body: #d1d5db;
  --dim: #6b7280;
  --brand: #14b8a6;
  --brand-soft: #99f6e4;
  --cta: #0d9488;
  --cta-hover: #0f766e;
  --rose: #e11d48;
  --violet: #c026d3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans Georgian", "Noto Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(3, 7, 18, 0.78);
  border-bottom: 1px solid rgba(55, 65, 81, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--brand-soft); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-cta {
  background: var(--cta);
  color: #fff;
}
.btn-cta:hover { background: var(--cta-hover); }
.btn-ghost {
  background: var(--raised);
  color: var(--text);
  border: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto;
  height: 420px;
  background: radial-gradient(closest-side, rgba(20, 184, 166, 0.22), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.18);
}
.hero h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
}
.hero .lead {
  margin-top: 18px;
  color: var(--body);
  font-size: 18px;
  max-width: 42ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.store {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.store a, .store span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 168px;
}
.store small {
  display: block;
  color: var(--dim);
  font-size: 11px;
  font-weight: 500;
}
.store b { font-size: 14px; }
.note {
  margin-top: 16px;
  color: var(--dim);
  font-size: 13px;
}

/* Phone */
.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.phone {
  width: 300px;
  background: #0b1220;
  border: 8px solid #1f2937;
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg);
}
.phone-bar {
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.phone-bar span {
  width: 92px;
  height: 10px;
  background: #030712;
  border-radius: 0 0 10px 10px;
}
.phone-screen { padding: 8px 14px 18px; }
.phone-hello {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 4px;
}
.phone-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.sec-label {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
}
.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.mini-card .num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-soft);
  background: #042f2e;
  border-radius: 99px;
  padding: 4px 8px;
}
.spark {
  height: 36px;
  margin-top: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #134e4a, #14b8a6 55%, #99f6e4);
  opacity: 0.85;
}
.medi {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.medi-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #042f2e;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  flex: none;
}
.medi p { font-size: 12px; color: var(--body); line-height: 1.4; }

/* Sections */
section { padding: 72px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}
.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.section-head p {
  margin-top: 10px;
  color: var(--body);
  font-size: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}
.stat b {
  display: block;
  font-size: 22px;
  color: var(--brand-soft);
  margin-bottom: 6px;
}
.stat span { color: var(--body); font-size: 14px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 168px;
}
.icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #042f2e;
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.icon svg { width: 20px; height: 20px; }
.card h3 { font-size: 16px; margin-bottom: 8px; }
.card p { color: var(--body); font-size: 14px; }

.card.rose .icon { background: #4c0519; color: #fb7185; }
.card.violet .icon { background: #4a044e; color: #e879f9; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.n {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--cta);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--body); font-size: 14px; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.plan.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, #042f2e, var(--surface) 42%);
}
.plan .who { color: var(--dim); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.plan h3 { font-size: 22px; margin-bottom: 6px; }
.plan .price {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 10px 0 16px;
}
.plan ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--body);
  font-size: 14px;
}
.plan li::before {
  content: "✓ ";
  color: var(--brand);
  font-weight: 800;
}

.disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--body);
  font-size: 14px;
}
.disclaimer strong { color: var(--text); }

.cta-band {
  background: linear-gradient(135deg, #042f2e, var(--surface));
  border: 1px solid #115e59;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { font-size: 28px; letter-spacing: -0.03em; max-width: 16ch; }
.cta-band p { color: var(--body); margin-top: 8px; max-width: 40ch; }

footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  color: var(--dim);
  font-size: 13px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot a:hover { color: var(--brand-soft); }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-grid, .grid, .steps, .plans, .stats { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .phone { transform: none; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
