:root {
  --blue: #1884ca;
  --dark-blue: #0b3f66;
  --navy: #0f2236;
  --green: #28b463;
  --cream: #f6fbff;
  --white: #ffffff;
  --text: #203040;
  --muted: #617282;
  --line: rgba(15, 34, 54, 0.12);
  --shadow: 0 24px 70px rgba(15, 34, 54, 0.18);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

a { color: inherit; }

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

.site-header {
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
  color: var(--white);
  padding: 18px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  opacity: 0.82;
  font-size: 0.78rem;
  margin-top: 4px;
}

.review-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.stars {
  color: #ffd45a;
  letter-spacing: 1px;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(135deg, #eaf7ff 0%, #ffffff 42%, #eaf7ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -180px -260px auto;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(24, 132, 202, 0.10);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 48px;
  align-items: start;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

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

.hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  color: var(--navy);
}

.lead {
  max-width: 700px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
}

.benefits {
  display: grid;
  gap: 16px;
}

.benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.tick {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(40, 180, 99, 0.12);
  color: var(--green);
  font-weight: 900;
  font-size: 1.3rem;
}

.benefit h2 {
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.benefit p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.form-card {
  position: sticky;
  top: 24px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(24, 132, 202, 0.10);
}

.form-card-header {
  margin-bottom: 16px;
}

.form-card h2 {
  color: var(--navy);
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.form-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.supplier-section {
  padding: 42px 0;
  background: var(--navy);
  color: var(--white);
}

.supplier-section .section-kicker {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.9rem;
}

.why {
  padding: 78px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 48px;
  align-items: center;
}

.why h2,
.cta-band h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.why p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.checklist-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(24, 132, 202, 0.12);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}

.checklist li {
  position: relative;
  padding-left: 34px;
  line-height: 1.55;
  font-weight: 600;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--green);
  font-weight: 900;
}

.cta-band {
  padding: 44px 0;
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.button {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.site-footer {
  padding: 32px 0;
  background: #071827;
  color: rgba(255, 255, 255, 0.78);
}

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

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .nav,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-strip {
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .form-card,
  .checklist-card {
    padding: 22px;
  }

  .benefit {
    grid-template-columns: 34px 1fr;
    padding: 16px;
  }

  .tick {
    width: 34px;
    height: 34px;
  }

  .logo-row span {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}
