:root {
  --bg: #08080d;
  --bg-soft: #0d0d14;
  --panel: #12121c;
  --line: #22222f;
  --text: #f4f4f7;
  --muted: #9b9bad;
  --lime: #c8ff00;
  --pink: #ff2d78;
  --cyan: #21e6ff;
  --orange: #ff7a00;
  --radius: 18px;
  --font-head: 'Unbounded', 'Archivo Black', system-ui, sans-serif;
  --font-body: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

::selection { background: var(--lime); color: #000; }

/* ---------- background grid / noise ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.bg-glow::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  left: -120px; top: -160px;
  background: radial-gradient(circle, rgba(200,255,0,.14), transparent 65%);
  filter: blur(10px);
}
.bg-glow::after {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  right: -140px; top: 30%;
  background: radial-gradient(circle, rgba(255,45,120,.12), transparent 65%);
  filter: blur(10px);
}

/* ---------- typography helpers ---------- */
h1, h2, h3, .display {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(1.9rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.4rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1rem, 2.2vw, 1.25rem); }

.display-huge {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.grad-text {
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-pink {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--muted); }
.upper { text-transform: uppercase; letter-spacing: .06em; }

.section { padding: 84px 0; }
.section-sm { padding: 48px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--lime);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-lime {
  background: var(--lime);
  color: #0a0a0a;
  box-shadow: 0 8px 0 rgba(200,255,0,.18), 0 12px 40px rgba(200,255,0,.28);
}
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 12px 0 rgba(200,255,0,.22), 0 18px 50px rgba(200,255,0,.4); }

.btn-pink {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 0 rgba(255,45,120,.18), 0 12px 40px rgba(255,45,120,.3);
}
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 12px 0 rgba(255,45,120,.22), 0 18px 50px rgba(255,45,120,.45); }

.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn-sm { padding: 11px 20px; font-size: .84rem; border-radius: 11px; }

/* ---------- topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(8,8,13,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.logo-badge {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--lime);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 0 22px rgba(200,255,0,.4);
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .16em;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--lime); background: rgba(200,255,0,.07); }
.nav a.active { color: var(--lime); }

.nav-cta { margin-left: 10px; }

/* burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  z-index: 110;
}
.burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .2s;
}
.burger span:nth-child(1) { transform: translate(-50%, -7px); }
.burger span:nth-child(2) { transform: translate(-50%, -50%); }
.burger span:nth-child(3) { transform: translate(-50%, 5px); }
.burger.open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(8,8,13,.97);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 12px;
}
.mobile-menu a:hover { color: var(--lime); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}
.hero .tagline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .8rem;
  color: var(--cyan);
  letter-spacing: .05em;
  margin-bottom: 26px;
}
.hero .tagline i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.hero h1 { margin-bottom: 26px; }
.hero .sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--lime);
}
.stat .lbl { font-size: .8rem; color: var(--muted); letter-spacing: .05em; }

/* hero visual card */
.hero-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 10%, rgba(255,45,120,.16), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(33,230,255,.14), transparent 50%),
    var(--panel);
  padding: 34px;
  overflow: hidden;
}
.hero-card::before {
  content: 'HOT';
  position: absolute;
  right: -8px; top: 8px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 4.4rem;
  color: rgba(255,45,120,.12);
  line-height: 1;
  transform: rotate(8deg);
}
.temp-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
}
.temp-row .big {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--lime);
}
.temp-row .small { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.temp-row .small b { display: block; color: var(--text); font-size: 1rem; }

.pipe-list { display: flex; flex-direction: column; gap: 12px; }
.pipe {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
}
.pipe .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pipe span { font-size: .9rem; font-weight: 600; }
.pipe .tag { margin-left: auto; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.float-chip {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--lime);
  color: #0a0a0a;
  font-weight: 800;
  font-size: .78rem;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(200,255,0,.35);
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(-6px); } }

/* ---------- marquee ---------- */
.marquee {
  background: var(--lime);
  color: #0a0a0a;
  overflow: hidden;
  padding: 13px 0;
  transform: rotate(-1deg) scale(1.01);
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  margin: -14px 0 0;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 26s linear infinite;
}
.marquee span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- section heads ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.sec-head h2 { max-width: 720px; }

/* ---------- services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.svc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,255,0,.5);
  box-shadow: 0 22px 50px rgba(200,255,0,.08);
}
.svc-card .num-idx {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.6rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
}
.svc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(200,255,0,.1);
  border: 1px solid rgba(200,255,0,.25);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 26px; height: 26px; stroke: var(--lime); }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.svc-card ul { display: flex; flex-direction: column; gap: 6px; font-size: .86rem; color: var(--text); }
.svc-card ul li { display: flex; gap: 8px; align-items: center; }
.svc-card ul li::before { content: '+'; color: var(--lime); font-weight: 900; }
.svc-card .price-tag {
  margin-top: 18px;
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(33,230,255,.08);
  border: 1px solid rgba(33,230,255,.25);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- process / how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  transition: transform .18s ease;
}
.step:hover { transform: translateY(-4px); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: #0a0a0a;
  background: var(--lime);
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .84rem; color: var(--muted); }

/* ---------- why us ---------- */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-item {
  display: flex;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.why-item .ico {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,45,120,.1);
  border: 1px solid rgba(255,45,120,.25);
  display: grid;
  place-items: center;
}
.why-item .ico svg { width: 22px; height: 22px; stroke: var(--pink); }
.why-item h3 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: .86rem; color: var(--muted); }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.review .stars { color: var(--lime); letter-spacing: 3px; font-size: .9rem; margin-bottom: 12px; }
.review p { font-size: .92rem; margin-bottom: 16px; }
.review .who { display: flex; align-items: center; gap: 10px; }
.review .ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  display: grid; place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: .85rem;
}
.review .who b { display: block; font-size: .88rem; }
.review .who span { font-size: .74rem; color: var(--muted); }

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  padding: 18px 22px;
}
.faq-q .x { font-family: var(--font-head); color: var(--lime); font-weight: 900; transition: transform .2s; }
.faq-item.open .faq-q .x { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: .92rem; }

