:root {
  --navy: #202945;
  --purple: #7700cc;
  --blue: #0047ba;
  --cyan: #00c1de;
  --green: #00ce7c;
  --ink: #142033;
  --muted: #617084;
  --line: #dbe3ee;
  --surface: #f6f9fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(219, 227, 238, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 178px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: #425066;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--blue);
}

.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 750;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  min-height: calc(100vh - 76px - 34px);
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 64px) 44px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f8fbff 0%, #ffffff 54%, #eff8fb 100%);
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(46px, 5.15vw, 72px);
  line-height: 0.98;
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  color: #425066;
  font-size: clamp(18px, 1.65vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--purple));
  box-shadow: 0 18px 42px rgba(0, 71, 186, 0.24);
}

.button.secondary {
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(32, 41, 69, 0.06);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.hero-highlight {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 540px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 206, 124, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-highlight strong {
  color: var(--green);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1;
}

.hero-highlight span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(0, 71, 186, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #334055;
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 41, 69, 0.12);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 30px 68px rgba(32, 41, 69, 0.17);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(32, 41, 69, 0.72)),
    linear-gradient(90deg, rgba(32, 41, 69, 0.1), transparent 45%);
}

.hero-image-card img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
}

.hero-insight-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(360px, calc(100% - 44px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(32, 41, 69, 0.78);
  box-shadow: 0 18px 42px rgba(32, 41, 69, 0.2);
  backdrop-filter: blur(10px);
}

.hero-insight-card img {
  width: 148px;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}

.hero-insight-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-insight-card strong {
  display: block;
  color: white;
  font-size: 21px;
  line-height: 1.2;
}

section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 64px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.pain-section,
.benefits,
.product-section {
  background: var(--white);
}

.pain-grid,
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pain-grid article,
.benefit-list div {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.pain-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--cyan);
  font-weight: 900;
}

.pain-grid p,
.benefit-list p,
.product-copy p,
.lead-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.benefits {
  background:
    linear-gradient(180deg, rgba(0, 193, 222, 0.08), transparent 45%),
    var(--surface);
}

.benefits-layout,
.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: 36px;
}

.benefits-layout .section-heading,
.flow-layout .section-heading {
  margin-bottom: 0;
}

.benefits-image,
.field-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(32, 41, 69, 0.14);
}

.benefits-image {
  border: 1px solid rgba(0, 71, 186, 0.14);
}

.field-image {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-list div {
  background: white;
}

.flow-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 193, 222, 0.17), rgba(119, 0, 204, 0.16)),
    var(--navy);
}

.flow-section h2,
.flow-section .eyebrow {
  color: white;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.flow div {
  min-height: 178px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.flow strong {
  display: block;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 32px;
}

.flow span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.42;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
}

.product-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-copy li {
  padding: 14px 0 14px 30px;
  border-top: 1px solid var(--line);
  color: #334055;
  font-weight: 700;
  position: relative;
}

.product-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.product-gallery {
  display: grid;
  align-items: center;
}

.product-gallery img {
  width: 100%;
  border: 1px solid rgba(32, 41, 69, 0.12);
  border-radius: 8px;
  box-shadow: 0 30px 68px rgba(32, 41, 69, 0.14);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--navy);
}

.proof-band div {
  padding: clamp(28px, 4vw, 54px);
  background: linear-gradient(135deg, rgba(0, 193, 222, 0.08), rgba(119, 0, 204, 0.12));
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 24px;
}

.proof-band span {
  color: rgba(255, 255, 255, 0.72);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--surface);
}

.lead-brand {
  width: 188px;
  margin-bottom: 28px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 22px 50px rgba(32, 41, 69, 0.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #334055;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cad5e3;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.consent input {
  min-height: auto;
  margin-top: 3px;
}

.hp {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  font-weight: 750;
}

.form-message.success {
  color: #08794d;
}

.form-message.error {
  color: #b42318;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 64px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer img {
  width: 170px;
}

.footer a {
  color: white;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .product-section,
  .lead-section,
  .benefits-layout,
  .flow-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image-card img {
    min-height: 420px;
  }

  .pain-grid,
  .benefit-list,
  .flow,
  .proof-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 142px;
  }

  .login-link {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 40px;
  }

  .pain-grid,
  .benefit-list,
  .flow,
  .proof-band,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-image-card img {
    min-height: 320px;
  }

  .hero-insight-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -54px 14px 14px;
  }

  .hero-highlight {
    grid-template-columns: 1fr;
  }

  .hero-chips {
    gap: 8px;
  }

  .hero-chips span {
    min-height: 36px;
    font-size: 13px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
