/* =====================================================================
   TACIR QADIRLI — Remote IT Support
   Dizayn sistemi + sayt üslubları
   ===================================================================== */

/* ---------------------------------------------------------------
   1. Token-lər
   --------------------------------------------------------------- */
:root {
  /* Fon qatları — dərin gecə-mavi. Texniki, sakit, etibarlı. */
  --bg-0: #070B14;
  --bg-1: #0B1220;
  --bg-2: #111A2C;
  --bg-3: #17223A;
  --bg-glass: rgba(23, 34, 58, 0.55);

  /* Mətn */
  --fg-0: #F2F6FF;
  --fg-1: #C7D3E8;
  --fg-2: #8B9CBB;
  --fg-3: #5E6E8C;

  /* Aksentlər */
  --accent: #4F8CFF;          /* etibar, əsas hərəkət */
  --accent-soft: #7FAAFF;
  --accent-dim: rgba(79, 140, 255, 0.14);
  --mint: #35E0B8;            /* "həll olundu", təhlükəsizlik */
  --mint-dim: rgba(53, 224, 184, 0.13);
  --amber: #FFB454;           /* təcili */
  --amber-dim: rgba(255, 180, 84, 0.14);
  --danger: #FF6B6B;

  /* Kənarlar */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Ölçülər */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --sect-y: clamp(34px, 3.8vw, 54px);

  /* Kölgələr */
  --sh-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --sh-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --sh-lg: 0 32px 64px rgba(0, 0, 0, 0.45);
  --glow: 0 0 0 1px rgba(79, 140, 255, 0.35), 0 10px 40px rgba(79, 140, 255, 0.28);

  /* Şriftlər */
  --f-display: 'Manrope', ui-sans-serif, system-ui, 'Segoe UI', sans-serif;
  --f-body: 'Inter', ui-sans-serif, system-ui, 'Segoe UI', sans-serif;
  --f-mono: ui-monospace, 'SFMono-Regular', 'JetBrains Mono', Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------
   2. Sıfırlama
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--fg-0);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 800;
}

p { margin: 0; }

::selection { background: rgba(79, 140, 255, 0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Sürüşdürmə zolağı */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: var(--bg-3);
  border-radius: var(--r-full);
  border: 3px solid var(--bg-0);
}
::-webkit-scrollbar-thumb:hover { background: #24314f; }

/* ---------------------------------------------------------------
   3. Struktur
   --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sect-y); position: relative; }
.section--tight { padding-block: clamp(24px, 2.6vw, 38px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.h-xl { font-size: clamp(1.95rem, 7.4vw, 3.25rem); }
.h-lg { font-size: clamp(1.7rem, 5.4vw, 2.5rem); }
.h-md { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.h-sm { font-size: clamp(1.08rem, 1.6vw, 1.22rem); }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: var(--fg-2);
  max-width: 62ch;
}

.section-head { max-width: 720px; margin-bottom: clamp(22px, 2.6vw, 34px); }
.section-head .lead { margin-top: 18px; }

.text-mint { color: var(--mint); }
.text-accent { color: var(--accent-soft); }

.grad-text {
  background: linear-gradient(96deg, #FFFFFF 8%, var(--accent-soft) 52%, var(--mint) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------------------------------------------------------
   4. Düymələr
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #6D5BFF 100%);
  color: #fff;
  box-shadow: 0 8px 26px rgba(79, 140, 255, 0.32);
}
.btn--primary:hover { box-shadow: 0 14px 38px rgba(79, 140, 255, 0.45); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-strong);
  color: var(--fg-0);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255,255,255,0.25); }

.btn--mint {
  background: var(--mint);
  color: #04231C;
  box-shadow: 0 8px 26px rgba(53, 224, 184, 0.28);
}
.btn--mint:hover { box-shadow: 0 14px 38px rgba(53, 224, 184, 0.4); }

.btn--wide { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 0.87rem; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ---------------------------------------------------------------
   5. Naviqasiya
   --------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(7, 11, 20, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 74px;
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark {
  width: 42px; height: 42px;
  border-radius: var(--r-full);
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.28), transparent 60%),
    linear-gradient(135deg, var(--accent), #6D5BFF 60%, var(--mint));
  color: #fff;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
  box-shadow: 0 6px 18px rgba(79, 140, 255, 0.35);
  overflow: hidden;
  flex: none;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--f-display); font-weight: 800; color: var(--fg-0); font-size: 1rem; white-space: nowrap; }
.brand__role { font-size: 11.5px; color: var(--fg-3); letter-spacing: 0.02em; white-space: nowrap; }
@media (max-width: 460px) {
  .nav .brand__role { display: none; }
  .nav .brand__mark { width: 36px; height: 36px; font-size: .85rem; }
  .nav .brand__name { font-size: .92rem; }
  .nav__inner { height: 64px; gap: 12px; }
  .lang button { padding: 6px 9px; font-size: 11px; }
  .nav__links { inset-block-start: 64px; }
}

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 14px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  color: var(--fg-2);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--fg-0); background: rgba(255,255,255,0.05); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

/* Dil seçici */
.lang {
  position: relative;
  display: flex;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 3px;
}
.lang button {
  padding: 6px 11px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--f-display);
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s, background 0.2s;
}
.lang button:hover { color: var(--fg-1); }
.lang button.is-active { background: var(--accent); color: #fff; }

.nav__burger { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); }
.nav__burger span {
  display: block; width: 19px; height: 1.8px; margin: 4px auto;
  background: var(--fg-0); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px var(--gutter) 26px;
    background: rgba(7, 11, 20, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s var(--ease);
  }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 13px 12px; font-size: 1rem; }
  .nav__actions .btn { display: none; }
}