/* ---------- cta band ---------- */
.cta-band {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(200,255,0,.3);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,45,120,.2), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(33,230,255,.16), transparent 45%),
    var(--panel);
  padding: 56px 48px;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.5rem, 4vw, 2.6rem); max-width: 720px; margin-bottom: 16px; }
.cta-band p { color: var(--muted); max-width: 560px; margin-bottom: 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-phone {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 24px;
  display: inline-block;
}
.cta-phone:hover { text-decoration: underline; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
  background: var(--bg-soft);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-family: var(--font-head); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; color: var(--text); }
.footer-grid a { display: block; color: var(--muted); font-size: .9rem; padding: 4px 0; }
.footer-grid a:hover { color: var(--lime); }
.footer-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .8rem;
}

/* ---------- page header ---------- */
.page-head { padding: 170px 0 40px; }
.page-head .crumb { color: var(--muted); font-size: .8rem; margin-bottom: 12px; letter-spacing: .1em; text-transform: uppercase; }
.page-head .crumb a:hover { color: var(--lime); }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background: var(--panel);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 16px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  font-size: .8rem;
  font-weight: 600;
}
.g-tall { grid-row: span 2; aspect-ratio: auto; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 16px; }
.lightbox .close {
  position: absolute;
  top: 22px; right: 22px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 800;
}
.lightbox .cap2 { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .9rem; }

/* ---------- partners / quiz ---------- */
.quiz-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  max-width: 780px;
  position: relative;
  overflow: hidden;
}
.quiz-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.quiz-progress .bar { flex: 1; height: 8px; border-radius: 99px; background: var(--line); overflow: hidden; }
.quiz-progress .bar i { display: block; height: 100%; background: var(--lime); width: 0%; transition: width .3s ease; border-radius: 99px; }
.quiz-progress .count { font-family: var(--font-head); font-size: .8rem; color: var(--muted); }
.quiz-q h3 { margin-bottom: 22px; font-size: 1.15rem; }
.quiz-opts { display: grid; gap: 10px; }
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px 18px;
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  transition: border-color .15s, background .15s, transform .1s;
}
.quiz-opt:hover { border-color: var(--lime); background: rgba(200,255,0,.05); transform: translateX(4px); }
.quiz-opt.selected { border-color: var(--lime); background: rgba(200,255,0,.1); }
.quiz-opt .k {
  font-family: var(--font-head);
  color: var(--lime);
  font-weight: 900;
  font-size: .85rem;
}

.quiz-result { display: none; }
.quiz-result.show { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }

.result-score {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  margin: 10px 0 6px;
}
.result-label { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.result-text { color: var(--muted); margin-bottom: 24px; }
.result-bars { margin: 22px 0; }
.result-bar { margin-bottom: 14px; }
.result-bar .lbl { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: 6px; }
.result-bar .track { height: 9px; border-radius: 99px; background: var(--line); overflow: hidden; }
.result-bar .track i { display: block; height: 100%; border-radius: 99px; transition: width .8s ease; }

/* partner listing */
.partner-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.partner-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease;
}
.partner-card:hover { transform: translateY(-4px); border-color: rgba(255,45,120,.5); }
.partner-card .ph { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.partner-card .ava {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #0a0a0a;
}
.partner-card .exp { font-size: .74rem; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); padding: 4px 10px; border-radius: 99px; }
.partner-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.partner-card .meta { color: var(--muted); font-size: .84rem; margin-bottom: 14px; }
.partner-card .skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.partner-card .skills span { font-size: .74rem; background: rgba(33,230,255,.08); border: 1px solid rgba(33,230,255,.2); color: var(--cyan); padding: 4px 10px; border-radius: 99px; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 8px; letter-spacing: .04em; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime); }
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; }

.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none;
  margin-top: 18px;
  background: rgba(200,255,0,.08);
  border: 1px solid rgba(200,255,0,.3);
  color: var(--lime);
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: .9rem;
}
.form-success.show { display: block; animation: fadeUp .3s ease; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
.contact-card .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(200,255,0,.1);
  border: 1px solid rgba(200,255,0,.25);
  display: grid; place-items: center;
}
.contact-card .ico svg { width: 20px; height: 20px; stroke: var(--lime); }
.contact-card b { display: block; font-size: .98rem; }
.contact-card span { font-size: .82rem; color: var(--muted); }
.contact-card:hover { border-color: rgba(200,255,0,.5); }

.map-box {
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--muted);
  font-size: .85rem;
}

/* ---------- misc ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* floating phone */
.float-phone {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--lime);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 34px rgba(200,255,0,.45);
  transition: transform .18s ease;
}
.float-phone:hover { transform: translateY(-4px) scale(1.04); }
.float-phone svg { width: 26px; height: 26px; }

.badges-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 8px 14px;
  border-radius: 99px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--panel);
}
.badge.lime { border-color: rgba(200,255,0,.4); color: var(--lime); }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .services-grid, .reviews-grid, .partner-list, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav, .nav-cta { display: none; }
  .burger { display: block; }
  .section { padding: 60px 0; }
  .services-grid, .reviews-grid, .partner-list, .gallery-grid, .steps, .why { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .cta-band { padding: 40px 26px; }
  .quiz-wrap { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .g-tall { grid-row: auto; aspect-ratio: 4 / 3; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}
