:root {
  --white: #ffffff;
  --off-white: #f5f6f2;
  --bg: #090b08;
  --text: #f6f7f1;
  --muted: rgba(246, 247, 241, 0.75);
  --primary: #46af18;
  --primary-dark: #219509;
  --gold: #fbb721;
  --surface: rgba(16, 20, 14, 0.72);
  --surface-strong: rgba(8, 12, 7, 0.92);
  --border: rgba(255, 255, 255, 0.12);
  --radius: 34px;
  --shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  --transition: 0.28s ease;
}

/* Mobile dropdown override: stack nav items and allow JS to toggle .open */
@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    padding: 1rem 0.6rem;
    background: rgba(9, 11, 8, 0.96);
    box-shadow: 0 18px 50px rgba(5, 8, 5, 0.24);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 320ms ease, opacity 320ms ease, visibility 320ms ease;
  }

  .site-nav.open {
    max-height: 34rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav .nav-link {
    justify-items: start;
    text-align: left;
    padding: 0.75rem 1rem;
    min-height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .site-nav .nav-link:not(:last-child)::before {
    display: none;
  }

  .menu-toggle {
    z-index: 101;
  }
}

* {
  box-sizing: border-box;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus,
.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  z-index: 999;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: #070906;
  color: var(--text);
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-y: none;
  -webkit-tap-highlight-color: transparent;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1180px;
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

body > header,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 8px 0 0;
  background: transparent;
}

.nav-dock {
  display: grid;
  /* three columns so the nav stays perfectly centered across the header */
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px; /* generous left/right padding */
  min-height: 128px; /* adjusted so header fits the logo but keeps compact feel */
  background: transparent;
  border: none;
  align-items: center;
}

/* ensure grid items align to their columns */
.dock-left { justify-self: start; }
.site-nav { justify-self: center; }
.dock-right { justify-self: end; }

.dock-left,
.dock-right {
  display: flex;
  align-items: center;
}

.metrics-panel {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(180deg, #f6faf6 0%, #eef6ed 100%);
  border-radius: 12px;
  padding: 14px 12px;
  margin-top: 0.8rem;
  box-shadow: 0 10px 22px rgba(17, 34, 18, 0.05);
}

.metrics-panel .panel-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 0.75rem auto;
}

.metrics-panel .panel-header h3 {
  margin: 0;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
}

.metrics-panel .panel-sub {
  margin: 0.55rem auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  max-width: 680px;
}

.partners-section .metrics-panel {
  background: #ffffff;
}

.partners-section .metrics-panel .panel-header h3 {
  color: #20850f;
}

.partners-section .metrics-panel .panel-header h3,
.partners-section .metrics-panel .panel-sub,
.partners-section .metrics-panel .partner-stat p,
.partners-section .metrics-panel .partner-stat strong {
  color: #111;
}

/* partner footer CTA */
.partner-footer-cta {
  padding: 28px 0 28px;
  margin-bottom: 2rem;
}

.partner-footer-panel {
  max-width: 1080px;
  margin: 0 auto 20px;
  background: #08270e;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  padding: 0;
  position: relative;
}

.partner-footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 58%);
  align-items: stretch;
  min-height: 220px;
}

.partner-footer-image {
  position: relative;
  overflow: hidden;
}

.partner-footer-image.full-width-image {
  width: 100%;
}

.partner-footer-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.partner-footer-copy {
  padding: 28px 32px;
  color: #f7fcf7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-footer-copy h3 {
  margin: 0 0 10px 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  color: #fdfefc;
  line-height: 1.05;
}

.partner-footer-copy p {
  margin: 0 0 20px 0;
  color: rgba(250, 253, 250, 0.88);
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.85;
}

.partner-footer-panel .btn-dock-cta {
  margin-top: auto;
  align-self: start;
  background: linear-gradient(135deg, #95d238, #6ab71d);
  color: #071706;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(20, 90, 18, 0.2);
}

.partner-footer-panel .btn-dock-cta::after {
  content: '→';
  margin-left: 0.6rem;
  opacity: 0.95;
}

.partner-footer-panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23ffffff' fill-opacity='0.06' d='M47.4 22.6c26.3 5.8 53.7 28.6 58.3 55.1c-5.4 11.3-7.6 28.4-6.2 41.5c8.7-6.3 18.8-11.4 29.8-15.2c4.3-20.7 17.4-39.5 36.1-50.4c10.9 16.8 18.1 37 19.1 57.9c12.8-4.8 25.9-8.2 39.1-10.1c-5.1 22.6-15.3 43.6-29.8 60.1c8.5 1.6 16.8 4.1 24.7 7.4c-14.6 23.3-36.8 41.2-62.8 51.2c-1.8-6.1-2.5-12.4-2.4-18.8c-16.9 7.3-35.7 11.1-54.8 10.5c2.4-4.9 4.3-10 5.7-15.3c-19.1 3.6-38.3 0.3-54.8-8.8c9.7-2.3 19.3-6 28.2-11c-19.5-2.4-38.1-11-52.1-24.1c8.6-1.6 16.9-4.6 24.5-8.7c-18.4-0.5-35.4-8.5-46.5-21.2c6.9 1.1 13.9 1 20.7-0.4c-14.2-5.9-25.3-18.2-29.7-33.2c7.2 3.7 15.1 5.9 23.2 6.2c-14.7-9.8-24.4-26.5-25.1-45.3c3.7 2.1 7.7 3.7 11.9 4.8c-12.7-8.5-20.9-22.8-21.1-38.8c5.2 2.9 10.9 4.9 16.9 5.7c-11.9-7.9-19.8-20.4-20-34.7c7.2 4.2 15.2 7.2 23.6 8.7c-9.2-6.1-15.9-15.1-17.2-25.4c9.5 5.9 20.1 10.1 31.2 12.4c-8.5-5.7-15.1-14.7-17.3-25.4c10.9 6.2 23 10.5 35.8 12.9Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 240px auto;
  pointer-events: none;
}

