:root {
  --bg: #091321;
  --panel: rgba(13, 27, 47, 0.72);
  --panel-strong: #0e1d34;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f7ff;
  --muted: #94a4bf;
  --blue: #173b78;
  --blue-2: #214f9a;
  --accent: #8fb5ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 48px 0 96px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(9, 19, 33, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-pill {
  display: inline-flex;
  justify-self: center;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.nav-pill a,
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-pill a { color: var(--muted); }
.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  color: white;
  box-shadow: 0 14px 36px rgba(36, 83, 166, 0.35);
  border: 0;
  outline: none;
}
.btn-secondary,
.btn-light {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-light { color: white; }
.btn:hover,
.nav-cta:hover,
.nav-pill a:hover { transform: translateY(-2px); }

.eyebrow,
.section-label,
.panel-tag,
.panel-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent);
}

h1,h2,h3,p { margin-top: 0; }
h1 {
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  max-width: 9ch;
  margin: 18px 0;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 12ch;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
p {
  color: var(--muted);
  line-height: 1.65;
}
.hero-text { max-width: 56ch; font-size: 17px; }
.offer-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

.hero-premium,
.cta-panel-premium {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.form-copy {
  padding-top: 8px;
}

.lead-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 30px;
}

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

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(143, 181, 255, 0.35);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(143, 181, 255, 0.08);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--muted);
}

.lead-form textarea {
  min-height: 140px;
  resize: vertical;
}

.lead-form .btn {
  width: 100%;
  border: 0;
  outline: none;
  box-shadow: 0 14px 36px rgba(36, 83, 166, 0.35);
}

.hero-panel,
.statement,
.premium-card,
.process-item,
.review-banner,
.cta-panel-premium,
.offer-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel,
.statement,
.premium-card,
.review-banner,
.cta-panel-premium,
.offer-panel {
  border-radius: 30px;
  padding: 30px;
}

.hero-panel {
  display: grid;
  gap: 24px;
}

.hero-panel-top,
.hero-panel-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-panel-main {
  align-items: start;
}

.hero-panel strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.statement,
.review-banner {
  max-width: 880px;
}

.section-head {
  margin-bottom: 24px;
}

.premium-grid,
.process-strip,
.offer-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

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

.testimonial-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 26px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 1.02rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 14px;
}

.premium-card span,
.process-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: rgba(143, 181, 255, 0.1);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 16px;
}

.process-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid {
  grid-template-columns: 220px 1fr;
  align-items: start;
  margin: 24px 0;
}

.offer-price {
  display: grid;
  gap: 6px;
}

.offer-amount {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  color: var(--text);
}

.offer-period {
  color: var(--muted);
  font-size: 15px;
}

.offer-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  display: grid;
  gap: 10px;
}

.offer-list li {
  color: var(--muted);
}

.process-item {
  border-radius: 24px;
  padding: 24px;
}

.cta-panel-premium {
  align-items: center;
}

.footer-grid-simple {
  display: grid;
  gap: 10px;
  padding-bottom: 72px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (max-width: 980px) {
  .hero-premium,
  .cta-panel-premium,
  .premium-grid,
  .process-strip,
  .offer-grid,
  .testimonial-grid,
  .form-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: 1fr;
  }
  .nav-pill,
  .nav-cta {
    justify-self: start;
  }
}

@media (max-width: 540px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
  }
  .nav-cta {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .nav-pill {
    flex-wrap: wrap;
    border-radius: 24px;
  }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
  .nav-cta {
    min-width: unset;
    padding: 0 14px;
    font-size: 13px;
    min-height: 40px;
    width: auto;
  }
  .brand { font-size: 1.1rem; gap: 10px; }
  .brand-logo { width: 34px; height: 34px; }
  h1 { max-width: none; }
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  mix-blend-mode: screen;
  opacity: 0.95;
}


.nav {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.brand {
  font-size: 1.5rem;
  gap: 14px;
  justify-self: start;
}

.brand-logo {
  width: 46px;
  height: 46px;
}

.nav-cta {
  min-height: 50px;
  min-width: 170px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  justify-self: end;
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}
