* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f2ea;
  --ink: #1f2a2e;
  --muted: #5b6a73;
  --accent: #1b7f6a;
  --accent-dark: #0f5c4d;
  --sand: #eadfcf;
  --sun: #f6c06a;
  --shadow: 0 18px 40px rgba(17, 26, 31, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 8vw 12px;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 8vw 20px;
  position: relative;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn.light {
  background: white;
  color: var(--accent-dark);
  border-color: white;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 8vw;
}

.section.alt {
  background: var(--sand);
}

.section.sun {
  background: var(--sun);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  align-self: flex-start;
  background: rgba(27, 127, 106, 0.12);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: white;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd4d8;
  font-size: 15px;
  background: white;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 18px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 8vw 60px;
  background: #0f1b1f;
  color: #d7e1e4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  padding: 16px;
  border-radius: 16px;
  background: #fff9ef;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

@media (min-width: 880px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card,
  .hero-image {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }
}