@media (max-width: 980px) {
  .partner-footer-panel {
    max-width: 100%;
  }

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

  .partner-footer-copy {
    padding: 24px;
  }
}

@media (max-width: 650px) {
  .partner-footer-copy h3 {
    font-size: 1.25rem;
  }

  .partner-footer-copy p {
    font-size: 0.92rem;
  }
}

@media (max-width: 900px) {
  .partner-footer-inner {
    flex-direction: column;
  }

  .partner-footer-image {
    width: 100%;
    min-width: auto;
    height: 180px;
  }

  .partner-footer-copy {
    padding: 14px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 20px; /* ~20px spacing between logo and text */
  min-width: 0;
  overflow: visible; /* allow scaled logo to overflow without shifting text */
}

.brand > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  line-height: 1;
}

.brand img {
  width: 86px; /* keep layout width so text doesn't move */
  height: auto;
  max-height: 86px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  display: block;
  /* increase logo visually but keep it visible and clear of text */
  transform-origin: right center;
  transform: scale(1.7) translateX(20px) translateY(0);
  will-change: transform;
}

.brand-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}

.brand-tag {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.56);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.3rem;
  padding: 0;
  flex-wrap: nowrap;
  justify-self: center;
}

.nav-link {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0;
  color: rgba(255, 255, 255, 0.78);
  transition: color 250ms ease, transform 250ms ease;
  text-align: center;
  position: relative;
}

.nav-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon {
  width: 20px; /* slightly smaller icons */
  height: 20px;
  display: grid;
  place-items: center;
  color: currentColor;
}

.nav-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
}

.nav-link span:last-child {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: none;
  white-space: nowrap; /* prevent wrapping */
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.nav-link:not(:last-child)::before {
  content: '';
  position: absolute;
  right: -1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.16);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(70, 175, 24, 1), rgba(251, 183, 33, 1));
  opacity: 0;
  transition: width 250ms ease, opacity 250ms ease;
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 18px;
  opacity: 1;
}

.nav-link.active .nav-icon {
  color: var(--primary);
  filter: drop-shadow(0 0 12px rgba(70, 175, 24, 0.18));
}

.nav-link.active span:last-child {
  font-weight: 600;
}


.btn-dock-cta {
  min-height: 44px; /* reduced to be proportional */
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f8f0f, #5acf35);
  color: #fff;
  box-shadow: 0 10px 22px rgba(30, 86, 24, 0.16);
  border: none;
  font-weight: 700;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.btn-dock-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(30, 86, 24, 0.2);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1rem 1.9rem;
  min-height: 3.3rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #2f8f0f, #5acf35);
  color: var(--white);
  box-shadow: 0 28px 48px rgba(25, 97, 20, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-hero {
  padding: 0.85rem 1.75rem;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
}

.site-header .btn-primary.btn-hero {
  padding: 0.8rem 1.35rem;
  min-height: 3rem;
  font-size: 0.95rem;
}

.btn-primary .button-icon {
  margin-right: 0.7rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--white);
  position: absolute;
  border-radius: 999px;
}

.menu-toggle span:nth-child(1) {
  top: 0.95rem;
}

.menu-toggle span:nth-child(2) {
  top: 1.35rem;
}

.menu-toggle span:nth-child(3) {
  top: 1.75rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 4.4rem 0 5rem;
  background: linear-gradient(180deg, rgba(7, 9, 6, 0.88) 0%, rgba(7, 9, 6, 0.22) 45%, rgba(7, 9, 6, 0.56) 100%), url('images/hero.png') center/cover no-repeat;
}

.programs-hero {
  min-height: 78vh;
  padding: 3rem 0 3rem;
  background: linear-gradient(180deg, rgba(7, 9, 6, 0.92) 0%, rgba(7, 9, 6, 0.45) 60%), url('images/programheropage.png') center/cover no-repeat;
}

.programs-hero .hero-copy {
  max-width: 780px;
}

.programs-hero .hero-copy h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
}

.products-hero {
  min-height: 92vh;
  padding: 5rem 0 5.5rem;
  background: #040504;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.32) 45%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.products-hero .hero-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 1fr);
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 3;
}

.products-hero .hero-copy {
  max-width: 600px;
}

.products-hero .hero-copy .eyebrow {
  color: #7fdc5d;
  letter-spacing: 0.24em;
}

.products-hero .hero-copy h2 {
  font-size: clamp(3.1rem, 4.5vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}

.products-hero .hero-copy p {
  margin-top: 2rem;
  max-width: 620px;
  font-size: 1.05rem;
  color: rgba(246, 247, 241, 0.82);
  line-height: 1.9;
}

.products-hero .hero-copy .btn-primary {
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  font-size: 0.97rem;
  box-shadow: 0 24px 54px rgba(23, 99, 18, 0.32);
}

.products-hero .hero-visual {
  min-height: 605px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 42px 108px rgba(0, 0, 0, 0.52);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.products-hero .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.products-hero .hero-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.products-hero .hero-overlay {
  display: block;
  z-index: 2;
}

.products-hero .products-hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  z-index: 0;
  opacity: 1;
  image-rendering: auto;
  background-color: #040504;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.28), transparent 14%),
              radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.14), transparent 18%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.65));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  padding-top: 6rem;
}

.hero-copy {
  max-width: 840px;
  color: var(--white);
  padding-inline: 0.25rem;
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.7rem, 6.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  word-spacing: 0.18em;
  font-weight: 800;
}

