/* ── XDR Repricer landing — nişanələr, tipoqrafiya, düymələr ────────── */

:root {
  --ink:        #04060a;
  --ink-2:      #080c12;
  --cream:      #f4f2ec;
  --surface:    #0c141f;
  --surface-2:  #101a27;
  --line:       #18232f;
  --line-up:    #253546;

  --fg:         #eef1f5;
  --fg-dim:     #96a1b0;
  --fg-faint:   #5c6878;

  --mint:       #4fe8a8;
  --cyan:       #5fd9e8;
  --blue:       #5b9dff;
  --rose:       #ef5f7d;
  --amber:      #f4b23f;
  --forest:     #123d2c;

  --accent:     var(--mint);

  --font-disp:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-head:  'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body:  'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono:  'IBM Plex Mono', ui-monospace, Menlo, monospace;

  --r:          16px;
  --r-sm:       10px;
  --wrap:       1180px;
  --spring:     cubic-bezier(.34, 1.4, .64, 1);
}

/* işıqlı bölmə teması — komponentlər eyni qalır, yalnız nişanələr dəyişir */
.theme-light {
  --ink-2:      #ebe8e0;
  --surface:    #ffffff;
  --surface-2:  #fbfaf7;
  --line:       #e2ddd2;
  --line-up:    #cfc8b9;
  --fg:         #10151b;
  --fg-dim:     #525c68;
  --fg-faint:   #8b9199;
  --accent:     #14603f;
  background: var(--cream);
  color: var(--fg);
}

/* tünd yaşıl tam-en bölmə */
.theme-forest {
  --ink-2:      #0f3527;
  --surface:    #16452f;
  --surface-2:  #1a4f36;
  --line:       #205640;
  --line-up:    #2c6b50;
  --fg:         #f2f7f4;
  --fg-dim:     #a9c9b9;
  --fg-faint:   #7fa896;
  --accent:     #7ce0b0;
  background: var(--forest);
  color: var(--fg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; }
h1, h2 {
  font-family: var(--font-disp);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.04;
}
h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* kursiv vurğu — səhifənin imza hərəkəti */
.it {
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
}

/* ── etiket / eyebrow ───────────────────────────────────────────────── */
.label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--fg-faint);
  margin-bottom: 18px;
}
.label i { font-style: normal; color: var(--accent); margin-right: 10px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .14em;
  color: var(--fg-dim);
  border: 1px solid var(--line-up);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 28px;
}

.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(79, 232, 168, .55);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(79, 232, 168, .5); }
  70%  { box-shadow: 0 0 0 8px rgba(79, 232, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 232, 168, 0); }
}

/* ── başlıqlar ──────────────────────────────────────────────────────── */
.h2 { font-size: clamp(34px, 5.2vw, 62px); margin-bottom: 18px; }
.sec-sub { color: var(--fg-dim); font-size: 17px; max-width: 620px; }

/* ── düymələr ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--spring), box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .25s var(--spring); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(100deg, var(--mint), #6ff0d0);
  color: #04231a;
  box-shadow: 0 6px 26px -8px rgba(79, 232, 168, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -10px rgba(79, 232, 168, .7); }

.theme-light .btn-primary {
  background: var(--accent); color: #f4fbf7;
  box-shadow: 0 6px 22px -8px rgba(20, 96, 63, .5);
}

.btn-ghost {
  border-color: var(--line-up);
  color: var(--fg);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--fg-faint); background: rgba(127, 127, 127, .07); }

.btn-wa {
  background: #25d366; color: #06301a;
  box-shadow: 0 6px 22px -8px rgba(37, 211, 102, .55);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .7); }
.btn-wa svg { flex-shrink: 0; }

.btn-sm  { padding: 10px 18px; font-size: 13.5px; }
.btn-lg  { padding: 18px 34px; font-size: 17px; }
.btn-block { display: flex; width: 100%; }
.btn-text { color: var(--fg-dim); font-size: 14px; font-weight: 500; padding: 10px 6px; }
.btn-text:hover { color: var(--fg); }

.micro { font-family: var(--font-mono); font-size: 12.5px; color: var(--fg-faint); margin-top: 18px; }
.micro.center { text-align: center; }

/* təminat sətri — ✓ işarələri ilə */
.assure { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; }
.assure li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--fg-dim); }
.assure li::before { content: "✓"; color: var(--mint); font-size: 13px; }

/* ── naviqasiya ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(4, 6, 10, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 22px; height: 68px; }
/* Loqo əsas saytdakı ilə eyni ölçü və mint parıltı ilə verilir ki, iki
   səhifə arasında keçəndə brend elementi «tullanmasın». */
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 32px; width: auto; display: block;
  filter: drop-shadow(0 0 10px rgba(79, 232, 168, .35));
  transition: filter .35s ease, transform .35s ease;
}
.brand:hover .brand-logo {
  filter: drop-shadow(0 0 18px rgba(79, 232, 168, .65));
  transform: scale(1.04);
}

.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-size: 14px; color: var(--fg-dim); transition: color .2s ease; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ── altlıq ─────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); padding: 30px 0; }
.foot-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--fg-faint); }
.foot-links { display: flex; gap: 20px; }
.foot-links a:hover { color: var(--fg); }

/* ── sticky CTA ─────────────────────────────────────────────────────── */
.sticky {
  position: fixed; left: 50%; bottom: 20px; z-index: 70;
  transform: translate(-50%, 130%);
  display: flex; align-items: center; gap: 20px;
  padding: 11px 11px 11px 24px;
  background: rgba(12, 20, 31, .93);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-up);
  border-radius: 999px;
  box-shadow: 0 18px 50px -16px rgba(0, 0, 0, .85);
  transition: transform .45s var(--spring);
  max-width: calc(100vw - 32px);
}
.sticky.on { transform: translate(-50%, 0); }
.sticky-text { font-size: 14px; color: #96a1b0; }
.sticky-text b { color: #eef1f5; font-weight: 600; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}
@media (max-width: 640px) {
  .sticky-text { display: none; }
  .sticky { padding: 8px; }
  .btn-demo { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ── dil keçidi (AZ / RU / EN) ───────────────────────────────────────
   /birmarket statik səhifədir və saytın React navbar-ındakı keçiddən
   istifadə edə bilmir, ona görə öz keçidi var. Hər üç faylda eyni
   blokdur; cari dil aria-current ilə işarələnir. */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-up);
  border-radius: 999px;
  overflow: hidden;
  margin-right: 4px;
}
.lang-switch a {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 6px 10px;
  color: var(--fg-faint);
  line-height: 1;
  transition: color .18s, background .18s;
}
.lang-switch a:hover { color: var(--fg); }
.lang-switch a[aria-current='true'] { background: var(--accent); color: var(--ink); font-weight: 700; }
@media (max-width: 520px) { .lang-switch a { padding: 6px 8px; font-size: 11px; } }

/* ── keysə keçid (SEO daxili link) ─────────────────────────────────── */
.case-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--fg-faint);
}
.case-note a {
  color: var(--accent);
  border-bottom: 1px solid rgba(79, 232, 168, .35);
  padding-bottom: 1px;
}
.case-note a:hover { border-bottom-color: var(--accent); }

/* Naviqasiya bəndləri sətrə bölünməsin — RU/EN tərcümələri AZ-dən uzundur. */
.nav-links a { white-space: nowrap; }