/* ---------------------------------------------------------------
   6. Hero
   --------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(104px, 13vw, 156px);
  padding-bottom: clamp(52px, 7vw, 88px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 32%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 32%, #000 20%, transparent 78%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__orb--a {
  width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  left: -8%; top: -6%;
  background: radial-gradient(circle, rgba(79,140,255,0.55), transparent 68%);
}
.hero__orb--b {
  width: 38vw; height: 38vw; max-width: 520px; max-height: 520px;
  right: -6%; top: 12%;
  background: radial-gradient(circle, rgba(109,91,255,0.42), transparent 68%);
}
.hero__orb--c {
  width: 30vw; height: 30vw; max-width: 400px; max-height: 400px;
  right: 22%; bottom: -10%;
  background: radial-gradient(circle, rgba(53,224,184,0.3), transparent 68%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 9px;
  border-radius: var(--r-full);
  background: rgba(53, 224, 184, 0.09);
  border: 1px solid rgba(53, 224, 184, 0.28);
  color: var(--mint);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
}
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(53, 224, 184, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(53, 224, 184, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(53, 224, 184, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 224, 184, 0); }
}

.hero h1 { margin-bottom: 22px; max-width: 17ch; }
@media (max-width: 980px) { .hero h1 { max-width: none; } }
.hero__sub { font-size: clamp(.98rem, 1.6vw, 1.16rem); color: var(--fg-2); max-width: 54ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__trust span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-3);
}
.hero__trust svg { width: 15px; height: 15px; color: var(--mint); flex: none; }

/* Hero vizualı — "canlı sessiya" paneli */
.console {
  position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, rgba(23,34,58,0.92), rgba(11,18,32,0.94));
  border: 1px solid var(--line-strong);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.console::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(79,140,255,0.5), transparent 42%, rgba(53,224,184,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.console__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.console__dots { display: flex; gap: 6px; }
.console__dots i { width: 10px; height: 10px; border-radius: 50%; background: #2A3550; display: block; }
.console__dots i:nth-child(1) { background: #FF5F57; }
.console__dots i:nth-child(2) { background: #FEBC2E; }
.console__dots i:nth-child(3) { background: #28C840; }
.console__title {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--fg-3);
  margin-left: 6px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.console__badge {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  background: var(--mint-dim);
  border: 1px solid rgba(53,224,184,0.25);
  padding: 4px 9px; border-radius: var(--r-full);
  flex: none;
}
.console__body { padding: 18px 18px 20px; font-family: var(--f-mono); font-size: 12.6px; line-height: 1.95; }
.console__line { display: flex; gap: 10px; opacity: 0; transform: translateY(6px); }
.console__line.show { animation: lineIn 0.5s var(--ease) forwards; }
@keyframes lineIn { to { opacity: 1; transform: none; } }
.console__line b { color: var(--accent-soft); font-weight: 500; flex: none; }
.console__line span { color: var(--fg-2); }
.console__line.ok span { color: var(--mint); }
.console__caret {
  display: inline-block; width: 8px; height: 15px;
  background: var(--mint); vertical-align: -2px;
  animation: blink 1.1s steps(2) infinite;
}
@keyframes blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }

.console__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.console__stat { padding: 14px 16px; text-align: center; }
.console__stat + .console__stat { border-left: 1px solid var(--line); }
.console__stat b {
  display: block;
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.18rem; color: var(--fg-0); letter-spacing: -0.02em;
}
.console__stat span { font-size: 10.5px; color: var(--fg-3); letter-spacing: 0.03em; }

/* ---------------------------------------------------------------
   7. Göstəricilər zolağı
   --------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--bg-1);
  padding: clamp(22px, 3.4vw, 34px) 18px;
  text-align: center;
  transition: background 0.3s;
}
.stat:hover { background: var(--bg-2); }
.stat b {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.03em;
  background: linear-gradient(140deg, #fff, var(--accent-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-size: 12.5px; color: var(--fg-3); }

/* ---------------------------------------------------------------
   8. Kartlar
   --------------------------------------------------------------- */
.card {
  position: relative;
  background: linear-gradient(170deg, rgba(23,34,58,0.62), rgba(11,18,32,0.72));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(79,140,255,0.1), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--sh-md); }
.card:hover::after { opacity: 1; }

.card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-dim);
  border: 1px solid rgba(79,140,255,0.24);
  color: var(--accent-soft);
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card__icon--mint { background: var(--mint-dim); border-color: rgba(53,224,184,0.24); color: var(--mint); }

.card h3 { margin-bottom: 10px; font-size: 1.16rem; }
.card p { color: var(--fg-2); font-size: 0.95rem; }

.svc-group {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}
.svc-group::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
[data-services] .grid-3 + .svc-group { margin-top: 34px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
[data-services] .grid-3 { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
@media (max-width: 640px) { [data-services] .grid-3 { grid-template-columns: 1fr; } }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------
   9. Xidmət kartları
   --------------------------------------------------------------- */
.svc {
  display: flex;
  flex-direction: column;
}
.svc__top { display: flex; align-items: flex-start; gap: 16px; }
.svc__price {
  margin-left: auto;
  text-align: right;
  flex: none;
}
.svc__price b {
  display: block;
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.5rem; color: var(--fg-0); letter-spacing: -0.03em;
  white-space: nowrap;
}
.svc__price .svc__quote {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--fg-2);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.svc__price span { font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.08em; }
.svc__feat { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.svc__feat li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--fg-2);
}
.svc__feat svg { width: 15px; height: 15px; color: var(--mint); flex: none; margin-top: 4px; }
.svc__foot { margin-top: auto; padding-top: 24px; display: flex; align-items: center; gap: 12px; }
.svc__dur {
  font-family: var(--f-mono); font-size: 11px; color: var(--fg-3);
  border: 1px solid var(--line); border-radius: var(--r-full); padding: 4px 10px;
}
.svc--featured { border-color: rgba(79,140,255,0.4); box-shadow: 0 0 0 1px rgba(79,140,255,0.12), var(--sh-md); }
.svc__tag {
  position: absolute; top: 0; right: 24px;
  background: linear-gradient(135deg, var(--accent), #6D5BFF);
  color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 0 0 8px 8px;
}

/* Boş vəziyyət */
.empty {
  text-align: center;
  padding: clamp(44px, 7vw, 76px) 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.015);
}
.empty__icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  border-radius: var(--r-full);
  display: grid; place-items: center;
  background: var(--accent-dim); color: var(--accent-soft);
}
.empty h3 { margin-bottom: 10px; }
.empty p { color: var(--fg-2); max-width: 46ch; margin: 0 auto 24px; }

/* ---------------------------------------------------------------
   10. Proses addımları
   --------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; counter-reset: s; }
.step { position: relative; padding-top: 30px; }
.step::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--accent-soft); letter-spacing: 0.1em;
}
.step::after {
  content: '';
  position: absolute; top: 8px; left: 34px; right: -20px; height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--fg-2); }
@media (max-width: 720px) { .step::after { display: none; } }

/* ---------------------------------------------------------------
   11. Yanaşma / haqqında
   --------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }

.photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(150deg, rgba(79,140,255,0.16), rgba(53,224,184,0.1)),
    var(--bg-2);
  border: 1px solid var(--line-strong);
  box-shadow: var(--sh-lg);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo__fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--fg-3);
  font-family: var(--f-mono); font-size: 12px; text-align: center; padding: 20px;
}
.photo__badge {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
}
.photo__badge b { font-family: var(--f-display); color: var(--fg-0); font-size: 0.94rem; display: block; }
.photo__badge span { font-size: 11.5px; color: var(--fg-3); }
.photo__badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--mint); flex: none;
  box-shadow: 0 0 10px var(--mint);
}

.checklist { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist svg { width: 19px; height: 19px; color: var(--mint); flex: none; margin-top: 3px; }
.checklist b { color: var(--fg-0); font-family: var(--f-display); font-weight: 700; }
.checklist p { font-size: 0.9rem; color: var(--fg-2); margin-top: 2px; }

/* ---------------------------------------------------------------
   12. Rəylər
   --------------------------------------------------------------- */
.quote { display: flex; flex-direction: column; }
.quote__stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--amber); }
.quote__stars svg { width: 15px; height: 15px; }
.quote p { color: var(--fg-1); font-size: 0.97rem; line-height: 1.75; margin-bottom: 18px; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.quote__av {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #6D5BFF);
  color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 0.85rem;
}
.quote__who b { display: block; color: var(--fg-0); font-size: 0.9rem; font-family: var(--f-display); text-transform: none; letter-spacing: -0.01em; }
.quote__who span { font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.07em; }

/* ---------------------------------------------------------------
   13. FAQ
   --------------------------------------------------------------- */
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(23,34,58,0.4);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq__item.is-open { border-color: rgba(79,140,255,0.35); background: rgba(23,34,58,0.7); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 19px 22px;
  text-align: start;
  font-family: var(--f-display); font-weight: 700; font-size: 1rem;
  color: var(--fg-0);
}
.faq__q i {
  margin-inline-start: auto;
  width: 26px; height: 26px; flex: none;
  border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s;
}
.faq__q i::before, .faq__q i::after {
  content: ''; position: absolute; background: var(--fg-1); border-radius: 2px;
  transition: opacity 0.25s, background 0.25s;
}
.faq__q i::before { width: 11px; height: 1.6px; }
.faq__q i::after { width: 1.6px; height: 11px; }
.faq__item.is-open .faq__q i { transform: rotate(180deg); background: var(--accent); border-color: transparent; }
.faq__item.is-open .faq__q i::after { opacity: 0; }
.faq__item.is-open .faq__q i::before { background: #fff; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.38s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 22px 21px; color: var(--fg-2); font-size: 0.94rem; max-width: 72ch; }

/* ---------------------------------------------------------------
   14. CTA bloku
   --------------------------------------------------------------- */
.cta {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(38px, 6vw, 72px) clamp(26px, 5vw, 64px);
  background: linear-gradient(140deg, rgba(79,140,255,0.16), rgba(109,91,255,0.1) 45%, rgba(53,224,184,0.1));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000, transparent 75%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta .lead { margin: 18px auto 0; }
.cta__row { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-top: 32px; }

/* ---------------------------------------------------------------
   15. Footer
   --------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  padding-block: clamp(38px, 4.6vw, 56px) 26px;
  margin-top: clamp(40px, 5vw, 64px);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(140px, 1fr));
  gap: 36px;
}
.footer h4 {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--fg-3); margin-bottom: 15px; font-weight: 700;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--fg-2); font-size: 0.9rem; transition: color 0.2s; }
.footer a:hover { color: var(--accent-soft); }
.footer__about p { color: var(--fg-2); font-size: 0.9rem; margin-top: 16px; max-width: 38ch; }
.footer__social { display: flex; gap: 9px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: var(--r-full);
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--fg-2); transition: all 0.25s;
}
.footer__social a:hover { border-color: var(--accent); color: var(--accent-soft); background: var(--accent-dim); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bar {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  font-size: 12.5px; color: var(--fg-3);
}
.footer__bar nav { margin-inline-start: auto; display: flex; gap: 18px; }

/* ---------------------------------------------------------------
   16. Formalar
   --------------------------------------------------------------- */
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--fg-1); }
.field label .req { color: var(--accent-soft); }
.field .hint { font-size: 11.5px; color: var(--fg-3); }

.input, .select, .textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(7, 11, 20, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--fg-0);
  font-size: 0.94rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.input::placeholder, .textarea::placeholder { color: var(--fg-3); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
  background: rgba(7, 11, 20, 0.85);
}
.textarea { min-height: 128px; resize: vertical; line-height: 1.6; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238B9CBB' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.select option { background: var(--bg-2); color: var(--fg-0); }

.field.has-error .input,
.field.has-error .select,
.field.has-error .textarea { border-color: var(--danger); }
.field__err { font-size: 12px; color: var(--danger); display: none; }
.field.has-error .field__err { display: block; }

.radio-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 9px; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-chip span {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--fg-2);
  transition: all 0.22s;
  text-align: center;
}
.radio-chip input:checked + span {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--fg-0);
  box-shadow: 0 0 0 1px var(--accent);
}
.radio-chip input:focus-visible + span { outline: 2px solid var(--accent-soft); outline-offset: 2px; }
.radio-chip svg { width: 16px; height: 16px; }