.hero-copy h1 span {
  display: inline-block;
}

.hero-copy p {
  margin: 1.8rem 0 0;
  max-width: 560px;
  padding-left: 0.55rem;
  font-size: 1rem;
  color: rgba(246, 247, 241, 0.8);
  line-height: 1.85;
  position: relative;
}

.hero-copy p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 3px;
  height: 1.45rem;
  background: linear-gradient(180deg, rgba(70, 175, 24, 1), rgba(251, 183, 33, 1));
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.about-hero {
  min-height: 82vh;
  padding: 3rem 0 2rem;
  background-size: cover;
  background-position: center;
}

.about-hero .hero-inner {
  min-height: 72vh;
  align-items: center;
  padding-top: 1rem;
}

.about-hero .hero-copy {
  max-width: 700px;
}

.about-hero .eyebrow,
.about-page-content .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.breadcrumb {
  margin: 0 0 1rem;
  color: rgba(246, 247, 241, 0.78);
  font-size: 0.96rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1.05;
}

.about-hero p {
  margin-top: 1.25rem;
  max-width: 540px;
  color: rgba(246, 247, 241, 0.88);
  line-height: 1.9;
}

.about-page-content .about-grid {
  gap: 2.4rem;
  align-items: center;
  padding: 2rem 0;
}

.about-page-content .about-copy {
  gap: 1rem;
}

.about-page-content .about-copy p {
  margin: 0;
  color: rgba(18, 23, 16, 0.88);
  line-height: 1.85;
  max-width: 560px;
}

.page-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.14);
  min-height: 420px;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1rem 0 2.5rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(18, 23, 16, 0.08);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(70, 175, 24, 0.14);
  color: var(--primary);
  font-size: 1.5rem;
}

.value-card h3 {
  margin: 0 0 0.6rem;
  color: #111;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.value-card p {
  margin: 0;
  color: rgba(18, 23, 16, 0.72);
  line-height: 1.7;
  font-size: 0.97rem;
}

.team-carousel-wrapper {
    position: relative;
    padding-top: 1.2rem;
  }

  .team-swiper {
    position: relative;
    overflow: visible;
    padding: 1rem 0 1.75rem;
  }

  .team-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }

  .team-slide {
    display: flex;
    justify-content: center;
    padding: 0 0.65rem;
  }

  .team-card {
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.16);
  }

  .team-card-photo {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    margin-top: 1.4rem;
  }

  .team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-card-body {
    padding: 1.4rem 1.4rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    flex: 1;
  }

  .team-card-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
  }

  .team-card-title {
    margin: 0;
    color: #c61717;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .team-divider {
    width: 45px;
    height: 2px;
    background: #c61717;
    border-radius: 999px;
    margin: 0.4rem auto 0;
  }

  .team-card-text {
    margin: 0;
    color: #4a4a4d;
    line-height: 1.75;
    font-size: 0.98rem;
    flex: 1;
  }

  .team-card-footer {
    display: flex;
    justify-content: center;
    padding-top: 0.9rem;
  }

  .team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease;
  }

  .team-linkedin:hover {
    transform: translateY(-2px) scale(1.05);
    background: #c61717;
  }

  .team-carousel-wrapper,
  .team-swiper {
    position: relative;
  }

  .team-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(4, 8, 4, 0.9);
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
    z-index: 5;
  }

  .team-nav.prev {
    left: 16px;
  }

  .team-nav.next {
    right: 16px;
  }

  .team-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(10, 18, 10, 0.95);
  }

  .team-section {
    background: #ffffff;
    padding: 5.5rem 0 3rem;
  }

  .team-section .section-header {
    margin-bottom: 1.75rem;
  }

  .team-section .section-header h2 {
    color: #111;
    font-size: clamp(2.6rem, 3vw, 3.4rem);
  }

  .team-intro {
    margin: 1rem auto 0;
    max-width: 760px;
    color: #4f565f;
    line-height: 1.85;
    font-size: 1rem;
  }

  .red-label {
    color: #c61717;
    letter-spacing: 0.28em;
  }

.team-grid-wrapper {
  padding-top: 0.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.team-card {
  width: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbf7 100%);
  border: 1px solid rgba(18, 23, 16, 0.08);
  border-radius: 24px;
  padding: 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(8, 15, 8, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(8, 15, 8, 0.13);
  border-color: rgba(70, 175, 24, 0.24);
}

.team-card-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(70, 175, 24, 0.16), rgba(251, 183, 33, 0.12));
  border: 2px solid rgba(70, 175, 24, 0.18);
  box-shadow: inset 0 4px 12px rgba(255,255,255,0.25);
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1120px) {
  .team-nav.prev { left: 12px; }
  .team-nav.next { right: 12px; }
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card {
    min-height: 200px;
    padding: 1.2rem 0.95rem;
  }

  .team-nav.prev,
  .team-nav.next {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 184px;
    padding: 1rem 0.9rem;
  }

  .team-card-photo {
    width: 72px;
    height: 72px;
  }

  .team-nav.prev,
  .team-nav.next {
    width: 38px;
    height: 38px;
  }
}

.team-card h3 {
  margin: 0 0 0.6rem;
  color: #111;
  font-size: 1.1rem;
  font-weight: 700;
}

