* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1c1a18;
  --muted: #5a554f;
  --accent: #ff6b3d;
  --accent-dark: #c84a22;
  --sun: #f4c255;
  --leaf: #4b6f5b;
  --mist: #e7e2dc;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 8vw 8px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 8vw 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px 12vw auto auto;
  height: 160px;
  width: 160px;
  background: var(--sun);
  border-radius: 32px;
  transform: rotate(8deg);
  z-index: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.ghost {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.section {
  padding: 60px 8vw;
  position: relative;
}

.section.light {
  background: #fff;
}

.section.mist {
  background: var(--mist);
}

.section-offset {
  padding-left: 12vw;
  padding-right: 6vw;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 0 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card em {
  font-style: normal;
  color: var(--accent-dark);
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: var(--muted);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--leaf);
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 22px 40px rgba(28, 26, 24, 0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d0c8;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  z-index: 9;
}

.footer {
  margin-top: auto;
  padding: 32px 8vw 40px;
  background: #13110f;
  color: #fef6ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: #d5c9bf;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.banner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 0.85rem;
}

.offset-block {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  margin-top: -40px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .pricing .card {
    flex: 1 1 240px;
  }

  .banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
