/* ── Variables ──────────────────────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --surface:   #f8f9f7;
  --surface-2: #f0f3ee;
  --dark:      #0b1410;
  --dark-2:    #132118;
  --text:      #0c1512;
  --muted:     rgba(12, 21, 18, 0.60);

  --gold:      #d4b978;
  --gold-2:    #c9a94d;
  --gold-glow: rgba(212, 185, 120, 0.28);
  --green:     #2a9b5f;
  --green-2:   #8fbf9a;
  --green-glow:rgba(42, 155, 95, 0.18);

  --line:       rgba(255,255,255, 0.08);
  --line-light: rgba(12, 21, 18, 0.10);

  --radius:    20px;
  --radius-sm: 14px;
  --s1: 0 2px 8px rgba(0,0,0,.08);
  --s2: 0 12px 40px rgba(0,0,0,.12);
  --s3: 0 24px 72px rgba(0,0,0,.16);

  --font: "Noto Sans Georgian", "DM Sans", system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button, a { font-family: inherit; }
h1,h2,h3,h4 { margin: 0; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

/* ── Layout ─────────────────────────────────────────────────────────── */
.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: transform .1s, box-shadow .2s, background .2s;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0b1410;
  box-shadow: 0 8px 28px var(--gold-glow);
}
.btn-gold:hover { box-shadow: 0 14px 40px rgba(212,185,120,.42); }

.btn-outline {
  background: transparent;
  border-color: var(--line-light);
  color: var(--text);
}
.btn-outline:hover { background: var(--surface); }

.btn-lg { padding: 14px 26px; font-size: 1rem; border-radius: var(--radius); }

/* ── Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-light);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(212,185,120,.25);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: .01em;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color .15s;
}
.nav a:hover { color: var(--text); }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 60px;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80vw 60vh at 70% -10%, rgba(212,185,120,.13), transparent 55%),
    radial-gradient(60vw 50vh at -5% 80%, rgba(42,155,95,.10), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212,185,120,.40);
  background: rgba(212,185,120,.10);
  color: rgba(12,21,18,.75);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1.18;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  color: var(--dark);
}
.title-accent {
  background: linear-gradient(120deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(42,155,95,.25);
  background: rgba(143,191,154,.10);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(12,21,18,.80);
}

/* Mock window */
.hero-visual { position: relative; }
.visual-glow {
  position: absolute;
  inset: -24px;
  border-radius: 32px;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,185,120,.15), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.mock-window {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(12,21,18,.12);
  box-shadow: var(--s3), 0 0 0 1px rgba(212,185,120,.12);
  background: #fff;
}
.mock-bar {
  background: #f2f2f0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line-light);
}
.mock-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.mock-red    { background: #ff5f57; }
.mock-yellow { background: #febc2e; }
.mock-green  { background: #28c840; }
.mock-title {
  margin-left: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.mock-body { display: flex; min-height: 220px; }
.mock-sidebar {
  width: 48px;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
}
.mock-logo-sm img { border-radius: 8px; }
.mock-nav-items { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.mock-nav-item {
  width: 26px; height: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,.15);
}
.mock-active { background: var(--gold) !important; }

.mock-content { flex: 1; padding: 16px; background: var(--surface); }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.mock-kpi {
  border-radius: 12px;
  padding: 10px 10px;
  border: 1px solid transparent;
}
.mock-kpi-gold { background: rgba(212,185,120,.12); border-color: rgba(212,185,120,.30); }
.mock-kpi-green{ background: rgba(143,191,154,.14); border-color: rgba(42,155,95,.22); }
.mock-kpi-plain{ background: rgba(255,255,255,.80); border-color: var(--line-light); }
.mock-kpi-label { font-size: 0.68rem; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.mock-kpi-val   { font-size: 0.92rem; font-weight: 900; color: var(--dark); }

.mock-rows { display: grid; gap: 8px; }
.mock-row { display: flex; align-items: center; gap: 8px; }
.mock-row-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.mock-row-dot.gold  { background: var(--gold); }
.mock-row-dot.green { background: var(--green-2); }
.mock-row-bar {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(212,185,120,.30));
}
.mock-row:nth-child(even) .mock-row-bar {
  background: linear-gradient(90deg, var(--green-2), rgba(143,191,154,.25));
}

/* ── Section commons ─────────────────────────────────────────────────── */
.section { padding: 80px 0; }

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-tinted {
  background: linear-gradient(180deg, var(--surface), rgba(212,185,120,.07));
}

.section-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,185,120,.45);
  background: rgba(212,185,120,.10);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(12,21,18,.70);
  margin-bottom: 14px;
}
.section-label-light { color: rgba(255,255,255,.55); border-color: rgba(212,185,120,.35); background: rgba(212,185,120,.08); }

.section-title { font-size: clamp(1.65rem, 3.2vw, 2.1rem); letter-spacing: -.02em; margin-bottom: 10px; }
.section-title-light { color: #fff; }

.section-sub { color: var(--muted); line-height: 1.65; font-size: 1.02rem; margin-bottom: 40px; }
.section-sub-light { color: rgba(255,255,255,.50); }

/* ── Product cards ───────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: var(--bg);
  box-shadow: var(--s2);
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s3);
}
.product-card-featured {
  background: linear-gradient(155deg, rgba(212,185,120,.08), rgba(143,191,154,.08));
  border-color: rgba(212,185,120,.30);
}
.product-icon {
  width: 46px; height: 46px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.gold-icon  { background: rgba(212,185,120,.14); border: 1px solid rgba(212,185,120,.35); }
.green-icon { background: rgba(143,191,154,.16); border: 1px solid rgba(42,155,95,.28); }
.product-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.product-card p  { color: var(--muted); line-height: 1.68; font-size: 0.95rem; }

/* ── Features grid ────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.feat {
  padding: 28px 22px;
  background: rgba(255,255,255,.03);
  transition: background .2s;
}
.feat:hover { background: rgba(212,185,120,.06); }
.feat-num  { font-size: 0.78rem; font-weight: 900; letter-spacing: .05em; margin-bottom: 8px; }
.feat-title { font-weight: 800; margin-bottom: 8px; font-size: 0.97rem; color: rgba(255,255,255,.92); }
.feat-text  { color: rgba(255,255,255,.45); font-size: 0.88rem; line-height: 1.65; }
.gold-text  { color: var(--gold); }

/* ── Pricing ────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
  align-items: start;
}
.pricing-main {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(212,185,120,.30);
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(212,185,120,.16), transparent 55%),
    radial-gradient(600px 300px at 100% 100%, rgba(143,191,154,.12), transparent 55%),
    #fff;
  box-shadow: 0 24px 80px rgba(212,185,120,.14), var(--s2);
}
.pricing-side {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: var(--surface);
  box-shadow: var(--s1);
}

.pricing-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(212,185,120,.14);
  border: 1px solid rgba(212,185,120,.40);
  color: rgba(12,21,18,.70);
  margin-bottom: 18px;
}
.pricing-tag-green { background: rgba(42,155,95,.10); border-color: rgba(42,155,95,.30); }

.pricing-amount {
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--dark);
}
.update-amount {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--dark);
}
.pricing-currency { font-size: .6em; vertical-align: top; margin-top: .3em; display: inline-block; margin-right: 2px; }
.small-curr { font-size: .55em; }

.pricing-desc { color: var(--muted); line-height: 1.65; margin-bottom: 22px; }

.pricing-perks { display: grid; gap: 12px; margin-bottom: 22px; }
.pricing-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(12,21,18,.85);
}
.pricing-perks svg { flex-shrink: 0; margin-top: 2px; }

.pricing-note {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(212,185,120,.10);
  border: 1px solid rgba(212,185,120,.30);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(12,21,18,.75);
}

.sep {
  height: 1px;
  background: var(--line-light);
  margin: 18px 0;
}
.pricing-steps { display: grid; gap: 14px; }
.pstep { display: flex; align-items: flex-start; gap: 12px; }
.pstep-n {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(212,185,120,.14);
  border: 1px solid rgba(212,185,120,.35);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.82rem;
  flex-shrink: 0;
}
.pstep-text { color: var(--muted); font-size: 0.90rem; font-weight: 600; padding-top: 4px; }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 10px; max-width: 780px; }
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--s1);
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:has(.faq-a:not([hidden])) {
  border-color: rgba(212,185,120,.35);
  box-shadow: 0 8px 28px rgba(212,185,120,.12);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 18px;
  background: transparent;
  border: none;
  font-weight: 800;
  font-size: 0.97rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text);
  transition: background .15s;
}
.faq-q:hover { background: var(--surface); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 12px;
  background: rgba(212,185,120,.12);
  border: 1px solid rgba(212,185,120,.30);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.faq-q[aria-expanded="true"] .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-q[aria-expanded="true"] .faq-plus-svg path { stroke: #0b1410; }
.faq-a {
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.95rem;
}
.faq-a p { font-weight: 500; }

/* ── CTA ─────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 96px 0 100px;
  text-align: center;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80vw 70vh at 50% 120%, rgba(212,185,120,.18), transparent 55%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-icon {
  margin: 0 auto 22px;
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(212,185,120,.30);
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -.03em;
  margin-bottom: 14px;
  color: #fff;
}
.cta-text {
  color: rgba(255,255,255,.50);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.68;
}
.cta-note {
  margin-top: 14px;
  color: rgba(255,255,255,.35);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  padding: 24px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.45);
  font-weight: 700;
  font-size: 0.88rem;
}
.footer-brand img { border-radius: 10px; opacity: .85; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.80); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .mock-window { max-width: 480px; margin: 0 auto; }
  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  .hero-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .mock-kpis { grid-template-columns: 1fr 1fr; }
  .pricing-main { padding: 24px 18px; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}