.team-card p {
  margin: 0;
  color: rgba(18, 23, 16, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

.hero-bottom-strip {
  margin-top: 4rem;
  padding: 1rem 1rem;
  border-radius: 999px;
  background: rgba(5, 7, 4, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-right: 0.85rem;
}

.strip-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(70, 175, 24, 0.15);
  color: var(--primary);
  font-size: 1.1rem;
}

.strip-item strong {
  display: block;
  font-weight: 700;
  color: var(--white);
}

.strip-item p {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  color: rgba(246, 247, 241, 0.72);
}

.strip-item em {
  font-style: normal;
  color: var(--gold);
}

.feature-strip,
.products-section,
.partners-section,
.light-section,
.dark-section {
  padding: 4.5rem 0;
}

.programs-section {
  padding: 0;
}

.homepage-products-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 60px 50px;
  background: #1B130D url('images/homepageproduct.png') no-repeat right center / cover;
  overflow: hidden;
}

.homepage-products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 19, 13, 0.96) 0%, rgba(27, 19, 13, 0.18) 18%, rgba(27, 19, 13, 0.04) 42%, rgba(27, 19, 13, 0) 62%);
  pointer-events: none;
  z-index: 1;
}

.homepage-products-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(109, 187, 26, 0.14), transparent 12%),
              radial-gradient(circle at 82% 25%, rgba(255, 255, 255, 0.06), transparent 14%),
              radial-gradient(circle at 50% 95%, rgba(0, 0, 0, 0.34), transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.homepage-products-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 380px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 1rem;
}

.homepage-products-copy {
  display: grid;
  gap: 1rem;
}

.homepage-products-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6DBB1A;
}

.homepage-products-headline {
  display: inline-grid;
  gap: 0;
}

.homepage-products-headline h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: clamp(3.8rem, 6vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.homepage-products-subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.1rem, 6vw, 56px);
  color: #6DBB1A;
  margin: -0.75rem 0 0 0.02rem;
  line-height: 0.85;
}

.homepage-products-text {
  max-width: 420px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #E5E5E5;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.btn-products-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 36px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  background: #6DBB1A;
  color: #111;
  font-size: 0.97rem;
  font-weight: 600;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.btn-products-cta .arrow {
  display: inline-block;
  margin-left: 0.65rem;
  transition: transform 220ms ease;
}

.btn-products-cta:hover {
  transform: translateY(-3px);
  background: #5a9b14;
  box-shadow: 0 18px 32px rgba(22, 102, 18, 0.24);
}

.btn-products-cta:hover .arrow {
  transform: translateX(4px);
}

.homepage-products-visual {
  display: none;
}

.homepage-products-image,
.homepage-products-visual::after {
  display: none;
}

@media (max-width: 1200px) {
  .homepage-products-inner {
    gap: 2.25rem;
  }

  .homepage-products-image {
    min-width: 640px;
    width: 112%;
  }
}

@media (max-width: 1024px) {
  .homepage-products-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .homepage-products-copy {
    text-align: center;
    align-items: center;
  }

  .homepage-products-headline {
    justify-items: center;
  }

  .homepage-products-subtitle {
    margin-left: 0;
  }

  .homepage-products-visual {
    justify-content: center;
  }

  .homepage-products-image {
    transform: none;
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .homepage-products-section {
    padding: 80px 24px;
  }

  .homepage-products-inner {
    gap: 2rem;
  }

  .btn-products-cta {
    width: 100%;
    justify-content: center;
  }
}

.about-preview {
  padding: 2rem 0;
}

.feature-strip,
.light-section {
  background: #f9faf8;
  color: #111;
}

.light-section h2,
.light-section p,
.light-section .eyebrow,
.light-section .program-body h3,
.light-section .program-body p {
  color: #111;
}

.light-section .program-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
}

.light-section .program-body h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
}

.light-section .program-body p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.light-section .program-body .btn-secondary {
  color: #111;
  background: rgba(18, 23, 16, 0.06);
  border-color: rgba(18, 23, 16, 0.18);
  align-self: flex-start;
  margin-top: auto;
}

.light-section .program-card {
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.light-section .program-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.dark-section,
.dark-cta {
  background: radial-gradient(circle at top left, rgba(86, 141, 40, 0.18), transparent 22%),
    linear-gradient(180deg, #09120a 0%, #041006 100%);
}

.impact-stats-section {
  background: linear-gradient(180deg, #0b2e13 0%, #143d1f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.impact-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 25%, rgba(124, 179, 66, 0.16), transparent 28%),
    radial-gradient(circle at 20% 50%, rgba(146, 197, 79, 0.08), transparent 20%),
    radial-gradient(circle at 80% 40%, rgba(124, 179, 66, 0.1), transparent 18%);
  opacity: 0.55;
  pointer-events: none;
}

.impact-stats-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 179, 66, 0.14), transparent 32%);
  filter: blur(32px);
  pointer-events: none;
}

.impact-stats-grid {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1rem;
  align-items: center;
}

.impact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.8rem 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.impact-card:hover {
  transform: scale(1.03);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.3);
  border-color: rgba(124, 179, 66, 0.28);
}

.impact-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(124, 179, 66, 0.7);
  background: rgba(11, 46, 19, 0.75);
  color: #e8f8e0;
  font-size: 1.4rem;
  box-shadow: 0 0 24px rgba(124, 179, 66, 0.18);
}

.impact-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-card:hover .impact-icon {
  background: rgba(11, 46, 19, 0.95);
  box-shadow: 0 0 34px rgba(124, 179, 66, 0.35);
}

