* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1f1c;
  --muted: #5b6b68;
  --leaf: #1f7a53;
  --moss: #2f8a64;
  --mist: #eef3f1;
  --sun: #f5c069;
  --stone: #e2e7e4;
  --shadow: 0 20px 50px rgba(15, 31, 28, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fafbfa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--leaf), var(--sun));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 6vw 80px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 540px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.floating-tag {
  position: absolute;
  top: 16px;
  left: -20px;
  background: var(--sun);
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section-muted {
  background: var(--mist);
}

.section-stone {
  background: var(--stone);
}

.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.asym.reverse {
  flex-direction: row-reverse;
}

.asym .text {
  flex: 1 1 320px;
  max-width: 520px;
}

.asym .panel {
  flex: 1 1 300px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.offset-card {
  margin-top: -60px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 160px;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-gap {
  margin-top: 18px;
}

.button {
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--leaf);
  border: 1px solid var(--leaf);
}

.inline-link {
  color: var(--moss);
  font-weight: 600;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(15, 31, 28, 0.2);
  padding-bottom: 12px;
}

.pricing-item span {
  color: var(--muted);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 280px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7e0db;
  margin-bottom: 16px;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  margin-left: auto;
  width: fit-content;
  background: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f1f1c;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer a {
  color: #cfe4dd;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.subtle {
  color: var(--muted);
  font-size: 0.95rem;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 122, 83, 0.12);
  color: var(--leaf);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-slice {
  background: linear-gradient(135deg, rgba(31, 122, 83, 0.1), rgba(245, 192, 105, 0.3));
  border-radius: 28px;
  padding: 18px;
}

.highlight {
  color: var(--leaf);
  font-weight: 600;
}

.stacked-note {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  margin-top: 16px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
  }

  .floating-tag {
    left: 0;
  }
}
