:root {
  --green-700: #0f7a4f;
  --green-500: #26a365;
  --green-100: #e9f5ef;
  --teal-500: #0f8f8f;
  --gray-900: #0d1b1e;
  --gray-700: #304249;
  --gray-500: #5f737b;
  --gray-200: #e6edef;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(13, 27, 30, 0.12);
  --shadow-card: 0 20px 40px rgba(15, 122, 79, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: inherit; background: #f7fbf8; color: var(--gray-900); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 4vw;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
  backdrop-filter: blur(8px);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand .logo-main { height: 64px; width: auto; border-radius: 10px; }
.brand__text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text { display: inline-flex; align-items: center; font-size: 1rem; font-weight: 800; letter-spacing: 0.02em; color: #1c8acb; white-space: nowrap; }
.brand__tagline { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: #7bc043; white-space: nowrap; }

.nav { display: inline-flex; gap: 1rem; font-weight: 600; color: var(--gray-700); justify-content: center; }
.nav a { padding: 0.45rem 0.6rem; border-radius: 10px; transition: color 0.2s, background 0.2s; }
.nav a:hover { color: var(--green-700); background: var(--green-100); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.btn--primary { background: linear-gradient(120deg, var(--green-700), var(--green-500)); color: var(--white); box-shadow: var(--shadow-card); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(15,122,79,0.25); }
.btn--ghost { background: transparent; color: var(--green-700); border-color: rgba(15,122,79,0.25); }
.btn--ghost:hover { background: var(--green-100); }

.nav-toggle { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--gray-900); transition: 0.3s; }

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 3rem;
  padding: 6rem 4vw 4.5rem;
  background: radial-gradient(circle at 12% 20%, rgba(15,122,79,0.08), transparent 28%),
              radial-gradient(circle at 80% 10%, rgba(15,143,143,0.10), transparent 30%),
              linear-gradient(135deg, #f5fbf7 0%, #f0faf5 100%);
}

.hero__content h1 { font-size: clamp(2.4rem, 4vw, 3.4rem); margin: 0.3rem 0 0.6rem; letter-spacing: -0.02em; }
.hero__content .lede { font-size: 1.1rem; color: var(--gray-700); max-width: 640px; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.4rem 0 1rem; }
.pill-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-list li { background: var(--green-100); color: var(--green-700); padding: 0.55rem 0.9rem; border-radius: 999px; font-weight: 600; }

.hero__visual { justify-self: center; }
.poster-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--white); }
.poster-card img { display: block; width: min(480px, 90vw); height: auto; }
.poster-card__badge { position: absolute; top: 16px; right: 16px; background: var(--green-700); color: var(--white); padding: 0.6rem 0.9rem; border-radius: 999px; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.12); }

.section { padding: 4.5rem 4vw; }
.section--light { background: #ffffff; }
.section--appeal { background: #f0faf5; }
.section--contact { background: linear-gradient(135deg, #0f7a4f 0%, #0f8f8f 100%); color: var(--white); }

.section__header { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.section__header h2 { margin: 0.3rem 0 0.6rem; font-size: clamp(2rem, 3vw, 2.6rem); }
.section__lede { color: var(--gray-700); line-height: 1.6; margin: 0; }
.section--contact .section__lede { color: rgba(255,255,255,0.82); }

.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; font-size: 0.85rem; color: var(--green-700); margin: 0; }
.section--contact .eyebrow { color: rgba(255,255,255,0.82); }

.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.card h3 { margin-top: 0; margin-bottom: 0.4rem; }
.card p { margin: 0; color: var(--gray-700); line-height: 1.5; }
.card--minimal { text-align: center; padding: 1.75rem 1.3rem; }
.icon-circle { width: 52px; height: 52px; margin: 0 auto 0.75rem; border-radius: 50%; background: var(--green-100); display: grid; place-items: center; font-size: 1.4rem; }

.section--appeal .section__inner { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: center; }
.appeal__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); background: var(--white); }
.appeal__content h2 { margin: 0.2rem 0 0.6rem; font-size: clamp(1.9rem, 2.8vw, 2.4rem); }
.appeal__content .lede { color: var(--gray-700); margin: 0 0 1rem; line-height: 1.6; }
.appeal__body { margin: 1rem 0 1.5rem; display: grid; gap: 0.85rem; color: var(--gray-700); line-height: 1.6; }
.appeal__body .appeal__items { font-weight: 700; }
.appeal__body .note { font-style: italic; color: var(--gray-500); margin-top: -0.4rem; }
.checklist { list-style: none; padding: 0; margin: 1rem 0 1.5rem; color: var(--gray-700); }
.checklist li { position: relative; padding-left: 26px; margin-bottom: 0.8rem; }
.checklist li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--green-700); font-weight: 800; }
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }

.section--contact { border-top-left-radius: 30px; border-top-right-radius: 30px; margin-top: 1rem; padding-top: 2.2rem; padding-bottom: 2.2rem; box-shadow: 0 -12px 36px rgba(0,0,0,0.08); }
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.9rem; align-items: stretch; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; align-items: start; }
.contact-list li { line-height: 1.4; }
.contact-list span { display: block; font-weight: 700; margin-bottom: 0.2rem; }
.contact-list a { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.45); }
.contact__block { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 0.9rem 1.1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.08); height: 100%; display: grid; gap: 0.35rem; text-align: center; justify-items: center; }
.contact__block h3 { margin: 0 0 0.35rem; letter-spacing: 0.04em; }
.contact__single { display: grid; gap: 0.3rem; }
.social-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.social-list a { color: var(--white); font-weight: 700; }
.contact__cta { margin-top: 0.8rem; display: grid; gap: 0.5rem; }

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 2rem 4vw 2.4rem;
  background: var(--green-700);
  color: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__brand { display: flex; gap: 0.85rem; align-items: center; justify-content: center; text-align: left; }
.footer__brand img { height: 56px; width: auto; border-radius: 10px; }
.brand__text { margin: 0; font-weight: 700; }
.footer__brand-name { text-transform: uppercase; color: #1c8acb; font-size: 1.1rem; font-weight: 800; letter-spacing: 0.02em; }
.footnote { margin: 0; color: rgba(255,255,255,0.75); }
.footnote--tagline { color: #7bc043; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.8rem; }
.footer__middle { text-align: center; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.footer__middle a { color: #ffffff; text-decoration: none; transition: color 0.2s ease; }
.footer__middle a:hover { color: var(--green-500); }
.footer__cta p { margin: 0 0 0.35rem; font-weight: 700; }
.footer__cta { display: grid; justify-items: center; text-align: center; gap: 0.45rem; }
.footer__cta .btn { width: fit-content; min-width: 160px; }

@media (max-width: 900px) {
  .topbar { grid-template-columns: auto 1fr auto; }
  .brand__text { display: inline-flex; font-size: 0.95rem; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); padding: 0.8rem 1.2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); flex-direction: column; }
  .nav a { padding: 0.75rem 0.5rem; }
  .nav.show { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .topbar { grid-template-columns: auto auto; gap: 0.9rem; padding: 0.75rem 4vw; }
  .btn--primary, .btn--ghost { padding: 0.7rem 0.95rem; font-size: 0.95rem; }
  .hero { padding-top: 4rem; padding-bottom: 3.2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .pill-list { gap: 0.4rem; }
  .section { padding: 3.2rem 4vw; }
  .section__header { margin-bottom: 2rem; }
  .poster-card img { width: 100%; }
  .footer { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 1.4rem; }
  .footer__brand { justify-content: center; }
  .footer__cta { justify-items: center; }
  .footer__middle { order: 3; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__block { text-align: center; }
}
