* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1b1a;
  --muted: #5f5a56;
  --accent: #d34c2d;
  --accent-soft: #ffe3d8;
  --sage: #e9efe8;
  --sand: #f7f3ee;
  --charcoal: #2d2a28;
  --cream: #fffaf5;
}

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw;
}

.nav-brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 180px;
}

.section {
  padding: 56px 6vw;
  position: relative;
}

.section-tight {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section-sand {
  background: var(--sand);
}

.section-sage {
  background: var(--sage);
}

.section-dark {
  background: var(--charcoal);
  color: #f5efe9;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-panel {
  background: var(--accent-soft);
  border-radius: 28px;
  padding: 24px;
  position: relative;
}

.hero-panel img {
  border-radius: 24px;
}

.offset-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  top: -28px;
  margin-left: auto;
  max-width: 360px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: #1f1c1a;
  color: #fff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1d1b1a;
  color: #fff;
  font-size: 0.9rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7ded5;
  font-size: 0.85rem;
}

.stagger {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stagger .card:nth-child(2) {
  margin-left: 12vw;
}

.stagger .card:nth-child(3) {
  margin-right: 10vw;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8cfc5;
  font-family: inherit;
  font-size: 1rem;
}

.section-overlay {
  position: absolute;
  right: -40px;
  top: 20px;
  width: 140px;
  opacity: 0.35;
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: none;
  z-index: 20;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.centered {
  max-width: 720px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.list span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.list span::before {
  content: "•";
  color: var(--accent);
}

.policy {
  max-width: 820px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split-reverse {
    flex-direction: row;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero > div {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }
}
