/* ─────────────────────────────────────────────
   MTAP — mtap.az
   Dizayn dili tətbiqlə eynidir: tünd lacivərd fon,
   neon yaşıl vurğu, Montserrat + Inter.
   ───────────────────────────────────────────── */

:root {
  --bg: #070d1b;
  --surface: #0b1326;
  --surface-2: #111a30;
  --surface-3: #17203a;

  --fg: #e8edff;
  --fg-dim: #98a3c0;
  --fg-faint: #6b7694;

  --neon: #a8f928;
  --neon-dim: #8fdb00;
  --ink: #0d1a00;

  --blue: #508eff;
  --blue-soft: #aec6ff;

  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);

  --r-sm: 10px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --maxw: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-soft); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--neon); }

:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 {
  font-family: Montserrat, Inter, sans-serif;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(38px, 6.4vw, 68px); font-weight: 800; }
h2 { font-size: clamp(28px, 4.2vw, 42px); font-weight: 700; }
h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }

p { margin: 0 0 18px; }

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

.accent { color: var(--neon); }

.dim { color: var(--fg-dim); }

/* ─────────────────────────────────────────────
   FON — qatlı işıq və şəbəkə
   ───────────────────────────────────────────── */

.bg-art {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(168, 249, 40, 0.11), transparent 62%),
    radial-gradient(760px 520px at 8% 6%, rgba(80, 142, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #070d1b 0%, #070d1b 60%, #050a15 100%);
}

.bg-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 35%, transparent 78%);
}

/* ─────────────────────────────────────────────
   BAŞLIQ
   ───────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 13, 27, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 70px;
  flex-wrap: wrap;
  padding-block: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.logo:hover { color: var(--fg); }
.logo .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 14px rgba(168, 249, 40, 0.8);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-inline-start: auto;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--fg-dim);
  font-size: 14px;
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--neon); }

.lang { display: flex; gap: 4px; align-items: center; }
.lang a {
  color: var(--fg-faint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 6px;
}
.lang a[aria-current="true"] {
  color: var(--ink);
  background: var(--neon);
}

/* ─────────────────────────────────────────────
   DÜYMƏLƏR
   ───────────────────────────────────────────── */

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .22s ease, background .18s ease, color .18s ease;
}

.btn-primary {
  background: var(--neon);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(168, 249, 40, 0);
}
.btn-primary:hover {
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 34px rgba(168, 249, 40, 0.28);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: var(--blue);
  background: rgba(80, 142, 255, 0.1);
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────
   BÖLMƏLƏR
   ───────────────────────────────────────────── */

section { padding-block: 78px; position: relative; }
section.tight { padding-block: 46px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--neon);
  opacity: .6;
}

.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head p { color: var(--fg-dim); font-size: 17px; margin: 0; }

/* ─── Hero ─── */

.hero { padding-block: 84px 72px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 { margin-bottom: 22px; }

.hero .lead {
  font-size: clamp(17px, 2vw, 19.5px);
  color: var(--fg-dim);
  max-width: 46ch;
  margin: 0;
}

.hero-note {
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--fg-faint);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding-block: 56px 40px; }
  section { padding-block: 68px; }
}

/* ─────────────────────────────────────────────
   TELEFON MAKETİ (şəkil deyil — canlı HTML)
   ───────────────────────────────────────────── */

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 249, 40, 0.22), transparent 66%);
  filter: blur(48px);
  top: 6%;
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: 306px;
  max-width: 100%;
  border-radius: 40px;
  padding: 9px;
  background: linear-gradient(165deg, rgba(255,255,255,.16), rgba(255,255,255,.03) 42%, rgba(255,255,255,.09));
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.62);
}

.phone-screen {
  background: var(--surface);
  border-radius: 32px;
  overflow: hidden;
  padding: 16px 14px 0;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.phone-brand {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--neon);
}

.phone-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(140deg, #2d3852, #1a2338);
  border: 1px solid var(--line);
}

.phone-search {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12.5px;
  color: var(--fg-faint);
  margin-bottom: 12px;
}

.chips { display: flex; gap: 7px; margin-bottom: 16px; }
.chip {
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--fg-dim);
  white-space: nowrap;
}
.chip.on {
  background: var(--neon);
  color: var(--ink);
  border-color: transparent;
}

.v-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
}

.v-photo {
  height: 96px;
  position: relative;
  background:
    radial-gradient(120px 60px at 22% 12%, rgba(255,255,255,.22), transparent 70%),
    radial-gradient(120px 60px at 78% 8%, rgba(255,255,255,.18), transparent 70%),
    linear-gradient(175deg, #16351f 0%, #23662f 48%, #123c1b 100%);
}

.v-photo .pitch-lines {
  position: absolute;
  inset: 14px 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
}
.v-photo .pitch-lines::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1.5px;
  background: rgba(255, 255, 255, 0.34);
}
.v-photo .pitch-lines::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 30px; height: 30px;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.v-tag {
  position: absolute;
  top: 9px; left: 9px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--neon);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 999px;
}

.v-body { padding: 12px 13px 13px; }

.v-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
}
.v-rate { color: var(--neon); font-size: 12px; font-weight: 700; }

.v-meta { font-size: 11.5px; color: var(--fg-faint); margin-bottom: 11px; }

.v-slots { display: flex; gap: 6px; margin-bottom: 12px; }
.slot {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--fg-dim);
}
.slot.sel {
  background: rgba(168, 249, 40, 0.14);
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 16px rgba(168, 249, 40, 0.22);
}
.slot.off { opacity: .34; text-decoration: line-through; }

