:root {
  --ink: #10231b;
  --muted: #66736d;
  --green: #0f6b4d;
  --green-dark: #084131;
  --lime: #b7d44a;
  --gold: #d8a548;
  --surface: #ffffff;
  --soft: #f3f7f1;
  --line: rgba(16, 35, 27, 0.12);
  --shadow: 0 24px 70px rgba(12, 33, 24, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: #fff; padding: 10px 14px; z-index: 99; }
.skip-link:focus { left: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(5, 28, 21, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { background: rgba(5, 28, 21, 0.96); box-shadow: 0 12px 34px rgba(0,0,0,0.18); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img, .mobile-nav img, .site-footer img { width: 210px; height: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }
.brand { flex: 0 1 auto; min-width: 0; }
.desktop-nav { display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,0.86); font-size: 0.9rem; font-weight: 600; }
.desktop-nav a { transition: color 0.2s ease; }
.desktop-nav a:hover { color: #fff; }
.menu-toggle { display: none; flex: 0 0 auto; min-width: 74px; height: 42px; border: 1px solid rgba(255,255,255,0.35); color: #fff; background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 0 12px; font-weight: 700; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; }
.menu-toggle strong { display: none; }
.mobile-nav {
  display: none;
  padding: 18px 20px 24px;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mobile-nav a { display: block; color: #fff; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }

.hero { min-height: 100vh; position: relative; overflow: hidden; display: grid; align-items: center; color: #fff; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(3,17,13,0.82), transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-slider, .slide, .hero-overlay { position: absolute; inset: 0; }
.slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6200ms ease;
}
.slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay { background: linear-gradient(90deg, rgba(3,17,13,0.84) 0%, rgba(3,17,13,0.58) 43%, rgba(3,17,13,0.2) 100%), linear-gradient(0deg, rgba(3,17,13,0.52), rgba(3,17,13,0.12)); }
.hero-content { position: relative; z-index: 3; max-width: 760px; margin-left: max(20px, calc((100vw - 1180px) / 2)); padding-top: 84px; }
.eyebrow { margin: 0 0 14px; color: var(--lime); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(3rem, 7vw, 6.8rem); line-height: 0.95; letter-spacing: 0; max-width: 860px; font-weight: 700; }
h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 4.25rem); line-height: 1.02; letter-spacing: 0; font-weight: 700; }
h3 { margin: 0 0 10px; font-size: 1.2rem; line-height: 1.25; font-weight: 650; }
.hero-content p:not(.eyebrow) { font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 720px; color: rgba(255,255,255,0.88); margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-intel {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 92px;
  width: min(380px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  background: rgba(5, 28, 21, 0.48);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.hero-intel div { padding: 18px 16px; border-right: 1px solid rgba(255,255,255,0.16); }
.hero-intel div:last-child { border-right: 0; }
.hero-intel div.is-active { background: rgba(183,212,74,0.12); }
.hero-intel strong { display: block; color: var(--lime); font-size: 1.1rem; line-height: 1.1; }
.hero-intel span { display: block; color: rgba(255,255,255,0.76); font-size: 0.76rem; font-weight: 700; margin-top: 5px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border-radius: var(--radius); border: 1px solid transparent; font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--lime); color: #17220f; box-shadow: 0 14px 32px rgba(183,212,74,0.22); }
.btn-secondary { border-color: rgba(255,255,255,0.42); color: #fff; background: rgba(255,255,255,0.08); }
.btn-whatsapp { background: var(--green); color: #fff; margin-top: 18px; }
.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.11);
  font-size: 0.76rem;
  font-weight: 800;
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-dots { position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.slider-dots button { width: 34px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,0.4); }
.slider-dots button.is-active { background: #fff; }

.trust-strip {
  overflow: hidden;
  background: #071f18;
  color: rgba(255,255,255,0.82);
  border-block: 1px solid rgba(255,255,255,0.08);
}
.trust-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 16px 0;
  animation: trustMove 32s linear infinite;
}
.trust-track span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}
@keyframes trustMove {
  from { transform: translateX(0); }
  to { transform: translateX(-42%); }
}

.section { padding: 112px 0; }
.soft-band { background: var(--soft); }
.split { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 58px; align-items: start; }
.section-copy p, .section-heading p, .contact-copy p { color: var(--muted); font-size: 1.05rem; }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.values-panel { background: var(--green-dark); color: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.values-panel { position: relative; overflow: hidden; }
.values-panel::before {
  content: "";
  position: absolute;
  inset: -30% -18% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,212,74,0.28), transparent 62%);
}
.panel-kicker {
  position: relative;
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--lime);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}
.values-panel p { color: rgba(255,255,255,0.78); margin-bottom: 26px; }
.value-tags { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.value-tags li { border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 7px 12px; color: rgba(255,255,255,0.86); font-size: 0.9rem; }
.capability-row {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.capability-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 28px rgba(16,35,27,0.06);
}

.product-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(4, 30, 22, 0.58) 0%, rgba(8, 65, 49, 0.34) 38%, rgba(255,255,255,0.18) 100%),
    url("../images/product_section_image.jpeg") center/cover fixed;
  color: #fff;
}
.product-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 16, 12, 0.1), rgba(2, 16, 12, 0.2)),
    radial-gradient(circle at 18% 18%, rgba(183,212,74,0.18), transparent 26%);
  pointer-events: none;
}
.product-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(255,255,255,0.28), transparent);
  pointer-events: none;
}
.product-showcase .container {
  position: relative;
  z-index: 1;
}
.product-showcase .section-heading {
  max-width: 720px;
}
.product-showcase .section-heading p,
.product-showcase .eyebrow {
  color: var(--lime);
}
.product-showcase .section-heading h2 {
  color: #fff;
  text-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.feature-grid, .product-grid, .group-grid, .commitment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature-card, .product-card, .group-card, .commit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 216px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.feature-card::before, .product-card::before, .group-card::before, .commit-card::before, .partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(183,212,74,0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.feature-card:hover::before, .product-card:hover::before, .group-card:hover::before, .commit-card:hover::before, .partner-card:hover::before { opacity: 1; }
.feature-card:hover, .product-card:hover, .group-card:hover, .commit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(15,107,77,0.28); }
.feature-card { position: relative; overflow: hidden; }
.feature-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(15,107,77,0.15);
  border-radius: 50%;
}
.feature-card span { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; background: var(--soft); color: var(--green); border-radius: 50%; font-weight: 700; margin-bottom: 24px; }
.feature-card small {
  display: inline-flex;
  margin-left: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.feature-card p, .product-card p, .group-card p, .commit-card p { color: var(--muted); margin: 0; }
.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.14));
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,0.34);
  box-shadow: 0 24px 72px rgba(4, 30, 22, 0.26);
  backdrop-filter: blur(18px) saturate(1.18);
  color: #fff;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.34), transparent 42%);
  opacity: 0.72;
  pointer-events: none;
}
.product-card > * {
  position: relative;
  z-index: 1;
}
.product-card h3,
.product-card p {
  color: #fff;
}
.product-card p {
  text-shadow: 0 1px 14px rgba(0,0,0,0.22);
}
.product-card h3::before { content: ""; display: block; width: 46px; height: 4px; background: var(--gold); border-radius: 999px; margin-bottom: 18px; }
.product-card { min-height: 310px; display: flex; flex-direction: column; }
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
  color: #fff;
}
.product-top span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}
.product-top b {
  align-self: start;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.84);
  white-space: nowrap;
  background: rgba(255,255,255,0.12);
}
.product-card ul {
  list-style: none;
  padding: 18px 0 0;
  margin: auto 0 0;
  display: grid;
  gap: 8px;
}
.product-card li {
  color: #fff;
  font-weight: 650;
  font-size: 0.9rem;
}
.product-card li::before { content: "+"; color: var(--gold); margin-right: 8px; font-weight: 700; }