.form-note {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 12.5px; color: var(--fg-3);
  padding: 13px 15px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.025); border: 1px solid var(--line);
}
.form-note svg { width: 15px; height: 15px; color: var(--fg-2); flex: none; margin-top: 2px; }

/* ---------------------------------------------------------------
   17. Chatbot vidceti
   --------------------------------------------------------------- */
.chat-fab {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px; height: 58px;
  border-radius: var(--r-full);
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #6D5BFF);
  color: #fff;
  box-shadow: 0 10px 30px rgba(79,140,255,0.42);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.chat-fab:hover { transform: scale(1.07) translateY(-2px); }
.chat-fab svg { width: 25px; height: 25px; }
.chat-fab__badge {
  position: absolute; top: -2px; inset-inline-end: -2px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--mint); border: 2.5px solid var(--bg-0);
}
.chat-fab .ico-close { display: none; }
.chat-fab.is-open .ico-chat { display: none; }
.chat-fab.is-open .ico-close { display: block; }
.chat-fab.is-open .chat-fab__badge { display: none; }

.chat-panel {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 92px;
  z-index: 80;
  width: min(376px, calc(100vw - 44px));
  height: min(560px, calc(100vh - 140px));
  display: flex; flex-direction: column;
  background: linear-gradient(170deg, rgba(17,26,44,0.98), rgba(7,11,20,0.99));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.chat-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }

