/* ---------- Brand tokens ---------- */
:root {
    --green: #078244;
    --green-2: #056f3a;
    --cream: #fbf9e9;
    --ink: #0b0f0e;
    --muted: rgba(11, 15, 14, 0.68);
    --border: rgba(11, 15, 14, 0.10);
  
    --radius: 18px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    --shadow2: 0 10px 22px rgba(0, 0, 0, 0.10);
  
    --container: 1120px;
  }
  
  /* ---------- Base ---------- */
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--ink);
    background: var(--cream);
  }
  
  a { color: inherit; text-decoration: none; }
  a:hover { text-decoration: underline; }
  p { line-height: 1.6; margin: 0; }
  h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; }
  ul { margin: 0; padding-left: 18px; }
  li { margin: 8px 0; color: var(--muted); }
  
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
  }
  
/* ---------- Feature rows (image + text) ---------- */

.featureRows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.featureRow {
  display: flex;
  flex-direction: column;
  gap: 14px;

  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,0.42);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  padding: 16px;
}

.featureRow--reverse {
  /* Not needed anymore since we're stacking vertically within each column */
}

.featureRow__text h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.featureRow__text p {
  color: var(--muted);
  margin-top: 8px;
  max-width: 62ch;
}

.muted { color: rgba(11, 15, 14, 0.45); font-weight: 800; }

.featureRow__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,15,14,0.08);
  background: linear-gradient(180deg, rgba(7,130,68,0.08), rgba(255,255,255,0.18));
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featureRow__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

/* Mobile */
@media (max-width: 980px) {
  .featureRows {
    grid-template-columns: 1fr;
  }
}

/* ---------- Hero Image ---------- */

.hero__imageWrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.hero__image {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.25));
  transform: translateY(10px);
}

