:root {
  --teal: #1eaec0;
  --teal-dk: #158a9a;
  --green: #7dc142;
  --green-dk: #5e9a2e;
  --olive: #5c7a1a;
  --olive-dk: #3d5210;
  --cream: #f9f6ee;
  --sand: #ede9dc;
  --charcoal: #1c2014;
  --muted: #4a5240;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  /* background: rgba(249, 246, 238, 0.88); */
  background: white;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(92, 122, 26, 0.12);
  transition: background 0.3s;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 70px;
  height: 29px;
  background: var(--olive);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg {
  width: 26px;
  height: 26px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.logo-main span.t {
  color: var(--teal);
}
.logo-main span.g {
  color: var(--green);
}
.logo-sub {
  font-family: "Space Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-cta {
  background: var(--olive);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--teal) !important;
  color: var(--white) !important;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5% 4rem 7%;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
}
.hero-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}
.hero-headline .accent {
  color: var(--green);
  font-style: italic;
}
.hero-headline .accent2 {
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.8rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--olive);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--olive);
  color: var(--olive);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover {
  background: var(--olive);
  color: var(--white);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(92, 122, 26, 0.18);
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--olive);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.25rem;
  line-height: 1.4;
  max-width: 100px;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--olive-dk) 0%,
    var(--olive) 40%,
    var(--green-dk) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}
.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.mosaic-img {
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.m1 {
  background-image: url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?w=600&q=80");
}
.m2 {
  background-image: url("https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=600&q=80");
}
.m3 {
  background-image: url("https://images.unsplash.com/photo-1614149162883-504ce4d13909?w=600&q=80");
}
.m4 {
  background-image: url("https://images.unsplash.com/photo-1586201375761-83865001e31c?w=600&q=80");
}
.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.8rem;
  color: var(--white);
}
.hero-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.hero-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}
.hero-badge {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  background: var(--green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(125, 193, 66, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(125, 193, 66, 0);
  }
}

/* ─── TICKER ──────────────────────────────────────── */
.ticker {
  background: var(--charcoal);
  color: var(--green);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: inline-block;
  margin: 0 3rem;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ticker-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 3rem;
}

/* ─── SHARED SECTION ──────────────────────────────── */
section {
  padding: 7rem 7%;
}
.section-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 540px;
}

/* ─── ABOUT ───────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--white);
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  background: url("https://images.unsplash.com/photo-1560493676-04071c5f467b?w=800&q=80")
    center/cover;
}
.about-img-overlay {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background: url("https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=400&q=80")
    center/cover;
  border: 5px solid var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.about-stamp {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(125, 193, 66, 0.4);
}
.stamp-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.stamp-txt {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.vm-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.5rem;
  border-left: 4px solid var(--teal);
}
.vm-card.vision {
  border-color: var(--green);
}
.vm-label {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.vm-card.vision .vm-label {
  color: var(--green);
}
.vm-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── PRODUCTS ────────────────────────────────────── */
.products {
  background: var(--cream);
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(92, 122, 26, 0.15);
}
.product-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 32, 20, 0.5), transparent 60%);
}
.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  background: var(--green);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.p-rice {
  background-image: url("https://images.unsplash.com/photo-1586201375761-83865001e31c?w=600&q=80");
}
.p-ginger {
  background-image: url("https://images.unsplash.com/photo-1615485500704-8e990f9900f7?w=600&q=80");
}
.p-wheat {
  background-image: url("https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=600&q=80");
}
.p-beans {
  background-image: url("https://images.unsplash.com/photo-1599488615731-7e5c2823ff28?w=600&q=80");
}
.p-soya {
  background-image: url("https://images.unsplash.com/photo-1567306226416-28f0efdc88ce?w=600&q=80");
}
.p-cashew {
  background-image: url("https://images.unsplash.com/photo-1582515073490-39981397c445?w=600&q=80");
}
.product-body {
  padding: 1.5rem;
}
.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.product-usp {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
}

