:root {
  --background: #ffffff;
  --foreground: #02072d;
  --muted: #596070;
  --brand: #f24855;
  --accent: #02072d;
  --soft: #fff0f2;
  --surface: #ffffff;
  --line: rgba(2, 7, 45, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

.hero {
  background: var(--brand);
  color: #ffffff;
  min-height: 90vh;
  padding: clamp(30px, 5vw, 54px) clamp(18px, 4vw, 64px) 76px;
}

.heroGrid,
.section,
.band,
.contact,
.footer,
.policy {
  max-width: 1160px;
  margin: 0 auto;
}

.heroCopy {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}

.heroLogo {
  border-radius: 8px;
  display: inline-flex;
  margin-bottom: clamp(26px, 4vw, 38px);
  overflow: hidden;
}

.heroLogo img {
  display: block;
  height: clamp(180px, 22vw, 238px);
  object-fit: contain;
  width: clamp(180px, 22vw, 238px);
}

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

h1 {
  font-size: clamp(3rem, 5.7vw, 5.05rem);
  line-height: 0.96;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  margin-bottom: 0;
}

.lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.65;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.heroActions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.section {
  padding: 86px clamp(18px, 4vw, 64px);
}

.featureGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.featureCard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.featureCard h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.featureCard p,
.contact p,
.policy p {
  color: var(--muted);
  line-height: 1.7;
}

.band {
  align-items: start;
  background: var(--accent);
  color: #ffffff;
  display: grid;
  gap: 44px;
  grid-template-columns: 0.9fr 1fr;
  padding: 72px clamp(18px, 4vw, 64px);
}

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

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  counter-increment: step;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 22px 0 22px 64px;
  position: relative;
}

.steps li::before {
  color: var(--brand);
  content: counter(step, decimal-leading-zero);
  font-weight: 900;
  left: 0;
  position: absolute;
}

.contact {
  align-items: center;
  background: var(--soft);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 70px clamp(18px, 4vw, 64px);
}

.contact > div {
  max-width: 720px;
}

.footer {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.95rem;
  font-weight: 800;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 64px);
}

.footer a {
  color: var(--brand);
}

.policyPage {
  background: #fff7f8;
  min-height: 100vh;
  padding: 28px clamp(18px, 4vw, 64px) 90px;
}

.policy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 70px);
}

.policy h1 {
  color: var(--foreground);
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 880px;
}

.updated {
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  padding-bottom: 26px;
}

.policy section {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.policy section:last-child {
  border-bottom: 0;
}

.policy h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.policy a {
  color: var(--brand);
  font-weight: 900;
}

@media (max-width: 860px) {
  .heroActions,
  .contact,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .band,
  .featureGrid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3.25rem;
  }

  .button {
    width: 100%;
  }
}
