* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #5a6a6f;
  --accent: #ff5b3d;
  --accent-soft: #ffd7cf;
  --forest: #0f3b2f;
  --sand: #f6f1ea;
  --mist: #e4eceb;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  overflow-x: hidden;
}

header {
  padding: 28px 6vw 0;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-toggle {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.nav-links a {
  font-size: 0.95rem;
}

.nav-links.is-open {
  display: flex;
}

.cta-link {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.soft {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.dark {
  background: var(--forest);
  color: #f9f7f3;
}

.section.dark a {
  color: #f9f7f3;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
}

.lede {
  font-size: 1.1rem;
  max-width: 620px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  align-self: flex-start;
  margin-left: 4vw;
  max-width: 420px;
}

.accent-block {
  position: absolute;
  right: 0;
  top: 20px;
  width: 120px;
  height: 120px;
  background: var(--accent-soft);
  border-radius: 24px 0 24px 24px;
  z-index: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn.ghost {
  background: transparent;
  border: 1px solid currentColor;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9d3d1;
  font-size: 1rem;
  background: #ffffff;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.banner.is-visible {
  display: flex;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer {
  padding: 60px 6vw;
  background: #101a1c;
  color: #dce5e3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer a {
  color: #dce5e3;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  header {
    padding: 32px 8vw 0;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    margin-top: 0;
    gap: 20px;
  }

  .nav-toggle {
    display: none;
  }

  .section {
    padding: 90px 8vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .two-col {
    flex-direction: row;
  }
}
