/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --bg:        #0b0f17;
  --surface:   #111827;
  --surface-2: #1c2537;
  --surface-3: #243047;
  --txt:       #f1f5f9;
  --txt-2:     #94a3b8;
  --line:      rgba(241,245,249,0.08);
  --col:       #dc2626;
  --col-dk:    #b91c1c;
  --col-lt:    #f87171;
  --col-glow:  rgba(220,38,38,0.18);
  --on-col:    #fff;
  --f-head:    "Raleway", sans-serif;
  --f-mono:    "Space Mono", monospace;
  --radius:    8px;
  --radius-lg: 14px;
  --maxw:      1200px;
  --pad:       clamp(16px, 4vw, 52px);
  --hd:        70px;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-head);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
p { color: var(--txt-2); line-height: 1.75; }

/* ── Shell ──────────────────────────────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .25s;
  cursor: pointer;
  min-height: 48px;
}
.btn-primary {
  background: var(--col);
  color: var(--on-col);
  border-color: var(--col);
}
.btn-primary:hover {
  background: var(--col-dk);
  border-color: var(--col-dk);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(220,38,38,.55);
}
.btn-ghost {
  background: transparent;
  color: var(--txt);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--col);
  color: var(--col-lt);
}
.btn-on-col {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-on-col:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-1px);
}

/* ── Eyebrow ────────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--col-lt);
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--col);
  flex-shrink: 0;
}

/* ── Section shared ─────────────────────────────────────────────────────────── */
.sect-head {
  margin-bottom: 52px;
}
.sect-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 14px;
  color: var(--txt);
}
.sect-head p {
  margin-top: 14px;
  max-width: 58ch;
  font-size: 1rem;
}
.sect-head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.sect-head--split p { margin-top: 0; }

/* ── Header ─────────────────────────────────────────────────────────────────── */
.site-hd {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,15,23,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  height: var(--hd);
}
.hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hd);
  gap: 20px;
}

/* ── Logo ────────────────────────────────────────────────────────────────────── */
.mboro-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text-top {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--col-lt);
  font-weight: 400;
}
.logo-text-main {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--txt);
}

/* ── Nav ─────────────────────────────────────────────────────────────────────── */
.hd-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hd-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-2);
  transition: color .2s;
  letter-spacing: 0.01em;
}
.hd-nav a:hover { color: var(--txt); }

.hd-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px 9px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--col);
  font-size: 14px;
  font-weight: 600;
  color: var(--txt);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.hd-phone svg { color: var(--col); width: 14px; height: 14px; transition: color .2s; }
.hd-phone:hover { background: var(--col); color: #fff; }
.hd-phone:hover svg { color: #fff; }

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  color: var(--txt);
  flex-shrink: 0;
}
.nav-burger svg { width: 20px; height: 20px; }

/* ── Mobile drawer ───────────────────────────────────────────────────────────── */
.mob-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  padding: 22px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), visibility 0s linear .32s;
}
.mob-drawer.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), visibility 0s linear 0s;
}
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-close {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  color: var(--txt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer-close svg { width: 18px; height: 18px; }
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 20px;
}
.drawer-links a {
  font-family: var(--f-head);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--txt);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.drawer-links a:hover { color: var(--col-lt); }
.drawer-ctas {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero-sect {
  padding: clamp(60px, 9vw, 110px) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.hero-sect::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--col-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-top: 18px;
  color: var(--txt);
  max-width: 18ch;
}
.hero-h1 em {
  font-style: normal;
  color: var(--col-lt);
  position: relative;
}
.hero-lead {
  margin-top: 20px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  max-width: 50ch;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat {
  padding-right: 28px;
  border-right: 1px solid var(--line);
  padding-left: 28px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--txt);
  line-height: 1;
}
.hero-stat-l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-2);
  margin-top: 6px;
  font-weight: 400;
}

