:root {
  --bg: #07111f;
  --bg-soft: #0e1b2f;
  --card: #111f35;
  --card-2: #132640;
  --text: #f8fafc;
  --muted: #aab7c9;
  --line: rgba(255, 255, 255, 0.10);
  --primary: #2f80ed;
  --primary-dark: #1768d5;
  --green: #22c55e;
  --warning: #f59e0b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(47, 128, 237, 0.24), transparent 34rem),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand span span {
  color: var(--primary);
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #65d6ad);
  border-radius: 12px;
  color: white;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: white !important;
  background: rgba(47, 128, 237, 0.18);
  border: 1px solid rgba(47, 128, 237, 0.4);
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
}

.hero {
  padding-top: 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  color: #9fd1ff;
  background: rgba(47, 128, 237, 0.14);
  border: 1px solid rgba(47, 128, 237, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 690px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 16px 38px rgba(47, 128, 237, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: white;
}

.trust-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.map-panel {
  height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(rgba(47,128,237,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,128,237,0.18) 1px, transparent 1px),
    linear-gradient(135deg, #0c1a2d, #11284a);
  background-size: 34px 34px, 34px 34px, auto;
}

.scan-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(47, 128, 237, 0.5);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: scan 2.8s infinite;
}

@keyframes scan {
  0% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.7); }
  70% { opacity: 0.65; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--green);
  border: 3px solid white;
  border-radius: 999px;
  box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.12);
}

.pin-1 { left: 34%; top: 42%; }
.pin-2 { left: 62%; top: 26%; }
.pin-3 { left: 70%; top: 66%; background: var(--warning); }

.status-card {
  margin-top: 16px;
  background: rgba(7, 17, 31, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.status-card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.92rem;
}

.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.tag {
  background: rgba(47, 128, 237, 0.16);
  color: #aad5ff;
  border: 1px solid rgba(47, 128, 237, 0.3);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.problem-grid,
.cards-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-item,
.service-card,
.step,
.partner-card,
details,
.form-shell {
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.problem-item {
  padding: 22px;
  font-weight: 800;
  color: #dce8f8;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 28px;
  transition: 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 128, 237, 0.35);
}

.service-card p,
.step p,
.split p,
.partner-card li,
details p {
  color: var(--muted);
}

.icon {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.muted {
  background: rgba(255,255,255,0.025);
  border-block: 1px solid rgba(255,255,255,0.055);
}

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

.step {
  padding: 24px;
}

.step span {
  display: inline-block;
  color: #9fd1ff;
  font-weight: 900;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.audience-list {
  display: grid;
  gap: 12px;
}

.audience-list div {
  padding: 18px 20px;
  background: rgba(47, 128, 237, 0.12);
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 18px;
  font-weight: 800;
}

.partner-section {
  background:
    radial-gradient(circle at bottom right, rgba(47, 128, 237, 0.18), transparent 26rem),
    rgba(255,255,255,0.025);
}

.partner-card {
  padding: 30px;
}

.partner-card ul {
  margin: 0;
  padding-left: 20px;
}

.form-section {
  background:
    radial-gradient(circle at center, rgba(34, 197, 94, 0.08), transparent 34rem);
}

.form-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  padding: clamp(22px, 4vw, 42px);
}

.form-copy p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #d9e6f5;
  font-weight: 750;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.78);
  color: white;
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47, 128, 237, 0.8);
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.15);
}

textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.full-btn {
  width: 100%;
}

.form-message {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-message.success {
  color: #86efac;
}

.form-message.error {
  color: #fca5a5;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

details {
  padding: 20px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin-top: 12px;
  margin-bottom: 0;
}

.footer {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--line);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 28px;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer h4 {
  margin: 0 0 12px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 20px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 82px;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cards-grid,
  .problem-grid,
  .steps,
  .faq-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-panel {
    height: 260px;
  }

  .status-card {
    align-items: flex-start;
    flex-direction: column;
  }
}


.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-chip {
  border: 1px solid var(--line);
  color: #dce8f8;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.choice-chip:hover,
.choice-chip.active {
  background: rgba(47, 128, 237, 0.22);
  border-color: rgba(47, 128, 237, 0.7);
  color: white;
}

.recaptcha-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .choice-chip {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
}