.impact-copy strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #ffffff;
  font-size: clamp(3rem, 3vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

.impact-copy p {
  margin: 0;
  color: #d9e4d6;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

@media (max-width: 1120px) {
  .impact-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 130px;
  }

  .impact-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 620px) {
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  .impact-card {
    padding: 1.5rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .impact-card:last-child {
    border-bottom: none;
  }
}

.feature-strip.dark-section {
  padding: 2rem 0;
}

.program-image-panel {
  padding: 18px;
  margin: 0 auto;
  background: linear-gradient(90deg, #07310b 0%, #123b16 100%);
  border-radius: 14px;
  overflow: hidden;
  max-width: 980px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(8, 30, 10, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-image-panel img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1rem;
  align-items: center;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  min-height: 120px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(70, 175, 24, 0.18);
  color: #f5f9ec;
  font-size: 1.35rem;
  border: 1px solid rgba(70, 175, 24, 0.35);
}

.feature-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #f5f9ec;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.feature-card p {
  margin: 0;
  color: rgba(245, 249, 236, 0.78);
  line-height: 1.4;
  font-size: 0.98rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
  padding: 0.4rem 0;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 420px;
}

.about-image-section {
  padding: 0;
  background: #081f0a;
  overflow: hidden;
}

.about-image-section img {
  display: block;
  width: 100%;
    height: clamp(240px, 18vw, 300px);
    object-fit: cover;
    object-position: center 52%;
  padding-top: 0;
}

.badge-card {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  width: 9.8rem;
  padding: 0.85rem 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  color: #0c2b08;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.badge-card svg {
  width: 1.4rem;
  height: 1.4rem;
}

.about-copy {
  display: grid;
  gap: 0.8rem;
}

.about-copy h2,
.section-header h2,
.cta-panel h2 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

.products-section .section-header h2 {
  color: #111;
}

.about-copy h2 {
  font-size: clamp(2.6rem, 3vw, 3.3rem);
}

.about-copy p {
  margin: 0;
  color: rgba(18, 23, 16, 0.85);
  line-height: 1.7;
  max-width: 500px;
}

.about-cards {
  display: grid;
  gap: 1rem;
}

.about-cards div {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.45rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.about-cards h3 {
  margin: 0 0 0.55rem;
  color: var(--white);
}

.counters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.counter-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.35rem 1.25rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.counter {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.counter-card p {
  margin: 0.65rem 0 0;
  color: rgba(246, 247, 241, 0.72);
}

.section-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-header .eyebrow,
.cta-panel .eyebrow,
.light-section .eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.section-header h2 {
  font-size: clamp(2.8rem, 3vw, 3.8rem);
  line-height: 1.02;
  max-width: 770px;
  margin: 0 auto;
}

.programs-section.light-section {
  background: #f7f7f4;
  padding: 5rem 0 3rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin: 2.5rem auto 0;
  max-width: 1200px;
  align-items: start;
}

@media (max-width: 1024px) {
  .program-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.products-section {
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.25rem;
  background: #ffffff;
  padding: 1.8rem 0 1rem;
  border-radius: 32px;
}

.product-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.program-card,
.product-card {
  max-width: 100%;
}

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

.product-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 28px;
  background: var(--white);
  color: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(70, 175, 24, 0.14);
  color: var(--primary);
  font-size: 1.2rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 600;
}

.product-card {
  background: var(--white);
  color: #111;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.product-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.product-card .btn {
  margin-top: auto;
}

.product-card.wide {
  grid-column: auto;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1rem;
  flex: 1;
}

.product-body h3 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 700;
  color: #111;
}

.product-body p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 4.8rem;
}

.product-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 0.55rem;
  margin: 0.9rem 0 1.2rem;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(70, 175, 24, 0.1);
  color: #224b19;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-grid .btn {
  margin-top: 0.5rem;
}

.digital-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.digital-card {
  padding: 2rem;
  border-radius: 32px;
  background: rgba(240, 248, 235, 0.95);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.digital-card h3 {
  margin: 1.2rem 0 0.85rem;
  font-size: 1.6rem;
  line-height: 1.2;
}

.digital-card p {
  margin: 0;
  color: rgba(17, 22, 10, 0.76);
  line-height: 1.8;
}

.digital-features {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.digital-features li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: rgba(17, 22, 10, 0.78);
}


#product-benefits {
  padding: 0;
}

#product-benefits .container {
  max-width: 1400px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

.product-benefits-strip {
  background: #f5f8ef;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  justify-items: center;
  padding: 36px 0;
  width: 100%;
  box-sizing: border-box;
}

.product-benefits-strip .feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 0 24px;
  min-width: 0;
  min-height: 96px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  background: transparent;
}

.product-benefits-strip .feature-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: rgba(15, 23, 42, 0.12);
}

.product-benefits-strip .feature-item:last-child::after {
  display: none;
}

.product-benefits-strip .icon-wrap {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  flex: 0 0 48px;
}

.product-benefits-strip .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent !important;
  padding: 0;
}

.product-benefits-strip .feature-item p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #1F2937;
  text-align: left;
  max-width: 220px;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 992px) {
  .product-benefits-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-benefits-strip .feature-item {
    padding: 0 24px;
  }
}

@media (max-width: 620px) {
  .product-benefits-strip {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .product-benefits-strip .feature-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 20px;
    min-width: 0;
    position: relative;
    box-sizing: border-box;
  }

  .product-benefits-strip .feature-item::after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
  }

  .product-benefits-strip .feature-item:last-child::after {
    display: none;
  }
}

.partner-stat {
  background: rgba(16, 23, 13, 0.08);
  border: 1px solid rgba(16, 23, 13, 0.12);
  border-radius: 30px;
  padding: 1.45rem 1.3rem;
  text-align: center;
}

.partner-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
}

.partner-stat p {
  margin: 0.85rem 0 0;
  color: rgba(17, 22, 16, 0.78);
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.way-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(18, 23, 16, 0.08);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.way-card h3 {
  margin: 1rem 0 0.75rem;
  font-size: 1.15rem;
}

.way-card p {
  margin: 0;
  color: rgba(18, 23, 16, 0.75);
  line-height: 1.7;
}

.way-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(70, 175, 24, 0.12);
  color: var(--primary);
  font-size: 1.4rem;
}

