*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:        #0D7A45;
  --primary-dark:   #0A2E22;
  --primary-hover:  #0B6438;
  --secondary:      #22B573;
  --accent:         #2BCFC3;
  --accent-light:   #A8EBE5;
  --bg:             #FFFFFF;
  --bg-alt:         #F4FAF8;
  --bg-card:        #E8F5EE;
  --border-color:   #C8E6D5;
  --text-heading:   #0A2E22;
  --text-body:      #2C2C2C;
  --text-muted:     #4A6655;
  --text-on-dark:   #9ECFBF;
  --text-light:     #FFFFFF;
  --font: 'Inter', sans-serif;
  --nav-height: 72px;
  --nav-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--primary);
  line-height: 1.6;
}

/* ─── Header ────────────────────────────────────────────── */

#site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #C8E6D5;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(10,46,34,0.08);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

/* Desktop links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  color: #0A2E22;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  opacity: 0.78;
  transition: opacity 0.2s, background-color 0.2s, color 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: #0D7A45;
  background-color: rgba(13, 122, 69, 0.06);
}

/* CTA button */
.nav-cta {
  display: inline-block;
  background-color: #0D7A45;
  color: #ffffff;
  border: 1.5px solid #0D7A45;
  border-radius: 5px;
  padding: 0.45rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.nav-cta:hover {
  background-color: #0B6438;
  border-color: #0B6438;
  color: #ffffff;
}

/* ─── Hamburger ─────────────────────────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0A2E22;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile drawer ─────────────────────────────────────── */

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background-color: var(--primary-dark);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-links {
  list-style: none;
  padding: 0.5rem 0;
}

.mobile-links li a {
  display: block;
  padding: 0.85rem 2rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s, background-color 0.2s;
}

.mobile-links li a:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-cta--mobile {
  margin: 0.75rem 2rem 1.25rem;
  text-align: center;
  align-self: flex-start;
}

/* ─── Hero ──────────────────────────────────────────────── */

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background-image:
    linear-gradient(rgba(244, 250, 248, 0.82), rgba(244, 250, 248, 0.82)),
    url('images/pellets-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #0A2E22;
  position: relative;
  overflow: hidden;
}

/* Subtle texture layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 60% 40%,
    rgba(34, 181, 115, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 860px;
  animation: heroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4A6655;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0A2E22;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: #4A6655;
  line-height: 1.65;
  white-space: nowrap;
  margin: 0 auto 2.75rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Buttons ───────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  border-radius: 5px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  transition: background-color 0.22s, color 0.22s, border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.btn--filled {
  background-color: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
}

.btn--filled:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10, 46, 34, 0.18);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid rgba(13, 122, 69, 0.55);
}

.btn--outline:hover {
  border-color: var(--primary);
  background-color: rgba(13, 122, 69, 0.06);
  transform: translateY(-2px);
}

/* ─── Section alternating backgrounds ──────────────────── */

.section--alt,
.bg-alt {
  background-color: #F4FAF8;
}

/* ─── Products (placeholder) ────────────────────────────── */

.products-section {
  background-color: #FFFFFF;
  padding: 6rem 2rem;
  text-align: center;
}

.products-inner {
  max-width: 680px;
  margin: 0 auto;
}

.products-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 46, 34, 0.4);
  margin-bottom: 1.1rem;
}

.products-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.products-sub {
  font-size: 1rem;
  color: rgba(10, 46, 34, 0.55);
  line-height: 1.75;
}

.products-cta {
  margin-top: 2.25rem;
  align-self: unset;
}

/* ─── Sustainability ─────────────────────────────────────── */

.sustainability {
  background-color: #156B40;
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}

.sustainability .section-eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.sust-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sust-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 3rem;
}

.sust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sust-card {
  background-color: #0F4A32;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.sust-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.sust-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.sust-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

/* ─── About ─────────────────────────────────────────────── */

.about {
  background-color: #F4FAF8;
  color: #0A2E22;
  padding: 7rem 2rem;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Left: text */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4A6655;
  margin-bottom: 1.1rem;
}

.about-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #0A2E22;
  margin-bottom: 1.6rem;
}

.about-para {
  font-size: 0.975rem;
  color: #4A6655;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-para + .about-para {
  margin-bottom: 2.25rem;
}

/* Right: stats grid */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: #C8E6D5;
  border-radius: 10px;
  overflow: hidden;
}

.stat-card {
  background-color: #E8F5EE;
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background-color 0.22s;
}

.stat-card:hover {
  background-color: #D4EDE4;
}

.stat-number {
  display: block;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #0A2E22;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A6655;
}

/* ─── Main ──────────────────────────────────────────────── */

main {
  min-height: 100vh;
}

/* ─── Contact ───────────────────────────────────────────── */

.contact {
  background-color: #ffffff;
  padding: 7rem 2rem;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.contact-sub {
  font-size: 1rem;
  color: rgba(10, 46, 34, 0.5);
  line-height: 1.7;
  margin-bottom: 3.25rem;
}

.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 46, 34, 0.45);
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(10, 46, 34, 0.18);
  padding: 0.6rem 0;
  font-family: var(--font);
  font-size: 0.975rem;
  color: var(--primary);
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(10, 46, 34, 0.28);
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--primary);
}

.btn--navy {
  background-color: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
  align-self: flex-start;
}

.btn--navy:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10, 46, 34, 0.15);
}