/* ── Ranking widget ──────────────────────────────────────────────────────────── */
.hero-widget { position: relative; z-index: 1; }
.rk-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.rk-card::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--col);
}
.rk-card-head {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt-2);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rk-card-head span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--col-lt);
}
.rk-card-head span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--col);
  animation: rk-pulse 1.8s infinite;
}
@keyframes rk-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.rk-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.rk-row:last-child { border-bottom: none; }
.rk-kw {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rk-pos {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  min-width: 36px;
  text-align: center;
}
.rk-pos--before {
  background: var(--surface-2);
  color: var(--txt-2);
}
.rk-pos--after {
  background: rgba(220,38,38,.15);
  color: var(--col-lt);
  border: 1px solid rgba(220,38,38,.3);
}
.rk-arrow {
  color: var(--col);
  font-size: 13px;
  font-weight: 700;
}
.rk-footer {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--txt-2);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── Ticker ──────────────────────────────────────────────────────────────────── */
.ticker-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-run {
  display: flex;
  flex-shrink: 0;
  animation: ticker-scroll 32s linear infinite;
  gap: 0;
}
.ticker-run:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.t-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-2);
  white-space: nowrap;
}
.t-item::after {
  content: "◆";
  font-size: 7px;
  color: var(--col);
}

/* ── Trust stats ─────────────────────────────────────────────────────────────── */
.trust-sect {
  padding: 48px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-cell {
  padding: 0 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.trust-cell:first-child { padding-left: 0; text-align: left; }
.trust-cell:last-child { border-right: none; }
.trust-n {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--txt);
  line-height: 1;
}
.trust-l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-2);
  margin-top: 8px;
  font-weight: 400;
}

/* ── Services ────────────────────────────────────────────────────────────────── */
.svc-sect {
  padding: clamp(70px, 9vw, 110px) 0;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s, transform .25s, box-shadow .3s;
}
.svc-card:hover {
  border-color: var(--col);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -30px rgba(220,38,38,.4);
}
.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--col-glow);
  border: 1px solid rgba(220,38,38,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-lt);
  flex-shrink: 0;
}
.svc-icon-wrap svg { width: 24px; height: 24px; }
.svc-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--txt);
  line-height: 1.2;
}
.svc-desc {
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--col-lt);
  margin-top: 4px;
  transition: gap .2s;
}
.svc-link svg { width: 13px; height: 13px; }
.svc-card:hover .svc-link { gap: 11px; }

/* ── Pricing ─────────────────────────────────────────────────────────────────── */
.price-sect {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--surface);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.price-card:hover { border-color: rgba(220,38,38,.4); transform: translateY(-2px); }
.price-card--main {
  border-color: var(--col);
  box-shadow: 0 0 0 1px var(--col), 0 32px 60px -30px rgba(220,38,38,.35);
}
.price-card--main:hover { transform: translateY(-4px); }
.price-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--col);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--col-lt);
  font-weight: 400;
  margin-bottom: 10px;
}
.price-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--txt);
  margin-bottom: 20px;
}
.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.price-from {
  font-size: 13px;
  color: var(--txt-2);
  font-weight: 500;
}
.price-amount {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--txt);
  line-height: 1;
}
.price-period {
  font-size: 13px;
  color: var(--txt-2);
  font-weight: 500;
  line-height: 1.3;
}
.price-ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}
.price-ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--txt-2);
  line-height: 1.5;
}
.price-ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--col-glow);
  border: 1px solid rgba(220,38,38,.3);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l2.5 2.5 5.5-5' stroke='%23f87171' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.price-note {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--txt-2);
  margin-top: 12px;
  text-align: center;
}

/* ── SEO Content ─────────────────────────────────────────────────────────────── */
.content-sect {
  padding: clamp(70px, 9vw, 110px) 0;
}
.content-h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--txt);
  margin-bottom: 8px;
}
.content-h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--txt-muted);
  margin-bottom: 40px;
}
.content-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.content-aside {
  position: sticky;
  top: calc(var(--hd) + 24px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.content-aside h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--txt);
  margin-bottom: 10px;
}
.content-aside p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.content-aside ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.content-aside li {
  font-size: 13px;
  color: var(--txt-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.content-aside li::before {
  content: "▸";
  color: var(--col);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 3px;
}
.content-body > p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1em;
}
.acc-list {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.acc-row {
  border-bottom: 1px solid var(--line);
}
.acc-summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}
.acc-summary::-webkit-details-marker { display: none; }
.acc-title {
  font-family: var(--f-head) !important;
  font-size: clamp(1rem, 1.5vw, 1.2rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  color: var(--txt) !important;
  line-height: 1.3 !important;
  flex: 1 !important;
  margin: 0 !important;
  display: block !important;
}
.acc-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-2);
  flex-shrink: 0;
  transition: transform .3s, background .25s, border-color .25s, color .25s;
}
.acc-row[open] .acc-icon {
  transform: rotate(45deg);
  background: var(--col);
  border-color: var(--col);
  color: #fff;
}
.acc-body {
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.8;
}
.acc-body p + p { margin-top: 1em; }