.partners-hero {
  min-height: 84vh;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, rgba(7, 9, 6, 0.84) 0%, rgba(7, 9, 6, 0.45) 58%), url('images/partnered.jpg') 50% 34%/cover no-repeat;
}

.partners-hero .hero-inner {
  display: grid;
  gap: 1.8rem;
}

.partners-hero .hero-copy {
  max-width: 700px;
}

.partners-hero .hero-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 4.5vw, 4.8rem);
}

.partners-hero .hero-copy p {
  margin-top: 1.5rem;
  max-width: 580px;
  color: rgba(246, 247, 241, 0.86);
  line-height: 1.9;
}

.partner-logo-card {
  background: #ffffff; /* crisp white cards like the reference */
  border: 1px solid rgba(9, 12, 8, 0.06);
  border-radius: 20px;
  padding: 18px 20px;
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(6, 10, 6, 0.1);
}

.partner-logo-card img {
  max-width: 150px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.partners-section.light-section:not(.home-partners) .partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 0 0;
  max-width: 1320px;
  margin: 0 auto;
}

.partners-section.light-section:not(.home-partners) .partner-logo-card {
  width: 100%;
  max-width: 210px;
  min-height: 100px;
}

.partners-section.light-section:not(.home-partners) .partner-logo-card img {
  max-width: 130px;
  max-height: 68px;
}

.partners-section.light-section:not(.home-partners) {
  background: #ffffff;
  padding: 4.5rem 0 4rem;
}

.partners-section.light-section:not(.home-partners) .section-header {
  margin-bottom: 1.4rem;
}

.partners-section.light-section:not(.home-partners) .section-header p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(51, 68, 55, 0.8);
  line-height: 1.8;
}

.partners-section.light-section:not(.home-partners) .partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 0 0;
  max-width: 1320px;
  margin: 0 auto;
}

.partners-section.light-section:not(.home-partners) .partner-logo-card {
  width: 100%;
  max-width: 220px;
  min-height: 110px;
}

.partners-section.light-section:not(.home-partners) .partner-logo-card img {
  max-width: 140px;
  max-height: 68px;
}

.partner-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.6rem 0.8rem;
  padding-top: 0.6rem;
}

.partner-stat {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0.2rem 0.2rem 0.6rem;
  text-align: center;
  box-shadow: none;
}

.partner-stat strong {
  display: block;
  font-size: 1.6rem;
  color: #20850f;
  line-height: 1;
}

.partner-stat p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: #334437;
}

/* metrics panel to match reference screenshot */
.metrics-panel {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #042108 0%, #0f3418 100%);
  border-radius: 0;
  padding: 3rem 1.5rem;
  margin-top: 1.6rem;
  box-shadow: none;
}

@media (min-width: 1200px) {
  .metrics-panel {
    padding: 3.5rem 2rem;
  }
}

.metrics-panel .panel-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 12px auto;
}

.metrics-panel .panel-header h3 {
  margin: 0;
  color: #20850f;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.metrics-panel .panel-sub {
  margin: 0.4rem auto 0;
  color: #567059;
  font-size: 0.98rem;
}

.partner-stat .stat-icon {
  display: none; /* icons removed per request */
}

@media (max-width: 900px) {
  .metrics-panel .partner-metrics {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.way-card {
  background: #ffffff;
  border: 1px solid rgba(18, 23, 16, 0.08);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.way-card h3 {
  margin: 1.2rem 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.way-card p {
  margin: 0;
  color: rgba(18, 23, 16, 0.72);
  line-height: 1.75;
  font-size: 0.98rem;
}

.way-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(70, 175, 24, 0.12);
  border: 1px solid rgba(70, 175, 24, 0.18);
  color: var(--primary);
}

.way-icon svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 1280px) {
  .ways-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ways-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ways-grid {
    grid-template-columns: 1fr;
  }
}

.btn-cta-yellow {
  background: linear-gradient(135deg, #f2b30a, #f9d62e);
  color: #111;
  box-shadow: 0 24px 48px rgba(221, 136, 12, 0.24);
  padding: 1rem 2rem;
}

.btn-cta-yellow::after {
  content: '🌿';
  margin-left: 0.75rem;
  display: inline-block;
}

.partners-section.light-section.home-partners {
  padding: 3.5rem 0 3rem;
}

.partners-section .partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem 3rem;
  align-items: start;
}

.partners-section .partners-copy {
  text-align: left;
  max-width: 520px;
}

.partners-section .partners-copy .eyebrow {
  margin-bottom: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-size: 0.85rem;
}

.partners-section .partners-copy h2 {
  margin: 0;
  margin-bottom: 0.85rem;
  line-height: 1.04;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 700;
}

.partners-section .partners-intro {
  margin: 0;
  max-width: 520px;
  color: rgba(17, 22, 16, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  justify-items: stretch;
  align-items: stretch;
  padding: 0.5rem 0 0;
}

.partner-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 1.35rem 1.3rem;
  min-height: 140px;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(18, 25, 16, 0.08);
}

.partner-card img {
  max-width: 140px;
  width: auto;
  max-height: 80px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .partners-section .partners-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.accent-green {
  color: #20850f;
}

.accent-gold {
  color: #f7c635;
}

.program-card,
.product-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.program-card > img,
.product-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.program-body,
.product-body {
  display: grid;
  gap: 1rem;
  padding: 1.8rem 1.6rem 2rem;
  text-align: left;
}

.program-body h3 {
  margin: 0;
  font-size: 1.28rem;
  color: #111;
  line-height: 1.2;
}

.program-body p {
  margin: 0;
  color: rgba(17, 22, 16, 0.78);
  font-size: 0.98rem;
  line-height: 1.8;
}

.program-body .btn-secondary {
  justify-self: start;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.program-body .btn-secondary {
  align-self: center;
  padding: 0.85rem 1.35rem;
}

.program-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.16);
}

.program-icon,
.product-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: -36px auto 1rem;
  border-radius: 50%;
  background: #20850f;
  color: #ffffff;
  font-size: 1.65rem;
  border: 4px solid #ffffff;
  box-shadow: 0 18px 40px rgba(32, 133, 15, 0.2);
}

.program-icon img,
.program-icon svg,
.product-icon img,
.product-icon svg {
  width: 32px;
  height: 32px;
}

.partners-copy,
.partners-section {
  text-align: center;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.partner-logos img {
  width: 140px;
  height: auto;
  filter: grayscale(80%);
  opacity: 0.8;
}

.cta-section,
.footer-cta.dark-cta {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(90deg, #15430f 0%, #206520 22%, #3c7f2c 100%);
  padding: 1rem 0;
}

.cta-section::before,
.footer-cta.dark-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.12), transparent 45%);
  pointer-events: none;
}

