:root {
  --bg: #020719;
  --bg2: #07113a;
  --text: #ffffff;
  --muted: #cdd3df;
  --lime: #91a70f;
  --lime2: #72d64f;
  --yellow: #ffd21d;
  --card: #0b1538;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, 92%);
  margin: auto;
}
.narrow {
  width: min(820px, 92%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  background: rgba(2, 7, 25, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand img {
  width: 170px;
  max-height: 60px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 700;
}
.nav a {
  color: #dfe6f4;
}
.nav-cta {
  background: var(--lime);
  color: #151908 !important;
  padding: 12px 18px;
  border-radius: 999px;
}
.section-grid {
  width: min(1120px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: center;
}
.hero {
  min-height: calc(100vh - 86px);
  padding: 64px 0 80px;
  background: radial-gradient(
    circle at 80% 10%,
    rgba(145, 167, 15, 0.22),
    transparent 33%
  );
}
.eyebrow {
  display: inline-flex;
  color: var(--lime2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  margin-bottom: 16px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(2.35rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.lead {
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 16px;
  padding: 16px 22px;
  font-weight: 900;
  cursor: pointer;
  font-size: 1rem;
}
.primary {
  background: var(--yellow);
  color: #061033;
  box-shadow: 0 14px 30px rgba(255, 210, 29, 0.23);
}
.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}
.full {
  width: 100%;
}
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-row span {
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  color: #d7def1;
  font-weight: 700;
}
.hero-card {
  position: relative;
  min-height: 640px;
}
.phone {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: min(330px, 76vw);
  background: #111;
  border: 10px solid #111;
  border-radius: 44px;
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
}
.phone-top {
  width: 90px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: auto;
}
.phone-screen {
  background: #f7f8fb;
  color: #0a1230;
  border-radius: 30px;
  padding: 34px 22px;
}
.mini-brand {
  font-weight: 900;
  font-size: 0.85rem;
}
.phone-screen h2 {
  font-size: 2rem;
  color: #0a1230;
}
.phone-screen p {
  color: #445;
}
.phone-screen button {
  background: #081235;
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 800;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}
.product-grid span {
  height: 82px;
  border-radius: 14px;
  background: linear-gradient(135deg, #dce9d5, #ca053d);
}
.product-grid span:nth-child(2) {
  background: linear-gradient(135deg, #fff, #9a5403);
}
.product-grid span:nth-child(3) {
  background: linear-gradient(135deg, #e8cda9, #573f9d);
}
.mini-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
}
.message-bubble {
  position: absolute;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #0a1230;
  border-radius: 18px;
  padding: 15px 18px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  max-width: 330px;
}
.one {
  top: 60px;
}
.two {
  top: 138px;
  right: 34px;
}
.three {
  top: 216px;
  right: 4px;
}
.problem {
  padding: 76px 0;
  background: linear-gradient(90deg, rgba(145, 167, 15, 0.18), transparent);
}
.problem p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}
.features {
  padding: 88px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 34px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.feature-grid article {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  min-height: 220px;
}
.icon {
  font-size: 2rem;
  color: var(--lime2);
  margin-bottom: 14px;
}
.feature-grid h3 {
  font-size: 1.05rem;
}
.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}
.pricing {
  padding: 76px 0;
  background: #050b25;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.price-card {
  border-radius: 28px;
  padding: 34px;
  text-align: center;
}
.price-card p {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.price-card strong {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  color: var(--lime2);
}
.price-card span {
  font-size: 1.8rem;
  color: inherit;
}
.price-card small {
  font-size: 1.15rem;
  color: var(--muted);
}
.dark {
  background: #081235;
  border: 1px solid rgba(114, 214, 79, 0.4);
}
.light {
  background: #fff;
  color: #07113a;
}
.light small {
  color: #1e2740;
}
.price-arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: #07113a;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 900;
}
.cta-band {
  padding: 44px 0;
  text-align: center;
  background: var(--yellow);
  color: #061033;
}
.cta-band h2 {
  margin-bottom: 10px;
}
.cta-band p {
  font-weight: 700;
}
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding: 88px 0;
}
.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
}
.lead-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
label {
  display: block;
  font-weight: 800;
  margin-bottom: 16px;
}
input {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: #07113a;
  border-radius: 14px;
  padding: 16px;
  font: inherit;
}
input:focus {
  outline: 3px solid rgba(145, 167, 15, 0.35);
}
.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
}
.footer {
  border-top: 1px solid var(--border);
  padding: 34px 5%;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  text-align: center;
}
.footer img {
  width: 130px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
  .section-grid,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 42px;
  }
  .hero-card {
    min-height: 570px;
  }
  .message-bubble {
    font-size: 0.82rem;
    max-width: 260px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-arrow {
    margin: auto;
    transform: rotate(90deg);
  }
}
@media (max-width: 560px) {
  .brand img {
    width: 138px;
  }
  .site-header {
    padding: 12px 4%;
  }
  .nav-cta {
    padding: 10px 13px;
    font-size: 0.9rem;
  }
  .hero-card {
    min-height: 510px;
  }
  .phone {
    right: 0;
    left: 0;
    margin: auto;
    width: 280px;
  }
  .message-bubble {
    left: 0;
    right: auto;
  }
  .two {
    left: 20px;
  }
  .three {
    left: 6px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 26px 18px;
  }
  .footer {
    flex-direction: column;
  }
}