/* ── Process ─────────────────────────────────────────────────────────────────── */
.proc-sect {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--surface);
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 52px;
}
.proc-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--col) 0%, rgba(220,38,38,.3) 100%);
  z-index: 0;
}
.proc-step {
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}
.proc-step:last-child { padding-right: 0; }
.proc-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--col);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--col-lt);
  margin-bottom: 22px;
  flex-shrink: 0;
}
.proc-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--col-lt);
  font-weight: 400;
  margin-bottom: 10px;
}
.proc-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--txt);
  margin-bottom: 10px;
  line-height: 1.25;
}
.proc-desc {
  font-size: 14px;
  line-height: 1.7;
}

/* ── Reviews ─────────────────────────────────────────────────────────────────── */
.rev-sect {
  padding: clamp(70px, 9vw, 110px) 0;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rev-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .25s, transform .25s;
}
.rev-card:hover { border-color: rgba(220,38,38,.4); transform: translateY(-2px); }
.rev-stars {
  display: flex;
  gap: 3px;
  color: var(--col);
}
.rev-stars svg { width: 16px; height: 16px; }
.rev-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--txt);
  flex: 1;
  font-style: italic;
  font-weight: 400;
}
.rev-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--col-glow);
  border: 1px solid rgba(220,38,38,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--col-lt);
  flex-shrink: 0;
}
.rev-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--txt);
}
.rev-meta {
  font-size: 12px;
  color: var(--txt-2);
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.faq-sect {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--surface);
}
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-acc {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--txt);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-2);
  flex-shrink: 0;
  transition: transform .3s, background .25s, border-color .25s, color .25s;
}
.faq-item[open] .faq-chev {
  transform: rotate(45deg);
  background: var(--col);
  border-color: var(--col);
  color: #fff;
}
.faq-a {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.8;
}

/* ── Map ─────────────────────────────────────────────────────────────────────── */
.map-sect {
  padding: clamp(70px, 9vw, 110px) 0;
}
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}
.map-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--txt);
  line-height: 1.15;
  margin-top: 14px;
  margin-bottom: 16px;
}
.map-copy p { margin-bottom: 24px; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 400px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%) invert(5%);
}

/* ── CTA ─────────────────────────────────────────────────────────────────────── */
.cta-sect {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--col);
  position: relative;
  overflow: hidden;
}
.cta-sect::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto 16px;
}
.cta-inner p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 32px;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.site-ft {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
}
.ft-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}
.ft-brand p {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 32ch;
}
.ft-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.ft-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-2);
  transition: color .2s, border-color .2s;
}
.ft-socials a:hover { color: var(--col-lt); border-color: var(--col); }
.ft-socials svg { width: 15px; height: 15px; }
.ft-col-title {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 18px;
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-links a, .ft-links li {
  font-size: 13px;
  color: var(--txt-2);
  transition: color .2s;
  line-height: 1.5;
}
.ft-links a:hover { color: var(--col-lt); }
.ft-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px 0;
  font-size: 12px;
  color: var(--txt-2);
}
.ft-bar a { color: var(--txt-2); margin-left: 18px; transition: color .2s; }
.ft-bar a:hover { color: var(--col-lt); }

/* ── Sticky CTA ──────────────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--col);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 28px -6px rgba(220,38,38,.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  border: none;
  cursor: pointer;
}
.sticky-cta svg { width: 16px; height: 16px; }
.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-cta:hover { background: var(--col-dk); }

/* ── Reveal ──────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

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

/* ── Breakpoints ─────────────────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .hd-nav { display: none; }
  .nav-burger { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-h1 { max-width: none; }
  .hero-widget { max-width: 480px; }
  .proc-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .proc-steps::before { display: none; }
  .map-layout { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-grid { grid-template-columns: 1fr; gap: 36px; }
  .content-aside { position: static; }
}
@media (max-width: 760px) {
  .hd-phone { display: none; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-cell { padding: 0; text-align: left; border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
  .trust-cell:last-child { border-bottom: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card--main { order: -1; }
  .rev-grid { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr; }
  .hero-stat-row { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hero-stat { padding: 0 14px; }
  .hero-stat:first-child { padding-left: 0; }
  .ft-inner { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 14px; border-radius: 50%; }
  .sect-head--split { grid-template-columns: 1fr; gap: 14px; }
  .map-frame { height: 300px; }
  .faq-wrap { max-width: none; }
}