.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.chat-head__av {
  width: 38px; height: 38px; border-radius: var(--r-full); flex: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  color: #fff;
}
.chat-head__av svg { width: 19px; height: 19px; }
.chat-head b { display: block; font-family: var(--f-display); color: var(--fg-0); font-size: 0.94rem; }
.chat-head span { font-size: 11.5px; color: var(--mint); display: flex; align-items: center; gap: 6px; }
.chat-head span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }

.chat-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 84%; padding: 11px 14px; border-radius: 16px; font-size: 0.9rem; line-height: 1.6; }
.msg--bot { align-self: flex-start; background: var(--bg-3); border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--fg-1); }
.msg--me  { align-self: flex-end; background: linear-gradient(135deg, var(--accent), #6D5BFF); color: #fff; border-bottom-right-radius: 5px; }
.msg--sys { align-self: center; font-size: 11.5px; color: var(--fg-3); text-align: center; max-width: 100%; }

.chat-typing { display: flex; gap: 4px; align-self: flex-start; padding: 13px 15px; background: var(--bg-3); border-radius: 16px; border-bottom-left-radius: 5px; }
.chat-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--fg-3); animation: dot 1.3s infinite; }
.chat-typing i:nth-child(2) { animation-delay: 0.18s; }
.chat-typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes dot { 0%,60%,100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.chat-quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 18px 12px; }
.chat-quick button {
  font-size: 12px; padding: 7px 12px; border-radius: var(--r-full);
  border: 1px solid var(--line-strong); color: var(--fg-2);
  transition: all 0.2s;
}
.chat-quick button:hover { border-color: var(--accent); color: var(--fg-0); background: var(--accent-dim); }