/* ─── Footer ────────────────────────────────────────────── */

.site-footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 5rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-logo {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 1.1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 230px;
}

.footer-col-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.35rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--text-light);
}

.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col address p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Scroll margin (offsets sticky nav for anchor jumps) ── */

section[id] {
  scroll-margin-top: var(--nav-height);
}

/* ─── Reveal animation ──────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.18s;
}

.reveal--delay2 {
  transition-delay: 0.36s;
}

/* ─── Active nav link ───────────────────────────────────── */

.nav-links a.active {
  opacity: 1;
  color: #0D7A45;
  background-color: rgba(13, 122, 69, 0.08);
}

/* ─── Product card hover border ─────────────────────────── */

.product-card {
  border-top: 3px solid transparent;
  transition: border-top-color 0.22s, box-shadow 0.22s;
}

.product-card:hover {
  border-top-color: var(--primary);
}

/* ─── Contact success ───────────────────────────────────── */

.contact-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeUpIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.contact-success.active {
  display: block;
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-success-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-success-msg {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
}

/* ─── Form feedback messages ────────────────────────────── */

#form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 12px;
  border-radius: 6px;
  margin-top: 12px;
}

#form-error {
  background: #ffebee;
  color: #c62828;
  padding: 12px;
  border-radius: 6px;
  margin-top: 12px;
}

/* ─── Scroll-to-top button ──────────────────────────────── */

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(10, 46, 34, 0.28);
  z-index: 300;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background-color: #0B6438;
  box-shadow: 0 8px 28px rgba(10, 46, 34, 0.4);
  transform: translateY(-2px);
}

/* ─── Responsive ────────────────────────────────────────── */

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-stats {
    max-width: 480px;
  }

  .sust-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-sub {
    white-space: normal;
  }

  .about {
    padding: 5rem 1.25rem;
  }

  .stat-card {
    padding: 2rem 1.25rem;
  }

  .contact {
    padding: 5rem 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 900px) {
  .sust-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── Product Detail Page ──────────────────────────────────── */

.product-hero {
  background: #F4FAF8;
  color: #0A2E22;
  padding: 60px 0 40px;
}

.breadcrumb {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #0A2E22;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
}

.detail-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.detail-card h3 {
  color: #0A2E22;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.properties-table {
  width: 100%;
  border-collapse: collapse;
}

.properties-table tr {
  border-bottom: 1px solid #f5f5f5;
}

.properties-table td {
  padding: 10px 0;
  font-size: 0.9rem;
}

.properties-table td:first-child {
  color: #666;
  width: 45%;
}

.properties-table td:last-child {
  font-weight: 600;
  color: #0A2E22;
}

.tag-pill {
  display: inline-block;
  background: #E8F5EE;
  color: #0A2E22;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 3px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.9rem;
}

.info-row span:first-child {
  color: #666;
}

.info-row span:last-child {
  font-weight: 600;
  color: #0A2E22;
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CTA Banner ──────────────────────────────────── */

.cta-banner {
  background: #F4FAF8;
  padding: 3rem 2rem;
  border-top: 1px solid #C8E6D5;
  border-bottom: 1px solid #C8E6D5;
}

.cta-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner-text { flex: 1; min-width: 280px; }

.cta-banner-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0A2E22;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cta-banner-sub {
  font-size: 1rem;
  color: #4A6655;
  line-height: 1.65;
  max-width: 560px;
}

.cta-banner-btn {
  display: inline-block;
  background: #0D7A45;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.cta-banner-btn:hover {
  background: #0B6438;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .cta-banner-btn { width: 100%; text-align: center; }
}

/* ─── Partners Bar ──────────────────────────────────────── */

.partners-bar {
  background: #fff;
  border-top: 1px solid #E8F5EE;
  border-bottom: 1px solid #E8F5EE;
  padding: 1rem 2rem;
}

.partners-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.partners-bar-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A6655;
  white-space: nowrap;
  flex-shrink: 0;
}

.partners-bar-divider {
  width: 1px;
  height: 24px;
  background: #C8E6D5;
  flex-shrink: 0;
}

.partners-bar-logos {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.partners-logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F4FAF8;
  border: 1px solid #C8E6D5;
  border-radius: 6px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0A2E22;
}

.partners-logo-pill img {
  height: 22px;
  width: auto;
}

.partners-logo-coming {
  background: #F4FAF8;
  border: 1px dashed #C8E6D5;
  border-radius: 6px;
  padding: 0.45rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #9ECFBF;
  font-style: italic;
}

@media (max-width: 600px) {
  .partners-bar-inner { flex-wrap: wrap; gap: 0.75rem; }
}

/* ── Products Split ── */
.products-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.products-split-image {
  overflow: hidden;
}

.products-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-split-content {
  background: #0A2E22;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.products-split-content .section-eyebrow {
  color: #2BCFC3;
}

.products-split-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.products-split-sub {
  font-size: 1rem;
  color: #9ECFBF;
  line-height: 1.75;
  margin: 0;
  max-width: 480px;
}

.products-split-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-tag {
  background: rgba(43, 207, 195, 0.15);
  border: 1px solid rgba(43, 207, 195, 0.35);
  color: #2BCFC3;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .products-split {
    grid-template-columns: 1fr;
  }

  .products-split-image {
    height: 260px;
  }

  .products-split-content {
    padding: 3rem 1.5rem;
  }
}