.hero__imageGlow {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(7,130,68,0.25) 0%, rgba(7,130,68,0.08) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}


  /* ---------- Topbar ---------- */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(251, 249, 233, 0.78);
    border-bottom: 1px solid var(--border);
  }
  
  .topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
  }
  
  .brand__logo {
    height: 42px;
    width: auto;
    display: block;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .nav a {
    font-weight: 600;
    font-size: 14px;
    color: rgba(11, 15, 14, 0.80);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 12px;
  }
  
  .nav a:hover {
    background: rgba(7, 130, 68, 0.08);
  }
  
  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none !important;
  }
  
  .btn--small { padding: 10px 12px; border-radius: 12px; }
  
  .btn--primary {
    background: var(--green);
    color: var(--cream);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 10px 22px rgba(7, 130, 68, 0.18);
  }
  .btn--primary:hover { filter: brightness(0.98); }
  
  .btn--ghost {
    background: transparent;
    color: rgba(11, 15, 14, 0.86);
    border-color: rgba(11, 15, 14, 0.16);
  }
  .btn--ghost:hover { background: rgba(11, 15, 14, 0.03); }
  
  .btn--full { width: 100%; }
  
  /* ---------- Hero ---------- */
  .hero {
    padding: 58px 0 28px;
    background:
      radial-gradient(1100px 520px at 12% 15%, rgba(7, 130, 68, 0.15), transparent 60%),
      radial-gradient(900px 420px at 95% 20%, rgba(7, 130, 68, 0.10), transparent 60%),
      var(--cream);
  }
  
  .hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: start;
  }
  
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(7, 130, 68, 0.18);
    background: rgba(7, 130, 68, 0.06);
    color: rgba(7, 130, 68, 0.95);
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 14px;
  }
  
  h1 {
    font-size: 56px;
    max-width: 22ch;
  }
  
  .lead {
    margin-top: 14px;
    font-size: 18px;
    color: rgba(11, 15, 14, 0.78);
    max-width: 62ch;
  }
  
  .cta {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  
  .hero__notes {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .note {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 12px;
    background: rgba(255,255,255,0.35);
  }
  
  .note__kicker {
    display: block;
    font-weight: 900;
    font-size: 12px;
    color: rgba(11, 15, 14, 0.86);
    margin-bottom: 6px;
  }
  
  .note__text {
    display: block;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
  }
  
  .hero__card { align-self: start; }
  
  .card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow2);
    overflow: hidden;
  }
  
  .card--accent {
    background:
      radial-gradient(900px 520px at 20% 10%, rgba(7, 130, 68, 0.20), transparent 55%),
      radial-gradient(900px 520px at 90% 40%, rgba(7, 130, 68, 0.10), transparent 60%),
      rgba(255,255,255,0.55);
  }
  
  .card__header {
    padding: 18px 18px 10px;
  }
  
  .card__header h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .card__header p {
    color: var(--muted);
  }
  
  .card__list {
    padding: 8px 18px 6px;
    display: grid;
    gap: 12px;
  }
  
  .card__item {
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 10px;
    align-items: start;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 6px;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(7, 130, 68, 0.14);
  }
  
  .item__title { font-weight: 900; margin-bottom: 2px; }
  .item__desc { color: var(--muted); font-size: 14px; }
  
  .card__footer {
    padding: 14px 18px 18px;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.35);
  }
  
  .fineprint {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(11, 15, 14, 0.55);
  }
  
  /* ---------- Sections ---------- */
  .section { padding: 56px 0; }
  .section--alt {
    background:
      radial-gradient(1200px 520px at 50% 20%, rgba(7, 130, 68, 0.08), transparent 60%),
      rgba(255,255,255,0.28);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .section__head {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
    max-width: 74ch;
  }
  
  .section__head h2 { font-size: 34px; }
  .section__head p { color: var(--muted); font-size: 16px; }
  
  /* ---------- Grids ---------- */
  .grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  
  .feature {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 16px;
    background: rgba(255,255,255,0.40);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  .feature h3 { font-size: 18px; margin-bottom: 8px; }
  .feature p { color: var(--muted); }
  
  .specs {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .specs__box {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 16px;
    background: rgba(255,255,255,0.40);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  .specs__title { font-weight: 900; margin-bottom: 10px; }
  
  .specs__box--dark {
    background: var(--ink);
    border-color: rgba(255,255,255,0.10);
  }
  .specs__box--dark .specs__title { color: var(--cream); }
  .specs__box--dark li { color: rgba(251, 249, 233, 0.74); }
  
  .grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .impact {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 16px;
    background: rgba(255,255,255,0.40);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  .impact h3 { margin-bottom: 8px; }
  .impact p { color: var(--muted); }
  
  /* ---------- Fit ---------- */
  .fit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .fit__col {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 16px;
    background: rgba(255,255,255,0.40);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  .fit__col h3 { margin-bottom: 8px; }
  
  .checklist { list-style: none; padding-left: 0; }
  .checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .checklist li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
    margin-top: 1px;
  }
  .checklist--muted li::before { color: rgba(11, 15, 14, 0.35); }
  
  /* ---------- CTA section ---------- */
  .section--cta {
    padding: 64px 0;
    background: linear-gradient(180deg, rgba(7,130,68,0.12), rgba(7,130,68,0.04));
    border-top: 1px solid var(--border);
  }
  
  .ctaBox {
    border-radius: 22px;
    border: 1px solid rgba(11, 15, 14, 0.12);
    background: rgba(255,255,255,0.55);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
    padding: 18px;
  }
  
  .ctaBox__left h2 { font-size: 34px; }
  .ctaBox__left p { color: var(--muted); margin-top: 10px; }
  
  .contactRow {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  
  .fineprint--light { color: rgba(11, 15, 14, 0.52); }
  
  .miniCard {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.55);
    padding: 14px 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  .miniCard__title { font-weight: 900; margin-bottom: 10px; }
  .miniCard ul { margin: 0; }
  .miniCard--dark {
    margin-top: 12px;
    background: var(--ink);
    border-color: rgba(255,255,255,0.10);
  }
  .miniCard--dark, .miniCard--dark p, .miniCard--dark li { color: rgba(251,249,233,0.82); }
  .miniCard--dark .miniCard__title { color: var(--cream); }
  
  /* ---------- Footer ---------- */
  .footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.20);
  }
  
  .footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .footer__logo { height: 36px; width: auto; display: block; }
  .footer__meta { color: rgba(11, 15, 14, 0.60); font-weight: 700; font-size: 13px; }
  .sep { margin: 0 8px; color: rgba(11, 15, 14, 0.30); }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 980px) {
    .hero__grid { grid-template-columns: 1fr; }
    h1 { font-size: 46px; }
    .hero__notes { grid-template-columns: 1fr; }
    .grid3 { grid-template-columns: 1fr; }
    .specs { grid-template-columns: 1fr; }
    .grid2 { grid-template-columns: 1fr; }
    .fit { grid-template-columns: 1fr; }
    .ctaBox { grid-template-columns: 1fr; }
    .nav { display: none; } /* keep it clean on mobile */
  }
  