.cta-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
}

.cta-panel > div {
  max-width: 58%;
}

.cta-panel h2 {
  font-size: clamp(2rem, 2.3vw, 2.6rem);
  margin: 0;
  line-height: 1.05;
}

.cta-panel p {
  margin: 0.35rem 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.btn-cta-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffbf15, #f5a512);
  color: #061204;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(16, 55, 14, 0.2);
}

.btn-cta-yellow::after {
  content: '🦋';
  display: inline-flex;
  font-size: 1rem;
}

.site-footer {
  background: #040906;
  color: rgba(255, 255, 255, 0.86);
  /* very compact footer spacing to match target */
  padding: 0.12rem 0 0.28rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 0.45rem 1rem; /* tighter horizontal gaps and very tight vertical spacing */
  margin-bottom: 0.08rem;
  align-items: start;
}

.footer-brand p {
  margin: 0 0 0.08rem;
  /* compact paragraph width so it stacks neatly like the reference */
  max-width: 260px;
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.footer-brand p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-brand .social-links {
  margin-top: 0.3rem;
}

.footer-brand img {
  /* reduce logo size in footer for compactness */
  max-width: 150px;
  height: auto;
}

.footer-grid h3 {
  margin-bottom: 0.12rem;
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.12rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  transition: color 0.18s ease;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.08rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer-contact p:first-child {
  margin-top: 0;
}

.footer-contact p .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  color: #7cff00;
}

.footer-contact p .icon svg {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.06rem;
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom .design-note {
  color: rgba(255, 255, 255, 0.78);
}

.social-links {

  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.social-links a {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(31, 255, 33, 0.16);
  color: #7cff00;
  transition: transform 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}

.social-links a {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(31, 255, 33, 0.22);
  color: #7cff00;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  background: rgba(31, 255, 33, 0.1);
  border-color: #7cff00;
}

.social-links a svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-newsletter,
.footer-newsletter form {
  display: none;
}

.chatbot {
  display: none;
}

.contact-hero {
  min-height: 66vh;
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, rgba(7, 9, 6, 0.92) 0%, rgba(7, 9, 6, 0.4) 55%), url('images/contact-hero.png') center/cover no-repeat;
}

.contact-hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-hero .hero-copy {
  max-width: 720px;
}

.contact-hero .hero-social {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}

.contact-hero .hero-social .eyebrow {
  color: var(--primary);
  letter-spacing: 0.24em;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-icons a {
  width: 52px;
  height: 52px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  transition: all 0.3s ease;
  background: transparent;
}

.social-icons a:hover {
  background: rgba(70, 175, 24, 0.1);
  transform: translateY(-4px);
}

.social-icons a svg,
.social-icons a i {
  width: 24px;
  height: 24px;
  color: var(--primary);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 4.5vw, 4.6rem);
}

.contact-hero .hero-copy p {
  margin-top: 1.5rem;
  max-width: 580px;
  color: rgba(246, 247, 241, 0.86);
  line-height: 1.9;
}

.contact-hero .breadcrumb {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  padding: 4.5rem 0;
  background: #f7f6f0;
}

.contact-section .section-header {
  margin-bottom: 3rem;
}

.contact-section .section-header h2,
.contact-section .section-header .eyebrow {
  color: #111;
}

.contact-section .section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(35, 45, 34, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2.4rem;
  align-items: start;
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(18, 25, 16, 0.08);
  border-radius: 32px;
  padding: 2.4rem;
  box-shadow: 0 24px 60px rgba(28, 40, 28, 0.08);
  color: #111;
}

.contact-form-card {
  background: #ffffff;
}

.contact-form-card h2,
.contact-details-card h2 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  color: #111;
}

.contact-form-card p,
.contact-details-card p,
.contact-details-card .card-copy {
  color: rgba(35, 45, 34, 0.75);
}

.contact-details-card .card-copy {
  margin: 1rem 0 1.8rem;
  max-width: 520px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 25, 16, 0.16);
  border-radius: 22px;
  padding: 1rem 1.2rem;
  background: #fbfbf7;
  color: #111;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.nav-link:focus-visible,
.social-links a:focus-visible,
.footer-grid a:focus-visible,
.team-nav:focus-visible,
.contact-link:focus-visible {
  outline: 3px solid rgba(107, 183, 53, 0.9);
  outline-offset: 3px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(35, 45, 34, 0.46);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.btn-submit {
  justify-self: start;
  padding: 1rem 2.2rem;
}

.details-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.7rem;
}

.detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem 1.4rem;
  border-radius: 26px;
  background: #f6f6f0;
  border: 1px solid rgba(18, 25, 16, 0.12);
}

.detail-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #111;
}