.network {
  background:
    linear-gradient(90deg, rgba(243,247,241,0.92), rgba(255,255,255,0.96)),
    url("../images/hero-2.jpg") center/cover;
}
.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 58px;
  align-items: center;
}
.network-map {
  min-height: 420px;
  position: relative;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 58%, rgba(183,212,74,0.24), transparent 18%),
    radial-gradient(circle at 58% 40%, rgba(216,165,72,0.18), transparent 20%),
    linear-gradient(135deg, #08271e, #0f6b4d);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.network-map::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
}
.pin {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}
.pin::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 8px;
}
.pin-kerala { left: 16%; bottom: 24%; }
.pin-india { left: 46%; top: 34%; }
.pin-global { right: 14%; top: 18%; }
.route {
  position: absolute;
  border-top: 2px dashed rgba(255,255,255,0.46);
  transform-origin: left;
}
.route-one { width: 240px; left: 28%; bottom: 34%; transform: rotate(-24deg); }
.route-two { width: 220px; left: 56%; top: 36%; transform: rotate(-18deg); }
.network-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.network-list span {
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--green-dark);
}

.chain { background: var(--green-dark); color: #fff; }
.chain .section-heading p { color: rgba(255,255,255,0.68); }
.process-flow { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; position: relative; }
.process-flow div { min-height: 168px; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); display: grid; align-content: center; gap: 8px; background: rgba(255,255,255,0.06); position: relative; padding: 20px; }
.process-flow div:not(:last-child)::after { content: "->"; position: absolute; right: -13px; color: var(--lime); font-weight: 700; z-index: 2; }
.process-flow span { font-weight: 700; }
.process-flow p { color: rgba(255,255,255,0.68); margin: 0; font-size: 0.86rem; }

