* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #eef3ef;
  --white: #ffffff;
  --text: #1f2a24;
  --muted: #5e6b63;
  --green: #56d28d;
  --green-dark: #169779;
  --green-deep: #0f7f67;
  --green-soft: #dff7e8;
  --line: rgba(19, 54, 42, 0.08);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(238, 243, 239, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 900;
  letter-spacing: 1.4px;
  color: var(--green-deep);
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--green-deep);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--green-deep);
}

.hero {
  padding: 56px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 9ch;
}

.hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-actions.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--green-dark);
  color: white;
}

.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  transform: translateY(-1px);
}

.hero-mini-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-mini-points span {
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.promo-panel {
  width: min(100%, 430px);
  background: var(--green);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 14px 14px 0;
}

.promo-shot {
  position: relative;
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
}

.promo-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-shot span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: rgba(18, 54, 43, 0.7);
  color: white;
  border-radius: 999px;
  padding: 6px 8px;
  font-size: 0.72rem;
  text-align: center;
}

.promo-content {
  padding: 24px 22px 20px;
  text-align: center;
}

.promo-content h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 0.96;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 10px;
}

.promo-content p {
  color: rgba(24, 36, 32, 0.8);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  background: white;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.promo-footer {
  min-height: 58px;
  background: var(--green-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-weight: 700;
}

.arrow {
  font-size: 1.8rem;
  line-height: 1;
}

.feature-band {
  padding: 0 0 12px;
}

.feature-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-band-grid > div {
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--green-deep);
}

.section {
  padding: 84px 0;
}

.alt {
  background: linear-gradient(180deg, rgba(223,247,232,0.55), rgba(255,255,255,0.6));
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card,
.savings-card,
.status-card,
.support-box {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card {
  border-radius: 22px;
  padding: 26px;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-soft);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.info-card p {
  color: var(--muted);
}

.progress-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.progress-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 14px;
}

.progress-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.progress-panel {
  display: grid;
  gap: 18px;
}

.status-card {
  border-radius: 22px;
  padding: 22px;
}

.status-card.large {
  padding: 26px;
}

.status-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 7px 12px;
  border-radius: 999px;
}

.progress-bar {
  width: 100%;
  height: 14px;
  background: #e9eeea;
  border-radius: 999px;
  overflow: hidden;
  margin: 16px 0 12px;
}

.progress-fill {
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: inherit;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.status-stack {
  display: grid;
  gap: 18px;
}

.savings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.savings-card {
  border-radius: 22px;
  padding: 26px;
}

.savings-card.highlight {
  background: linear-gradient(180deg, var(--green), #8be2b1);
}

.savings-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.savings-card p {
  color: rgba(31, 42, 36, 0.82);
}

.support-box {
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
}

.support-box h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  margin-bottom: 14px;
}

.support-box p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.site-footer {
  padding: 26px 0 36px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero-grid,
  .progress-grid,
  .card-grid,
  .savings-grid,
  .feature-band-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 14px;
    flex-direction: column;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    padding-top: 34px;
  }

  .promo-shot {
    height: 120px;
  }

  .section {
    padding: 68px 0;
  }

  .container {
    width: min(100% - 20px, 1180px);
  }
}