:root {
  color-scheme: light;
  --green: #2b5434;
  --dark: #101828;
  --text: #4a5565;
  --muted: #6a7282;
  --cream: #f5f5f0;
  --border: #f3f4f6;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  color: var(--dark);
  margin: 0 0 12px;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.25rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 2.4vw, 1.9rem);
  text-align: center;
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 56px 0;
}

.section-lead {
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 32px;
  height: 22px;
}

.logo-word {
  height: 22px;
}

.logo-image {
  height: 32px;
  width: auto;
  display: block;
  padding-left: 8px;
}

.menu-button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  display: grid;
  gap: 5px;
  padding: 9px 10px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
}

.hero {
  padding-top: 32px;
}

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero-copy .lead {
  font-size: 1.05rem;
}

.pill-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.pill {
  background: var(--cream);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #0a0a0a;
  font-weight: 600;
}

.pill img {
  width: 24px;
  height: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  height: 360px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 84, 52, 0.3), rgba(0, 0, 0, 0));
}

.highlights {
  background: var(--cream);
}

.highlights-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.highlight-card {
  text-align: center;
}

.highlight-card img {
  margin: 0 auto 12px;
  width: 32px;
  height: 32px;
}

.about p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.benefits {
  padding-top: 40px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.info-card img {
  width: 32px;
  height: 32px;
}

.process {
  background: var(--cream);
}

.step-list {
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.step-time {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}

.note {
  margin-top: 24px;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid #e5e7eb;
}

.details p,
.details .cta-text {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.cta-text {
  font-weight: 600;
  color: var(--dark);
}

.practical .bullet-list {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 20px;
}

.bullet-list li {
  margin-bottom: 12px;
}

.price-card {
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 20px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.price-card li img {
  width: 20px;
  height: 20px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.gift-link {
  color: var(--green);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 18px;
  background: var(--white);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 500;
  color: #0a0a0a;
  position: relative;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.25rem;
  color: var(--text);
}

details[open] summary::after {
  content: "−";
}

details p {
  padding-bottom: 16px;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-card img {
  width: 24px;
  height: 24px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}

.footer-links,
.footer-social {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-social a {
  color: var(--text);
  font-size: 0.95rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 24px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .highlights-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step {
    grid-template-columns: 56px 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    height: 420px;
  }
}