.stats-band { background: #0b2f25; color: #fff; padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { text-align: center; border-right: 1px solid rgba(255,255,255,0.16); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(3rem, 7vw, 6rem); line-height: 1; color: var(--lime); }
.stat strong::after { content: "+"; }
.stat:last-child strong::after { content: "%"; }
.stat span { color: rgba(255,255,255,0.78); font-weight: 700; }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-card { min-height: 158px; display: grid; place-items: center; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; color: var(--green-dark); box-shadow: 0 14px 44px rgba(16,35,27,0.08); text-align: center; padding: 22px; position: relative; overflow: hidden; }
.partner-card strong { font-size: 1.35rem; }
.partner-card span { color: var(--muted); font-size: 0.9rem; font-weight: 650; }
.group-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(4, 30, 22, 0.62) 0%, rgba(8, 65, 49, 0.34) 42%, rgba(255,255,255,0.16) 100%),
    url("../images/group_of_compines.jpeg") center/cover fixed;
  color: #fff;
}
.group-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 16, 12, 0.08), rgba(2, 16, 12, 0.2)),
    radial-gradient(circle at 18% 16%, rgba(183,212,74,0.18), transparent 26%);
  pointer-events: none;
}
.group-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(255,255,255,0.26), transparent);
  pointer-events: none;
}
.group-showcase .container {
  position: relative;
  z-index: 1;
}
.group-showcase .section-heading p,
.group-showcase .eyebrow {
  color: var(--lime);
}
.group-showcase .section-heading h2 {
  color: #fff;
  text-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.group-grid { position: relative; }
.group-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  border-top: 1px dashed rgba(255,255,255,0.34);
}
.group-card {
  min-height: 190px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.14));
  border-color: rgba(255,255,255,0.34);
  box-shadow: 0 24px 72px rgba(4, 30, 22, 0.26);
  backdrop-filter: blur(18px) saturate(1.18);
}
.group-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.34), transparent 42%);
  opacity: 0.72;
  pointer-events: none;
}
.group-card > * {
  position: relative;
  z-index: 1;
}
.group-card h3,
.group-card p {
  color: #fff;
}
.group-card p {
  text-shadow: 0 1px 14px rgba(0,0,0,0.22);
}
.group-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 20px;
}
.commitment { background: linear-gradient(135deg, #10231b 0%, #0f6b4d 100%); color: #fff; }
.commit-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.commit-card p { color: rgba(255,255,255,0.78); }

.faq-list details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-list summary { cursor: pointer; font-weight: 700; font-size: 1.08rem; }
.faq-list p { color: var(--muted); margin-bottom: 0; }
.contact { background: var(--soft); padding-bottom: 70px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 42px; align-items: start; }
.contact-details { display: grid; gap: 8px; margin-top: 24px; }
.contact-details a, .contact-details p { color: var(--green-dark); font-weight: 700; margin: 0; }
.inquiry-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.inquiry-types span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 700;
}
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--green-dark); font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(16,35,27,0.18); border-radius: var(--radius); padding: 13px 14px; outline: none; background: #fbfcfb; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(15,107,77,0.1); }
.contact-form .is-invalid { border-color: #b42318; }
.form-status { margin: 0; color: var(--green); font-weight: 700; min-height: 24px; }
.map-wrap { margin-top: 34px; }
.map-wrap iframe { width: 100%; height: 330px; border: 0; border-radius: var(--radius); filter: saturate(0.86); }

.site-footer { background: #061b15; color: rgba(255,255,255,0.74); padding: 34px 0 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner a { color: #fff; font-weight: 700; }
.footer-contact { max-width: 560px; }
.footer-contact p { margin: 0 0 6px; }
.footer-contact address {
  margin: 0 0 6px;
  font-style: normal;
  color: rgba(255,255,255,0.66);
}
.footer-bottom {
  margin-top: 28px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(183,212,74,0.72);
}
.footer-bottom strong {
  color: #fff;
  font-weight: 700;
}
.floating-whatsapp, .back-to-top {
  position: fixed;
  z-index: 45;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}
.floating-whatsapp { bottom: 92px; background: #25d366; color: #062114; }
.back-to-top { bottom: 28px; background: #fff; color: var(--green-dark); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; position: fixed; top: 16px; left: 300px; z-index: 70; }
  .menu-toggle span { display: none; }
  .menu-toggle strong { display: block; }
  .mobile-nav.is-open { display: block; }
  .split, .contact-grid, .network-grid { grid-template-columns: 1fr; }
  .feature-grid, .product-grid, .group-grid, .commitment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-flow div:not(:last-child)::after { display: none; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, 1180px); }
  .site-header { background: rgba(5, 28, 21, 0.9); }
  .header-inner { min-height: 72px; gap: 12px; }
  .brand img { width: 156px; }
  .mobile-nav img, .site-footer img { width: 168px; }
  .menu-toggle { min-width: 66px; height: 40px; padding: 0 10px; }
  .hero {
    min-height: 100svh;
    align-items: start;
    padding-top: 72px;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3,17,13,0.52) 0%, rgba(3,17,13,0.2) 22%, rgba(3,17,13,0.72) 64%, rgba(3,17,13,0.9) 100%),
      linear-gradient(90deg, rgba(3,17,13,0.7), rgba(3,17,13,0.16));
  }
  .hero-content {
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 auto;
    padding-top: clamp(130px, 26svh, 230px);
  }
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.08em; margin-bottom: 12px; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.8rem); line-height: 1.02; max-width: 10ch; }
  h2 { font-size: clamp(2rem, 9vw, 2.75rem); line-height: 1.06; }
  .hero-content p:not(.eyebrow) { font-size: 1rem; line-height: 1.55; max-width: 34ch; margin-top: 18px; }
  .hero-actions { gap: 10px; margin-top: 24px; }
  .hero-intel { display: none; }
  .hero-actions, .footer-inner { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .slider-arrow { display: none; }
  .slider-dots { display: none; }
  .section { padding: 72px 0; }
  .product-showcase {
    background:
      linear-gradient(180deg, rgba(4, 30, 22, 0.9) 0%, rgba(8, 65, 49, 0.78) 44%, rgba(255,255,255,0.86) 100%),
      url("../images/product_section_image.jpeg") center/cover;
  }
  .group-showcase {
    background:
      linear-gradient(180deg, rgba(4, 30, 22, 0.82) 0%, rgba(8, 65, 49, 0.62) 44%, rgba(255,255,255,0.42) 100%),
      url("../images/group_of_compines.jpeg") center/cover;
  }
  .feature-grid, .product-grid, .group-grid, .commitment-grid, .partner-grid, .stats-grid, .process-flow { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 30px; }
  .feature-card, .product-card, .group-card, .commit-card, .partner-card { padding: 22px; min-height: auto; }
  .product-top { display: grid; grid-template-columns: auto 1fr; align-items: center; margin-bottom: 20px; }
  .product-top b { justify-self: end; white-space: normal; text-align: right; }
  .network-map { min-height: 300px; }
  .network-list { grid-template-columns: 1fr; }
  .pin { font-size: 0.82rem; padding: 8px 10px; }
  .route-one { width: 150px; }
  .route-two { width: 130px; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.16); padding: 20px 0; }
  .stat:last-child { border-bottom: 0; }
  .values-panel, .contact-form { padding: 24px; }
  .floating-whatsapp, .back-to-top { right: 16px; width: 48px; height: 48px; }
  .floating-whatsapp { bottom: 84px; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
  .floating-whatsapp.is-visible { opacity: 1; pointer-events: auto; }
  .back-to-top { bottom: 26px; }
  .footer-inner { text-align: left; }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    font-size: 0.84rem;
  }
}

@media (max-width: 380px) {
  .brand img { width: 138px; }
  .menu-toggle { left: 244px; }
  .menu-toggle { min-width: 62px; font-size: 0.88rem; }
  h1 { font-size: 2.45rem; }
  .hero-content { padding-top: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
