:root {
  color-scheme: light;
  --green-50: #f2f8f3;
  --green-100: #e4f1e9;
  --green-200: #cce3d6;
  --green-300: #9ccbb2;
  --green-400: #4f9e72;
  --green-500: #1f5f3b;
  --cream: #f5f0e6;
  --ink: #10251a;
  --muted: #516258;
  --card-bg: #ffffff;
  --shadow: 0 12px 30px rgba(16, 37, 26, 0.12);
  --radius: 22px;
  --max-width: 1120px;
  font-synthesis-weight: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fdfaf4 0%, #f5f0e6 55%, #efe7d8 100%);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green-300);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  padding: 8px 16px;
  background: var(--green-500);
  color: #fff;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(245, 240, 230, 0.95);
  border-bottom: 1px solid rgba(204, 227, 214, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 6px 14px rgba(31, 95, 59, 0.18);
}

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.primary-nav a {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav button {
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.primary-nav a.active,
.primary-nav a:hover {
  background: var(--green-100);
  color: var(--green-500);
}

.nav-cta {
  background: linear-gradient(120deg, #6bd39a, #8ad9b8);
  color: #0c1f14;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(120deg, #7ee2ad, #a0e5c5);
  color: #0c1f14;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  padding: 64px 0 48px;
}

.hero-grid {
  display: grid;
  gap: 40px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.hero-badges span {
  background: var(--green-200);
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--green-500);
}

.hero-visual {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(156, 203, 178, 0.6);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 8px);
  object-fit: cover;
}


.floating-chicken {
  position: fixed;
  right: 24px;
  bottom: 120px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(79, 158, 114, 0.45);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 10px 12px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.chicken-bubble {
  position: absolute;
  right: 72px;
  bottom: 8px;
  min-width: 260px;
  max-width: 260px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.4;
  white-space: normal;
  text-align: left;
  border: 1px solid var(--green-200);
  box-shadow: var(--shadow);
}

.chicken-bubble::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 16px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-right: 1px solid var(--green-200);
  border-bottom: 1px solid var(--green-200);
  transform: rotate(-45deg);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 37, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(204, 227, 214, 0.8);
  position: relative;
}

.modal h2 {
  margin-top: 8px;
  margin-bottom: 12px;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  border: none;
  background: var(--green-100);
  color: var(--green-500);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-500);
  margin: 12px 0 18px;
  font-weight: 600;
}

.modal-confirm {
  width: 100%;
}

.chicken-icon {
  display: inline-block;
  font-size: 1.6rem;
  transform-origin: 70% 70%;
  animation: chicken-wave 2.4s ease-in-out infinite;
}

@keyframes chicken-wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(12deg);
  }
  50% {
    transform: rotate(-8deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: rgba(236, 246, 239, 0.6);
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--green-500);
  font-weight: 600;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(204, 227, 214, 0.8);
}

.steps {
  display: grid;
  gap: 24px;
}

.content-columns {
  display: grid;
  gap: 24px;
}

.video-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.video-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(204, 227, 214, 0.8);
  box-shadow: var(--shadow);
  padding: 24px;
}

.video-placeholder {
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(79, 158, 114, 0.15), rgba(204, 227, 214, 0.45));
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--green-500);
  font-weight: 600;
}

.video-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--green-300);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.testimonials {
  display: grid;
  gap: 20px;
}

.testimonials blockquote {
  margin: 0 0 12px;
  font-weight: 600;
}

.topic-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.muted {
  color: var(--muted);
}

.step {
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(204, 227, 214, 0.8);
  display: grid;
  gap: 12px;
}

.step p {
  margin: 0;
}

.step ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-400);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--green-200);
  background: #fff;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.highlight-grid,
.future-grid,
.pricing {
  display: grid;
  gap: 32px;
}

.highlight-box {
  background: linear-gradient(120deg, rgba(31, 95, 59, 0.9), rgba(79, 158, 114, 0.9));
  color: #f6fff9;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(79, 158, 114, 0.45);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green-400);
}


.price-card {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(204, 227, 214, 0.8);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 8px 0 16px;
}

.price-card ul {
  padding-left: 18px;
}


.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid details {
  background: var(--card-bg);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(204, 227, 214, 0.8);
}

.sitemap-links {
  display: grid;
  gap: 10px;
}

.site-footer {
  padding: 48px 0 24px;
  background: #0f2e1e;
  color: #f5f7f4;
  border-top: 1px solid rgba(31, 95, 59, 0.5);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
  box-shadow: var(--shadow);
}

.footer-title {
  margin: 0 0 8px;
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: #9bd3b2;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links {
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #3f8f63, #6bcf90);
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: rgba(79, 158, 114, 0.5);
  color: var(--green-500);
}

.btn.ghost:hover {
  background: var(--green-100);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .card-grid,
  .steps,
  .testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlight-grid,
  .future-grid,
  .pricing,
  .content-columns,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .sitemap-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .primary-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    background: var(--card-bg);
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .primary-nav.open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .floating-chicken {
    right: 16px;
    bottom: 90px;
  }

  .chicken-bubble {
    min-width: 240px;
    max-width: 240px;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .floating-chicken {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
  }

  .btn {
    transition: none;
  }

  .chicken-icon {
    animation: none;
  }
}
