:root {
  --orange: #ed3500;
  --orange-soft: #fff0e9;
  --green: #0f7a3f;
  --green-soft: #e8f7ee;
  --ink: #071426;
  --muted: #62708a;
  --line: #eaded8;
  --paper: #fffdfb;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(20, 28, 45, 0.12);
  font-family: Inter, "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 0%, rgba(237, 53, 0, 0.13), transparent 34rem),
    linear-gradient(180deg, #fffaf6 0%, #fffdfb 38%, #f9fbf7 100%);
}

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(237, 53, 0, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(20, 28, 45, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

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

.brand span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 12px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.secondary-cta:hover {
  background: #fff4ee;
  color: var(--orange);
}

.header-cta,
.primary-cta,
.band-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #ff6b1f, var(--orange));
  box-shadow: 0 16px 34px rgba(237, 53, 0, 0.24);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  white-space: nowrap;
}

.primary-cta,
.band-cta {
  min-height: 58px;
  padding: 0 28px;
  font-size: 16px;
}

.header-cta:hover,
.primary-cta:hover,
.band-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(237, 53, 0, 0.32);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100svh - 112px);
  padding: 64px 0 42px;
}

.hero-section::before {
  position: absolute;
  top: 30px;
  right: -12px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(15, 122, 63, 0.13), rgba(237, 53, 0, 0.08));
  content: "";
  filter: blur(2px);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #9bf2bc;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

h1::after {
  display: block;
  width: 170px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  content: "";
}

.hero-lead {
  max-width: 650px;
  color: #31405a;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 650;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(20, 28, 45, 0.08);
}

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 122, 63, 0.16);
  border-radius: 16px;
  color: #1d5d38;
  background: rgba(232, 247, 238, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.form-notice {
  max-width: 560px;
  margin: 18px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(237, 53, 0, 0.2);
  border-radius: 16px;
  color: #a72a00;
  background: #fff3ec;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #13a45a;
  box-shadow: 0 0 0 8px rgba(19, 164, 90, 0.12);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.hero-visual img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  max-height: min(76svh, 720px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 58px rgba(20, 28, 45, 0.13));
}

.trust-strip,
.content-section,
.steps-section,
.faq-section,
.cta-band {
  margin-bottom: 34px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(20, 28, 45, 0.08);
}

.trust-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 950;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.content-section,
.steps-section,
.faq-section {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 60px rgba(20, 28, 45, 0.08);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
}

.section-heading h2,
.cta-band h2 {
  margin-bottom: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.cta-band p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.7;
}

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

.benefit-card,
.steps-grid article,
.faq-list details {
  border: 1px solid #eee1dc;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fffaf7);
}

.benefit-card {
  padding: 26px;
}

.icon-bubble {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 20px;
  color: white;
  font-size: 25px;
  font-weight: 950;
}

.icon-bubble.green {
  background: linear-gradient(135deg, var(--green), #1ab764);
}

.icon-bubble.orange {
  background: linear-gradient(135deg, #ff7a1a, var(--orange));
}

.benefit-card h3,
.steps-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 950;
}

.benefit-card p,
.steps-grid p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 24rem),
    linear-gradient(135deg, #0b5f35, #08442a);
  box-shadow: 0 24px 60px rgba(15, 122, 63, 0.2);
}

.cta-band p {
  color: #d9f7e4;
  margin-bottom: 0;
}

.band-cta {
  flex: 0 0 auto;
  min-width: 188px;
}

.steps-grid article {
  padding: 26px;
}

.steps-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
}

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

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 950;
}

.faq-list p {
  margin-top: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 10px auto 26px;
  padding: 24px;
  color: var(--muted);
  font-weight: 800;
}

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

@media (max-width: 960px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 760px);
  }

  .brand img {
    width: 130px;
  }

  .brand span,
  .nav-links {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    width: min(100%, 520px);
    max-height: none;
  }

  .trust-strip,
  .benefit-grid,
  .steps-grid,
  .section-heading {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 100% 0%, rgba(237, 53, 0, 0.15), transparent 22rem),
      linear-gradient(180deg, #fffaf6 0%, #fffdfb 46%, #f9fbf7 100%);
  }

  main,
  .site-footer {
    width: min(100% - 20px, 430px);
  }

  .site-header {
    padding: 10px 12px;
    border-radius: 20px;
  }

  .brand img {
    width: 118px;
    height: 42px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-section {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 58px);
  }

  .hero-actions {
    display: grid;
  }

  .primary-cta,
  .secondary-cta,
  .band-cta {
    width: 100%;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .hero-visual img {
    width: min(100%, 360px);
  }

  .trust-strip,
  .benefit-grid,
  .steps-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .content-section,
  .steps-section,
  .faq-section,
  .cta-band {
    padding: 24px;
    border-radius: 24px;
  }

  .section-heading {
    gap: 14px;
  }

  .section-heading h2,
  .cta-band h2 {
    font-size: 32px;
  }
}
