:root {
  --bg: #f3f8fc;
  --surface: #ffffff;
  --surface-2: #eaf3fb;
  --text: #11263a;
  --muted: #4e667a;
  --accent: #206daa;
  --accent-deep: #174f7c;
  --line: #d5e3f0;
  --shadow: 0 20px 45px rgba(17, 47, 73, 0.16);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, #d8ecff 0, transparent 30%),
    radial-gradient(circle at 85% 5%, #e7f3ff 0, transparent 25%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(243, 248, 252, 0.86);
  border-bottom: 1px solid rgba(213, 227, 240, 0.9);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  width: 100px;
  height: auto;
  border-radius: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-small {
  background: var(--text);
  color: #fff;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #3c87c2);
  color: #fff;
  padding: 14px 22px;
  box-shadow: 0 12px 24px rgba(32, 109, 170, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(120deg, #1a5b8d, var(--accent-deep));
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.8);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 62px 0 40px;
  position: relative;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(3, 11, 19, 0.68), rgba(3, 12, 20, 0.68)),
    url("/img/hero-bg.png") center/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 0 100%);
}

.hero-grid {
  display: grid;
  gap: 26px;
}

.hero-copy {
  color: #fff;
  max-width: 680px;
}

.kicker {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5.2vw, 3.7rem);
  line-height: 1.05;
}

.hero h1 span {
  color: #c7e4ff;
  display: block;
}

.lead {
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.6;
  margin: 18px 0;
  color: #e2f1ff;
}

.hero-points {
  margin: 0 0 24px;
  padding-left: 20px;
}

.hero-points li {
  margin-bottom: 8px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 22px;
  max-width: 520px;
}

.lead-card h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
}

.lead-card p {
  margin: 10px 0 18px;
  color: var(--muted);
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select {
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 46px;
  padding: 0 12px;
  font-size: 1rem;
  font-family: inherit;
}

input:focus,
select:focus {
  outline: 2px solid #9ac6ea;
  border-color: #5e97c7;
}

.check-wrap {
  margin-top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.check-wrap input {
  margin-top: 4px;
  min-height: auto;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.form-status {
  min-height: 18px;
  font-size: 0.9rem;
  margin: 0;
}

.proof {
  padding: 16px 0 40px;
}

.proof-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.proof article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.proof h3 {
  margin: 0;
  font-size: 1.6rem;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.proof p {
  margin: 6px 0 0;
  color: var(--muted);
}

.benefits,
.faq {
  padding: 50px 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4.1vw, 2.4rem);
  line-height: 1.15;
}

.benefits-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.benefit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.benefit h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.06rem;
}

.benefit p {
  margin: 8px 0 0;
  color: var(--muted);
}

.visual-band {
  padding: 10px 0 50px;
}

.visual-inner {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 30px);
  display: grid;
  gap: 18px;
}

.visual-inner h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.15;
}

.visual-inner p {
  color: var(--muted);
  max-width: 62ch;
}

.visual-inner img {
  border-radius: 14px;
  border: 1px solid rgba(32, 109, 170, 0.28);
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

summary {
  cursor: pointer;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 600;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer {
  background: #0f2740;
  color: #e9f3ff;
  padding: 28px 0 86px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  width: 64px;
  border-radius: 50%;
}

.footer a {
  color: #e9f3ff;
  text-decoration: none;
  display: block;
}

.mobile-cta {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 360px);
  background: linear-gradient(120deg, var(--accent), #3f8ac5);
  color: #fff;
  text-decoration: none;
  font-family: "Sora", "Segoe UI", sans-serif;
  text-align: center;
  font-weight: 800;
  padding: 13px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(32, 109, 170, 0.45);
  z-index: 50;
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.7s ease forwards;
}

.reveal-delay {
  animation-delay: 0.18s;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 880px) {
  .hero {
    padding-top: 84px;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .visual-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .mobile-cta {
    display: none;
  }

  .footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 879px) {
  .lead-card {
    margin-top: 8px;
  }
}
