@font-face {
  font-family: "Roboto";
  src: url("static/fonts/roboto-v50-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("static/fonts/roboto-v50-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("static/fonts/roboto-v50-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #1b2230;
  --muted: #546075;
  --paper: #f7f3ee;
  --sand: #e7ddd0;
  --ocean: #1d3f5e;
  --accent: #b48c57;
  --mist: #e7f0f4;
  --warm: #f3e6d7;
  --card: #ffffff;
  --radius: 20px;
  --shadow: 0 30px 80px rgba(27, 34, 48, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 244, 230, 0.9) 0%, rgba(255, 244, 230, 0) 45%),
    radial-gradient(circle at 90% 0%, rgba(230, 242, 255, 0.8) 0%, rgba(230, 242, 255, 0) 40%),
    linear-gradient(120deg, #fdf9f4 0%, #f5eee6 55%, #efe6da 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(27, 34, 48, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 34, 48, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
}

h1,
h2,
h3 {
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem 0;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1.2rem 0;
  color: var(--muted);
}

a {
  color: var(--ocean);
  text-decoration: none;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy {
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
}

.ribbon {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 1.4rem 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff7ed 0%, var(--mist) 100%);
  border: 1px solid rgba(27, 34, 48, 0.08);
  color: var(--ocean);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-ribbon {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, #fff8f1 0%, #f1e8dc 100%);
  border: 1px solid rgba(27, 34, 48, 0.08);
  width: fit-content;
  margin: 16px 0 24px;
  position: relative;
}

.process-ribbon::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(44, 107, 135, 0.2) 0%, rgba(180, 140, 87, 0.25) 100%);
  transform: translateY(-50%);
}

.process-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(27, 34, 48, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean);
}

.process-node::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(180, 140, 87, 0.25);
  border: 2px solid rgba(180, 140, 87, 0.55);
  display: inline-block;
}

.section-header {
  max-width: 680px;
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 34, 48, 0.08);
}

.card--offer {
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, #f2d7b1 0%, #8bb9c8 100%) border-box;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(180, 140, 87, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem 0;
  color: var(--muted);
}

.tag {
  font-weight: 600;
  color: var(--ocean);
  margin: 0;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d3f5e 0%, #2c6b87 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 30px rgba(29, 63, 94, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(29, 63, 94, 0.3);
}

.section {
  padding: 70px 0;
  position: relative;
}

main .section {
  border-top: 1px solid rgba(27, 34, 48, 0.08);
}

main .section:first-of-type {
  border-top: none;
}

.accent {
  background: transparent;
}

.accent > .container,
.cta > .container {
  position: relative;
  z-index: 1;
}


.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.split--center {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.split--center > * {
  flex: 1 1 260px;
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: linear-gradient(135deg, #fffaf4 0%, #f7efe6 100%);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(27, 34, 48, 0.08);
  box-shadow: 0 15px 30px rgba(27, 34, 48, 0.08);
  color: var(--muted);
  font-weight: 500;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  color: var(--muted);
  max-width: 440px;
  justify-self: center;
}

.checklist li {
  padding-left: 34px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(180, 140, 87, 0.15);
  border: 1px solid rgba(180, 140, 87, 0.35);
}

.checklist li::after {
  content: "\2713";
  position: absolute;
  left: 4px;
  top: 1px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.steps {
  display: grid;
  gap: 18px;
  position: relative;
  margin-top: 12px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(44, 107, 135, 0.2) 0%, rgba(180, 140, 87, 0.25) 100%);
}

.step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  background: linear-gradient(135deg, #ffffff 0%, #f9f2e8 100%);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(27, 34, 48, 0.08);
  position: relative;
  z-index: 1;
}

.step-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(44, 107, 135, 0.55);
  box-shadow: 0 0 0 6px rgba(180, 140, 87, 0.14);
  margin-top: 6px;
}

.form-wrap {
  background: var(--card);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, #f2d7b1 0%, #8bb9c8 100%) border-box;
}

.cta {
  background: transparent;
  position: relative;
}

.cta-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.cta-copy {
  max-width: 420px;
}

.faq {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(27, 34, 48, 0.08);
  box-shadow: 0 12px 30px rgba(27, 34, 48, 0.08);
}

.faq-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin-bottom: 0;
}

form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(27, 34, 48, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(29, 63, 94, 0.2);
  border-color: rgba(29, 63, 94, 0.4);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.consent input {
  margin-top: 4px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  color: var(--ocean);
  font-weight: 600;
}

.footer {
  padding: 50px 0;
  border-top: 1px solid rgba(27, 34, 48, 0.12);
  background: #f9f6f1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  margin-right: 16px;
  font-weight: 600;
}

.legal {
  background: #fdfbf8;
  padding-top: 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 70px 0 50px;
  }

  .btn {
    width: 100%;
  }

  .process-ribbon {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
  }

  .process-ribbon::after {
    display: none;
  }

  .steps::before {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
