* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a24;
  --muted: #5a6b60;
  --accent: #e0794a;
  --accent-dark: #b85d35;
  --paper: #f7f4ef;
  --leaf: #8ab18f;
  --shadow: 0 20px 40px rgba(20, 29, 24, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 32px 0 120px;
}

section {
  position: relative;
}

.section-contrast {
  background: #ffffff;
  padding: 48px 0;
}

.section-muted {
  background: #f0ece5;
  padding: 48px 0;
}

.section-outline {
  border-top: 1px solid #e0dbd1;
  border-bottom: 1px solid #e0dbd1;
  padding: 48px 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 4%;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card h1 {
  font-size: clamp(2.2rem, 2.8vw, 3.4rem);
  line-height: 1.1;
}

.hero-card p {
  color: var(--muted);
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.magazine-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.split .image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(138, 177, 143, 0.2);
  color: #2d4533;
  font-weight: 600;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  padding: 20px;
  border-left: 4px solid var(--leaf);
  background: #fff;
  border-radius: 12px;
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d8d1;
  font-size: 1rem;
  background: #fafaf8;
}

.footer {
  padding: 40px 4% 60px;
  background: #121815;
  color: #e9efe9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e9efe9;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: min(360px, 90%);
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.meta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.page-hero {
  padding: 48px 0 24px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
  }

  .hero-card {
    flex: 1.2;
  }

  .hero-media {
    flex: 1;
  }

  .magazine-row {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .meta-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .two-col {
    flex-direction: row;
  }
}
