:root {
  --ink: #07111f;
  --blue: #0b8ec8;
  --blue-deep: #066a98;
  --sky: #5ec4ef;
  --mist: #eef6fb;
  --paper: #f7fafc;
  --line: rgba(7, 17, 31, 0.1);
  --white: #fff;
  --muted: #5b6b7c;
  --ok: #128c7e;
  --font: "Sora", sans-serif;
  --display: "Syne", "Sora", sans-serif;
  --max: 1080px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  padding-bottom: 78px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { width: min(100% - 1.5rem, var(--max)); margin-inline: auto; }

.ads-top {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  font-size: 0.82rem;
  padding: 0.55rem 0;
}
.ads-top .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.ads-top a { color: #fff; font-weight: 600; }
.ads-top a:hover { color: var(--sky); }

.ads-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.ads-header .inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
}
.brand strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand strong span { color: var(--blue); }
.brand small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(11,142,200,.28);
}
.btn-call {
  background: var(--ink);
  color: #fff;
}
.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  padding: 2.75rem 0 2.25rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(94,196,239,.22), transparent 42%),
    linear-gradient(135deg, #07111f 0%, #0d3a5c 55%, #0b8ec8 100%);
  color: #fff;
}
.hero .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}
.hero .lead {
  max-width: 48ch;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.trust-row span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.section { padding: 2.5rem 0; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section .sub {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem;
}
.card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.card p { color: var(--muted); font-size: 0.92rem; }

.proof {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  text-align: center;
}
.proof-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--blue-deep);
}
.proof-grid span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
}
.form-box label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.form-box .field { margin-bottom: 0.85rem; }
.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--mist);
}
.form-box textarea { min-height: 96px; resize: vertical; }
.form-box .btn { width: 100%; }
.form-note {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}
.check-list { display: grid; gap: 0.65rem; }
.check-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ok);
  font-weight: 800;
}

.business-box {
  background: var(--mist);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  margin-top: 1rem;
}
.business-box h3 {
  font-family: var(--display);
  margin-bottom: 0.5rem;
}
.business-box p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.35rem; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(7,17,31,.1);
  padding: 0.65rem 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.sticky-cta .btn { width: 100%; border-radius: 14px; }

.ads-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
.ads-footer a { color: #fff; }
.ads-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .grid-3, .proof-grid, .split { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .ads-header .btn-call { display: none; }
}