.chat-foot { display: flex; gap: 9px; padding: 13px 15px; border-top: 1px solid var(--line); }
.chat-foot input {
  flex: 1; padding: 11px 14px; border-radius: var(--r-full);
  background: rgba(7,11,20,0.7); border: 1px solid var(--line-strong);
  font-size: 0.9rem;
}
.chat-foot input:focus { outline: none; border-color: var(--accent); }
.chat-foot button {
  width: 42px; height: 42px; flex: none; border-radius: var(--r-full);
  background: var(--accent); color: #fff; display: grid; place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.chat-foot button:hover { background: var(--accent-soft); transform: scale(1.05); }
.chat-foot svg { width: 17px; height: 17px; }

@media (max-width: 480px) {
  .chat-panel { inset-inline: 12px; width: auto; bottom: 86px; height: min(70vh, 520px); }
  .chat-fab { inset-inline-end: 16px; bottom: 16px; }
}

/* ---------------------------------------------------------------
   18. WhatsApp sürətli düymə
   --------------------------------------------------------------- */
.wa-fab {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 92px;
  z-index: 79;
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), opacity 0.25s;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 24px; height: 24px; }
.wa-fab.is-hidden { opacity: 0; pointer-events: none; transform: scale(0.8); }
@media (max-width: 480px) { .wa-fab { inset-inline-end: 16px; bottom: 82px; width: 44px; height: 44px; } }