.v-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 11px;
}
.v-price { font-size: 15px; font-weight: 800; font-family: Montserrat, sans-serif; }
.v-price span { font-size: 11px; font-weight: 500; color: var(--fg-faint); }
.v-btn {
  font-size: 11.5px;
  font-weight: 700;
  background: var(--neon);
  color: var(--ink);
  padding: 7px 15px;
  border-radius: 8px;
}

.phone-tabs {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--line);
  margin: 4px -14px 0;
  padding: 11px 0 15px;
  font-size: 9.5px;
  color: var(--fg-faint);
  background: rgba(0, 0, 0, 0.24);
}
.phone-tabs b { color: var(--neon); font-weight: 600; }

/* ─────────────────────────────────────────────
   KARTLAR / BENTO
   ───────────────────────────────────────────── */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.014));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,249,40,.4), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.card:hover::before { opacity: 1; }

.card p { color: var(--fg-dim); margin: 0; font-size: 15px; }

.card.span-3 { grid-column: span 3; }
.card.span-2 { grid-column: span 2; }
.card.span-6 { grid-column: span 6; }

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; }
  .card.span-3, .card.span-2, .card.span-6 { grid-column: span 1; }
}

.num {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--neon);
  display: block;
  margin-bottom: 16px;
  opacity: .85;
}

/* ─── Bölünən ödəniş vizualı ─── */

.split {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.payer {
  flex: 1;
  min-width: 96px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 13px 12px;
  background: rgba(0, 0, 0, 0.22);
}
.payer .who { font-size: 12px; color: var(--fg-dim); margin-bottom: 5px; }
.payer .amt { font-family: Montserrat, sans-serif; font-weight: 700; font-size: 16px; }
.payer.paid { border-color: rgba(168, 249, 40, .45); }
.payer.paid .amt { color: var(--neon); }
.payer .state { font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--fg-faint); margin-top: 4px; }
.payer.paid .state { color: var(--neon); }

/* ─── Sahib paneli mini maketi ─── */

.panel-mock {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 22px;
  background: rgba(0, 0, 0, 0.24);
  font-size: 13px;
}
.panel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.panel-row:last-child { border-bottom: 0; }
.panel-row .when { font-weight: 600; }
.panel-row .who { color: var(--fg-dim); }
.panel-row .act { margin-inline-start: auto; display: flex; gap: 7px; }
.pill {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 7px;
}
.pill.ok { background: var(--neon); color: var(--ink); }
.pill.no { border: 1px solid var(--line-strong); color: var(--fg-dim); }
.pill.wait { background: rgba(80, 142, 255, .16); color: var(--blue-soft); }

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.faq-grid > .section-head { position: sticky; top: 110px; margin-bottom: 0; }
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid > .section-head { position: static; }
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "";
  width: 11px; height: 11px;
  border-right: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
  transform: rotate(45deg);
  transition: transform .22s ease;
  flex-shrink: 0;
  margin-top: -4px;
}
details[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
details p { color: var(--fg-dim); margin: 14px 0 0; font-size: 15px; }

/* ─────────────────────────────────────────────
   CTA ZOLAĞI
   ───────────────────────────────────────────── */

.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px 44px;
  text-align: center;
  background:
    radial-gradient(600px 260px at 50% 0%, rgba(168, 249, 40, 0.13), transparent 70%),
    rgba(255, 255, 255, 0.025);
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--fg-dim); max-width: 52ch; margin: 0 auto; }
.cta-band .actions { justify-content: center; }

/* ─────────────────────────────────────────────
   MƏTN SƏHİFƏLƏRİ
   ───────────────────────────────────────────── */

.doc { max-width: 720px; }
.doc h2 { font-size: 24px; margin-top: 52px; }
.doc h2:first-of-type { margin-top: 8px; }
.doc p, .doc li { color: var(--fg-dim); font-size: 16px; }
.doc strong { color: var(--fg); font-weight: 600; }
.doc ul { margin: 0 0 20px; padding-inline-start: 20px; }
.doc li { margin-bottom: 10px; }

.tldr {
  border: 1px solid rgba(168, 249, 40, 0.28);
  background: rgba(168, 249, 40, 0.05);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  margin-bottom: 12px;
}
.tldr h3 { color: var(--neon); margin-bottom: 14px; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.tldr ul { margin: 0; padding-inline-start: 20px; }
.tldr li { color: var(--fg); }

.updated {
  font-size: 13px;
  color: var(--fg-faint);
  margin-bottom: 40px;
}

/* ─────────────────────────────────────────────
   ALTLIQ
   ───────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 44px;
  color: var(--fg-faint);
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.site-footer nav { display: flex; gap: 22px; flex-wrap: wrap; margin-inline-start: auto; }
.site-footer a { color: var(--fg-faint); }
.site-footer a:hover { color: var(--neon); }

/* ─────────────────────────────────────────────
   GÖRÜNMƏ ANİMASİYASI
   ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 720px) {
  .site-header .wrap { gap: 12px; min-height: 60px; }
  .site-nav { gap: 0; }
  .site-nav a:not(.lang a) { display: none; }
  .lang { margin-inline-start: auto; }
  h1 { font-size: clamp(34px, 9vw, 44px); }
  .cta-band { padding: 40px 24px; border-radius: var(--r-lg); }
  .card { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
