:root {
  --blue: #07387f;
  --blue-2: #0b5fb8;
  --green: #12a875;
  --green-2: #0d7d5c;
  --ink: #16202d;
  --muted: #5e6875;
  --line: #dbe4ea;
  --soft: #eef6f3;
  --paper: #ffffff;
  --warm: #f6f1e8;
  --shadow: 0 18px 50px rgba(7, 56, 127, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 228, 234, 0.8);
}

.brand img {
  width: 176px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
}

nav a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: white;
  background: var(--green-2);
  box-shadow: 0 12px 24px rgba(13, 125, 92, 0.22);
}

.button.secondary {
  color: var(--blue);
  background: #e7f0f8;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 82px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 6vw, 88px) clamp(34px, 5vw, 70px);
  background:
    linear-gradient(110deg, rgba(238, 246, 243, 0.96) 0%, rgba(255, 255, 255, 0.96) 52%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #344252;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  gap: 10px;
  color: var(--muted);
}

.hero-metrics span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics strong {
  color: var(--blue);
}

.hero-media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-media img {
  width: min(520px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(7, 56, 127, 0.16));
}

.price-tag {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: min(250px, 64%);
  padding: 18px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.price-tag span,
.old-price {
  display: block;
  color: #b8c7d8;
  text-decoration: line-through;
}

.price-tag strong {
  display: block;
  margin-top: 4px;
  font-size: 1.45rem;
}

.logos {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  padding: 28px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}

.logos img {
  width: 220px;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

.logos p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 900;
}

section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 88px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.pain {
  background: var(--paper);
}

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

.pain-grid article,
.audience-grid article,
.trust-grid article,
.price-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.pain-grid article {
  background: #f8fbfd;
}

.pain-grid span {
  color: var(--green-2);
  font-weight: 900;
}

article p,
.solution-copy p,
.b2b-copy p,
.video-band p,
.order p,
.faq p {
  color: var(--muted);
  line-height: 1.62;
}

.solution {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--soft);
}

.solution-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 13px 14px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: white;
  color: #2a3542;
  font-weight: 700;
}

.method {
  background: var(--blue);
}

.method h2 {
  color: white;
}

.method-strip {
  max-width: 1160px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.method-strip span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 800;
}

.video-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--warm);
}

.video-band video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #dce3e8;
  box-shadow: var(--shadow);
}

.audiences {
  background: white;
}

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

.audience-grid article {
  min-height: 160px;
  padding: 20px;
}

.offer {
  background: #f7fafc;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(22, 32, 45, 0.06);
}

.price-card.featured {
  border-color: rgba(18, 168, 117, 0.7);
  box-shadow: var(--shadow);
}

.plan {
  margin: 0;
  color: var(--green-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card .price {
  margin: 0;
  color: var(--blue);
  font-size: 2.3rem;
  font-weight: 900;
}

.price-card .button {
  margin-top: auto;
}

.b2b {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--blue);
  color: white;
}

.b2b h2,
.b2b h3 {
  color: white;
}

.b2b p {
  color: rgba(255, 255, 255, 0.76);
}

.b2b-table {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.b2b-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.b2b-table div:last-child {
  border-bottom: 0;
}

.b2b-table strong {
  color: #9af0ce;
}

.trust {
  background: white;
}

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

.trust-grid article {
  min-height: 190px;
}

.faq {
  background: #f7fafc;
}

details {
  max-width: 980px;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.order {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(26px, 5vw, 70px);
  background: var(--soft);
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfcfd;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer img {
  width: 170px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

footer a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .hero,
  .solution,
  .video-band,
  .b2b,
  .order {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 380px;
  }

  .audience-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  nav {
    display: none;
  }

  .brand img {
    width: 148px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .price-tag {
    left: 0;
    right: auto;
    bottom: 0;
  }

  .logos {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .pricing-grid,
  .audience-grid,
  .trust-grid,
  .method-strip {
    grid-template-columns: 1fr;
  }

  .pain-grid article,
  .audience-grid article,
  .trust-grid article,
  .price-card {
    min-height: auto;
  }
}