/* ─── SOLUTIONS ───────────────────────────────────── */
.solutions {
  background: var(--charcoal);
  color: var(--white);
}
.solutions .section-title {
  color: var(--white);
}
.solutions .section-body {
  color: rgba(255, 255, 255, 0.65);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 3.5rem;
}
.sol-card {
  background: var(--charcoal);
  padding: 2rem 1.5rem;
  transition: background 0.3s;
}
.sol-card:hover {
  background: var(--olive-dk);
}
.sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.sol-label {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.sol-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.sol-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ─── OPPORTUNITIES ───────────────────────────────── */
.opportunities {
  background: var(--white);
}
.opp-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}
.opp-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.opp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--sand);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.opp-item:hover {
  border-color: var(--teal);
  transform: translateX(6px);
}
.opp-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.opp-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.opp-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.5;
}
.opp-chart {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem;
}
.opp-chart h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.opp-chart p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.bar-label {
  font-size: 0.78rem;
  color: var(--muted);
  width: 70px;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  background: var(--sand);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(to right, var(--teal), var(--green));
  animation: grow 1.4s ease forwards;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes grow {
  to {
    transform: scaleX(1);
  }
}
.bar-pct {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--olive);
  width: 36px;
  text-align: right;
}
.self-suff {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ss-big {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.ss-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.ss-text strong {
  color: var(--charcoal);
}

/* ─── PARTNERS ────────────────────────────────────── */
.partners {
  background: var(--cream);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.partner-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.8rem;
  border-top: 4px solid var(--teal);
}
.partner-card.green-top {
  border-color: var(--green);
}
.partner-card.olive-top {
  border-color: var(--olive);
}
.partner-type {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.green-top .partner-type {
  color: var(--green);
}
.olive-top .partner-type {
  color: var(--olive);
}
.partner-list {
  list-style: none;
}
.partner-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.88rem;
  color: var(--muted);
}
.partner-list li:last-child {
  border-bottom: none;
}
.partner-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.green-top .partner-list li::before {
  background: var(--green);
}
.olive-top .partner-list li::before {
  background: var(--olive);
}

/* ─── CONTACT SECTION ─────────────────────────────── */
.contact-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {
}
.contact-info .section-body {
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-family: "Space Mono", monospace;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}
.contact-detail-val {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-top: 0.15rem;
}
.doc-links {
  margin-top: 2.5rem;
}
.doc-links h4 {
  font-size: 0.78rem;
  font-family: "Space Mono", monospace;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.doc-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--sand);
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.doc-link:hover {
  border-color: var(--teal);
  background: rgba(30, 174, 192, 0.05);
}
.doc-icon {
  font-size: 1.2rem;
}
.doc-ext {
  margin-left: auto;
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.contact-form-wrap p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--sand);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 100px;
  background: var(--olive);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--teal);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(125, 193, 66, 0.1);
  border-radius: 16px;
  border: 1px solid var(--green);
  margin-top: 1rem;
}
.form-success.show {
  display: block;
}
.form-success h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.form-success p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ─── CTA BAND ─────────────────────────────────────── */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--olive-dk),
    var(--olive) 45%,
    var(--teal-dk)
  );
  color: var(--white);
  text-align: center;
  padding: 6rem 7%;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(125, 193, 66, 0.12);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(30, 174, 192, 0.12);
  pointer-events: none;
}
.cta-band .section-tag {
  color: rgba(255, 255, 255, 0.6);
}
.cta-band .section-title {
  color: var(--white);
  margin: 0 auto 1.2rem;
  max-width: 700px;
}
.cta-band .section-body {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 2.5rem;
  text-align: center;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--olive);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-white:hover {
  background: var(--green);
  color: var(--white);
}
.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.55);
  padding: 4rem 7% 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.footer-logo-text span.t {
  color: var(--teal);
}
.footer-logo-text span.g {
  color: var(--green);
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-btn:hover {
  background: var(--teal);
  color: var(--white);
}
.footer-col h5 {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--teal);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

/* ─── SCROLL ANIMATIONS ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .opp-layout {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
}
