:root {
  --bg: #07080d;
  --panel: #121722;
  --panel-2: #0d121b;
  --border: rgba(255, 255, 255, .11);
  --text: #dce3ee;
  --muted: #9aa5b6;
  --bright: #fff;
  --primary: #00e7ff;
  --primary-2: #52ff8c;
  --danger: #ff5d7d;
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 231, 255, .16), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(82, 255, 140, .12), transparent 24%),
    linear-gradient(180deg, #07080d 0%, #0b1018 58%, #07080d 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 44px 44px;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 8, 13, .84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--bright); font-weight: 950; }
.brand img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; box-shadow: 0 0 24px rgba(0, 231, 255, .22); }
.links { display: flex; align-items: center; gap: 19px; color: var(--muted); font-size: 15px; font-weight: 800; }
.links a[aria-current="page"] { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.social-pill {
  min-width: 42px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(0, 231, 255, .32);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(0, 231, 255, .07);
  font-size: 14px;
  font-weight: 950;
}
.social-pill:hover { color: #061015; background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.btn {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(0, 231, 255, .42);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 231, 255, .1);
  color: var(--bright);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(0, 231, 255, .11);
}
.btn:hover { color: var(--bright); transform: translateY(-1px); }
.btn-main { border: 0; color: #061015; background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.btn-small { min-height: 40px; padding: 0 14px; }
.btn-ghost { background: transparent; box-shadow: none; }
.menu-btn { display: none; }
.mobile-menu { display: none; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 10px 0 18px; border-top: 1px solid var(--border); }
.mobile-menu a { display: block; padding: 12px 0; color: var(--muted); font-weight: 850; }
.mobile-menu.open { display: block; }

.hero { padding: 84px 0 58px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: stretch; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; color: var(--bright); font-size: clamp(38px, 5.8vw, 72px); line-height: .98; letter-spacing: 0; }
h2 { margin-bottom: 14px; color: var(--bright); font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: 0; }
h3 { margin-bottom: 10px; color: var(--bright); font-size: 23px; line-height: 1.2; }
p, li { color: var(--muted); font-size: 17px; line-height: 1.65; }
.lead { max-width: 770px; font-size: 20px; color: #c8d2df; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.panel, .card, .price-card, .faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 23, 34, .96), rgba(11, 15, 23, .96));
  box-shadow: var(--shadow);
}
.hero-panel { padding: 26px; }
.metric {
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
}
.metric:last-child { border-bottom: 0; }
.metric b { display: block; margin-bottom: 5px; color: var(--bright); font-size: 24px; line-height: 1.2; }
.metric span { color: var(--muted); line-height: 1.5; }
.section { padding: 58px 0; }
.section-head { max-width: 820px; margin-bottom: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card, .price-card, .faq-item { padding: 25px; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; }
.price-card.highlight { border-color: rgba(82, 255, 140, .45); }
.price { margin: 14px 0 16px; color: var(--primary-2); font-size: 34px; font-weight: 1000; }
.price small { color: var(--muted); font-size: 16px; font-weight: 800; }
.price-card ul, .check-list { padding: 0; margin: 16px 0 24px; list-style: none; display: grid; gap: 10px; }
.price-card li, .check-list li { display: flex; gap: 9px; color: #c9d2df; line-height: 1.42; }
.price-card li::before, .check-list li::before { content: ""; width: 8px; height: 8px; margin-top: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--primary-2); box-shadow: 0 0 12px rgba(82, 255, 140, .4); }
.steps, .mini-steps { margin: 0; padding-left: 24px; display: grid; gap: 12px; }
.steps li, .mini-steps li { color: #c9d2df; }
.faq-item p { margin-bottom: 0; }
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.media-frame {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(0, 231, 255, .2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 23, 34, .96), rgba(9, 13, 20, .96));
  box-shadow: var(--shadow);
}
.media-frame img {
  width: 100%;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .08);
}
.media-frame figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.author-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(0, 231, 255, .22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 23, 34, .96), rgba(9, 13, 20, .96));
  box-shadow: var(--shadow);
}
.author-profile img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(0, 231, 255, .28);
}
.author-profile p:last-child { margin-bottom: 0; }
.author-inline { display: grid; grid-template-columns: 190px 1fr; gap: 26px; align-items: center; }
.author-inline img { width: 190px; height: 190px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(0, 231, 255, .25); }
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testimonial {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}
.testimonial p { color: #d8e0eb; }
.testimonial strong { color: var(--bright); }
.stars { margin-bottom: 10px; color: #ffcc4d; letter-spacing: .06em; }
.case-card, .results-board {
  margin-top: 22px;
  padding: 25px;
  border: 1px solid rgba(82, 255, 140, .24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(82, 255, 140, .08), rgba(0, 231, 255, .08));
}
.case-card p { margin-bottom: 0; }
.results-board {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.score-list { display: flex; gap: 14px; }
.score-list div {
  min-width: 112px;
  padding: 18px;
  border: 1px solid rgba(0, 231, 255, .26);
  border-radius: 8px;
  background: rgba(7, 8, 13, .55);
  text-align: center;
}
.score-list b { display: block; color: var(--primary); font-size: 42px; line-height: 1; }
.score-list span { color: var(--muted); font-weight: 850; }

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow-y: auto;
}
.lead-modal.open { display: flex; }
.lead-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 10, .78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.lead-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  padding: 30px;
  border: 1px solid rgba(0, 231, 255, .24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 23, 34, .98), rgba(9, 13, 20, .98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
}
.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--bright);
  font-size: 26px;
  cursor: pointer;
}
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: grid; gap: 7px; color: var(--muted); font-size: 14px; font-weight: 800; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #090c12;
  color: var(--bright);
  padding: 12px 14px;
  font: inherit;
  outline: none;
}
.lead-form textarea { min-height: 118px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: rgba(0, 231, 255, .72); box-shadow: 0 0 0 3px rgba(0, 231, 255, .12); }
.lead-wide { grid-column: 1 / -1; }
.lead-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.legal-consent { grid-column: 1 / -1; display: flex !important; grid-template-columns: none !important; flex-direction: row; align-items: flex-start; gap: 10px !important; padding: 12px; border: 1px solid var(--border); border-radius: 8px; background: rgba(255, 255, 255, .03); font-size: 13px !important; line-height: 1.45; }
.legal-consent input { width: auto; min-height: auto; margin: 3px 0 0; flex: 0 0 auto; }
.lead-status { margin: 0; min-height: 24px; color: var(--muted); font-size: 15px; }
.lead-status.ok { color: var(--primary-2); }
.lead-status.err { color: var(--danger); }

.footer { margin-top: 40px; padding: 34px 0 44px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.footer-brand { margin-bottom: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: flex-end; color: var(--muted); font-weight: 800; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.footer-socials a {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(0, 231, 255, .28);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .hero-grid, .grid-3, .grid-2, .pricing, .footer-grid, .author-inline, .author-profile, .media-grid, .testimonials, .results-board { grid-template-columns: 1fr; }
  .links, .nav > .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .wrap, .mobile-menu { width: min(100% - 28px, 1180px); }
  .hero { padding: 48px 0 32px; }
  .section { padding: 38px 0; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .lead { font-size: 18px; }
  .card, .price-card, .faq-item, .hero-panel, .lead-modal__dialog { padding: 20px; }
  .author-profile { padding: 20px; }
  .author-profile img { width: 160px; height: 160px; }
  .score-list { flex-direction: column; }
  .hero-actions .btn, .section-actions .btn, .price-card .btn, .lead-form .btn { width: 100%; }
  .lead-form { grid-template-columns: 1fr; }
  .brand span { display: none; }
  .btn-small { padding: 0 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