/* ---------------------------------------------------------------
   19. Görünmə animasiyası
   --------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal { opacity: 1; transform: none; }
.reveal.is-in {
  animation: revealIn 0.75s var(--ease) forwards;
}
@keyframes revealIn { to { opacity: 1; transform: none; } }

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

/* ---------------------------------------------------------------
   20. Köməkçi siniflər
   --------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.is-hidden { display: none !important; }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.stack-sm { display: grid; gap: 10px; }

/* Skeleton yüklənmə */
.skel {
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--bg-3) 50%, var(--bg-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--r-sm);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* Toast */
.toast-wrap {
  position: fixed; inset-inline: 0; bottom: 24px; z-index: 200;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  pointer-events: none; padding-inline: 16px;
}
.toast {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 19px; border-radius: var(--r-full);
  background: rgba(17,26,44,0.97);
  border: 1px solid var(--line-strong);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(14px);
  font-size: 0.9rem; color: var(--fg-0);
  animation: toastIn 0.35s var(--ease);
  max-width: min(520px, 100%);
}
.toast svg { width: 17px; height: 17px; flex: none; }
.toast--ok svg { color: var(--mint); }
.toast--err svg { color: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } }


/* ---------------------------------------------------------------
   21. Rəy kartı əlavələri
   --------------------------------------------------------------- */