.detail-card p {
  margin: 0;
  color: rgba(35, 45, 34, 0.74);
  line-height: 1.6;
}

.detail-card-icon {
  width: 3.3rem;
  height: 3.3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(70, 175, 24, 0.15);
  color: var(--primary);
  font-size: 1.3rem;
}

.map-section {
  padding: 0;
}

.map-panel {
  padding: 0;
}

.map-frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.22);
}

.map-frame iframe {
  width: 100%;
  height: 440px;
  border: 0;
}

.map-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 1.4rem 1.5rem;
  max-width: 320px;
  color: #111;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
}

.map-card span {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.map-card p {
  margin: 0;
  line-height: 1.6;
  color: #444;
}

.other-ways-section {
  padding: 4rem 0;
}

.contact-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 1.4rem 1.5rem;
  color: var(--white);
}

.link-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(70, 175, 24, 0.14);
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-link strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-link p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.contact-cta {
  padding: 4.5rem 0;
}

@media (max-width: 1120px) {
  .contact-grid,
  .contact-links-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 2rem;
  }

  .map-frame iframe {
    height: 360px;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 78vh;
  }

  .contact-grid {
    gap: 1.6rem;
  }

  .contact-card {
    padding: 1.9rem;
  }

  .map-frame iframe {
    height: 300px;
  }
}

@media (max-width: 620px) {
  .hero-copy h1 {
    font-size: clamp(2.6rem, 10vw, 3.6rem);
  }

  .btn-dock-cta {
    padding: 0.9rem 1.1rem;
    min-height: 48px;
    font-size: 0.95rem;
  }

  .contact-card,
  .map-frame,
  .contact-link {
    border-radius: 24px;
  }

  .map-frame iframe {
    height: 260px;
  }
}

.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.in-view,
.fade-left.in-view,
.fade-right.in-view,
.scale.in-view {
  opacity: 1;
  transform: none;
}

.fade-left {
  transform: translateX(-25px);
}

.fade-right {
  transform: translateX(25px);
}

.scale {
  transform: scale(0.98);
}

@media (max-width: 1120px) {
  .hero-bottom-strip,
  .hero-inner,
  .about-grid,
  .program-grid,
  .product-grid,
  .product-showcase,
  .partners-grid,
  .partner-stats,
  .ways-grid,
  .values-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 1.4rem;
  }

  .footer-brand img {
    width: 52px;
  }

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

  .cta-panel {
    padding: 2.6rem 1.2rem;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.8rem;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    max-height: 100vh;
    overflow-y: auto;
  }

  .nav-link {
    padding: 0.7rem 0.85rem;
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    min-height: 3rem;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 0;
  }

  .site-header .btn-primary.btn-hero {
    min-width: 0;
    max-width: 10rem;
    padding: 0.72rem 0.95rem;
    font-size: 0.92rem;
    white-space: normal;
    text-align: center;
  }

  .btn-dock-cta {
    padding: 0 24px;
    font-size: 0.95rem;
  }

  .hero {
    min-height: clamp(70vh, 78vh, 78vh);
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 9vw, 4.2rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-showcase,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .cta-panel > div {
    max-width: 100%;
    width: 100%;
  }

  .hero {
    min-height: clamp(70vh, 78vh, 78vh);
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 9vw, 4.2rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-showcase,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .cta-panel > div {
    max-width: 100%;
    width: 100%;
  }

  .footer-brand img {
    width: 48px;
  }

  .footer-grid {
    gap: 1.2rem;
  }
}

@media (max-width: 620px) {
  .hero,
  .hero-inner,
  .hero-bottom-strip,
  .feature-grid,
  .partners-copy,
  .partner-logos,
  .footer-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
  padding: 0.35rem 0 0.2rem;
  }

  .hero {
    min-height: clamp(62vh, 74vh, 74vh);
    padding: 2.5rem 0 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* keep nav links readable & not clipped */
  .nav-link {
    padding: 0.65rem 0.75rem;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .hero-bottom-strip {
    padding: 0.85rem;
    gap: 0.75rem;
  }

  .cta-panel {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .cta-panel > div {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand img {
    width: 44px;
  }

  .footer-grid {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-dock {
    min-height: 92px;
    padding: 0 0.75rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .brand {
    gap: 0.65rem;
    min-width: 0;
  }

  .brand img {
    width: 50px;
    transform: scale(1.05) translateX(4px);
  }

  .brand-title {
    font-size: 0.78rem;
  }

  .brand-tag {
    font-size: 0.56rem;
  }

  .header-actions {
    gap: 0.55rem;
    justify-content: flex-end;
    min-width: 0;
  }

  .menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 18px;
  }

  .site-header .btn-primary.btn-hero {
    padding: 0.72rem 0.95rem;
    font-size: 0.92rem;
    min-width: 0;
    max-width: 9rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 68vh;
    padding: 3rem 0 2.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 2.95rem);
  }

  .hero-copy p {
    padding-left: 0;
    font-size: 0.96rem;
  }

  .hero-copy p::before {
    display: none;
  }

  .site-nav {
    right: 0;
    left: 0;
    margin-top: 0.4rem;
  }

  .site-nav .nav-link {
    font-size: 0.95rem;
  }

  .site-nav.open {
    max-height: 34rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-panel h2 {
    font-size: clamp(1.4rem, 5.5vw, 1.9rem);
  }

  .btn-cta-yellow {
    width: 100%;
  }

  .contact-card,
  .detail-card,
  .partner-card,
  .product-card,
  .program-card,
  .team-card,
  .way-card,
  .digital-card {
    border-radius: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.9rem 1rem;
  }

  .map-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
    border-radius: 20px;
  }

  .social-links a {
    width: 2.4rem;
    height: 2.4rem;
  }
}