.quote__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.quote__stars { margin-bottom: 0; }
.quote__stars .off { color: var(--bg-3); }
.quote__date {
  margin-inline-start: auto;
  font-size: 11.5px; color: var(--fg-3);
  font-variant-numeric: tabular-nums;
}
.quote__av--img { padding: 0; overflow: hidden; }
.quote__av--img img { width: 100%; height: 100%; object-fit: cover; }
.quote__verified {
  margin-inline-start: auto;
  color: var(--mint);
  display: grid; place-items: center;
  flex: none;
}
.quote__verified svg { width: 17px; height: 17px; }

/* ---------------------------------------------------------------
   22. Modal
   --------------------------------------------------------------- */
.modal {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__bg {
  position: absolute; inset: 0;
  background: rgba(4, 7, 14, 0.76);
  backdrop-filter: blur(5px);
}
.modal__card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(170deg, rgba(23,34,58,0.97), rgba(11,18,32,0.99));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 34px);
  box-shadow: var(--sh-lg);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s var(--ease);
}
.modal.is-open .modal__card { transform: none; }
.modal__x {
  position: absolute; top: 14px; inset-inline-end: 14px;
  width: 34px; height: 34px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  color: var(--fg-3);
  transition: background 0.2s, color 0.2s;
}
.modal__x:hover { background: rgba(255,255,255,0.07); color: var(--fg-0); }
.modal__x svg { width: 17px; height: 17px; }

/* Ulduz seçici */
.star-pick { display: flex; gap: 5px; }
.star-pick__b {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  color: var(--bg-3);
  transition: color 0.15s, transform 0.15s;
}
.star-pick__b svg { width: 24px; height: 24px; }
.star-pick__b:hover { transform: scale(1.12); }
.star-pick__b.is-on { color: var(--amber); }

/* ---------------------------------------------------------------
   23. Sertifikatlar — düymə və pəncərə
   Səhifədə yalnız düymə görünür; şəkillər modal içindədir.
   --------------------------------------------------------------- */
.certs-btn { margin-top: 28px; }
.certs-btn svg { width: 16px; height: 16px; }
.certs-btn__n {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 1px 7px;
  margin-inline-start: 2px;
}

.modal__card--wide { width: min(720px, 100%); }

.cert-grid { display: grid; gap: 14px; }
@media (min-width: 560px) { .cert-grid { grid-template-columns: 1fr 1fr; } }

.cert-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  text-align: start;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s;
}
.cert-item:hover {
  border-color: rgba(79, 140, 255, 0.4);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-2px);
}
.cert-item__img {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-3);
}
.cert-item__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.cert-item__txt b {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--fg-0);
  line-height: 1.35;
}
.cert-item__txt span { display: block; font-size: 11.5px; color: var(--fg-3); margin-top: 5px; }

.cert-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--fg-2);
  margin-bottom: 16px;
  transition: color 0.2s;
}
.cert-back:hover { color: var(--fg-0); }
.cert-back svg { width: 16px; height: 16px; }

.cert-view { margin: 0; }
.cert-view img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 250px);
  margin-inline: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
}
.cert-view figcaption { margin-top: 14px; }
.cert-view figcaption b {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--fg-0);
  font-size: 1rem;
}
.cert-view figcaption span { display: block; font-size: 12px; color: var(--fg-3); margin-top: 4px; }
.cert-title { margin-bottom: 6px; padding-inline-end: 44px; }
