
:root {
  --brand: #549f57;
  --brand-dark: #3d7e40;
  --navy: #0b1b22;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: #fff;
}

img, video, svg { max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; }

.container-x {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.section-pad {
  padding: clamp(70px, 8vw, 120px) 0;
}

.section-kicker {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-subtitle {
  margin: 16px auto 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.text-brand { color: var(--brand); }

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

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal { animation: fadeInUp .75s ease both; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
.delay-4 { animation-delay: .32s; }

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1000;
 background: #0b1b22; 
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: .25s ease;
}

.site-header.header-scrolled {
  background: rgba(11, 27, 34, .98);
  box-shadow: 0 14px 38px rgba(0,0,0,.22);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  color: #fff;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(84,159,87,.24);
  flex: 0 0 auto;
}

.logo-title {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
  white-space: nowrap;
}

.logo-sub {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  flex: 1;
}

.nav-link {
  position: relative;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link:hover { color: #fff; }

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transform: translateX(-50%);
  transition: width .22s ease;
  border-radius: 99px;
}

.nav-link:hover::after { width: 100%; }

.header-actions {
  min-width: 250px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.lang-wrap { position: relative; }

.lang-btn {
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 95px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown button {
  width: 100%;
  padding: 9px 10px;
  border: 0;
  background: transparent;
  color: #1f2937;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.lang-dropdown button:hover { background: #f3f4f6; }

.whatsapp-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #22c55e;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.18);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  padding: 13px 21px;
  box-shadow: 0 14px 30px rgba(84,159,87,.22);
  transition: .22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  padding: 13px 22px;
  transition: .22s ease;
  background: rgba(255,255,255,.05);
}

.burger-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  background: rgba(255,255,255,.08);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: radial-gradient(circle at top right, rgba(84,159,87,.16), transparent 36%), var(--navy);
  transform: translateX(100%);
  transition: transform .34s ease;
  overflow-y: auto;
  padding: max(18px, env(safe-area-inset-top)) 22px 28px;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-top {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 22px;
}

.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.92);
  font-size: 20px;
  font-weight: 800;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

body.menu-open { overflow: hidden; }

/* HERO CLEAN BANNER */
.hero {
  background: linear-gradient(180deg, #f4f7f8 0%, #ffffff 100%);
  padding-top: 108px;
  padding-bottom: 72px;
}

.hero-inner {
  width: min(100% - 52px, 1530px);
  margin: 0 auto;
}

.hero-banner {
  position: relative;
  height: min(70vh, 680px);
  min-height: 540px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 22px 55px rgba(15,23,42,.16);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(.95) contrast(.95);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2,93,128,.72) 0%, rgba(2,93,128,.48) 34%, rgba(0,0,0,.16) 72%),
    linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.28));
}

.hero-content {
  position: absolute;
  left: clamp(38px, 6vw, 92px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 650px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.055em;
}

.hero-title span { color: #fff; }

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  line-height: 1.75;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-features,
.hero-dots,
.hero-video-badge {
  display: none !important;
}

/* PROCESS */
.process-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(84,159,87,.08), transparent 28%),
    linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
}

.process-shell {
  margin-top: 58px;
  position: relative;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.process-line {
  position: absolute;
  top: 63px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), #dfe7e2);
  z-index: 0;
}

.process-card {
  position: relative;
  min-height: 205px;
  border: 1px solid #e7eee9;
  background: rgba(255,255,255,.92);
  border-radius: 26px;
  padding: 30px 18px 24px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(15,23,42,.045);
  transition: .25s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(84,159,87,.45);
  box-shadow: 0 22px 55px rgba(84,159,87,.14);
}

.process-card.active {
  transform: translateY(-14px);
  border-color: rgba(84,159,87,.7);
  box-shadow: 0 26px 70px rgba(84,159,87,.22);
}

.process-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(84,159,87,.16), rgba(84,159,87,.07));
  color: var(--brand);
  display: grid;
  place-items: center;
}

.process-icon svg {
  width: 25px;
  height: 25px;
}

.step-label {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  margin-bottom: 8px;
}

.process-card h3 {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
  margin: 0;
  font-weight: 900;
}

.process-card p {
  color: #7b8794;
  font-size: 12px;
  line-height: 1.55;
  margin: 10px auto 0;
  max-width: 150px;
}

/* PRODUCTS */
.category-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cat-btn {
  border: 1px solid #dde5df;
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.cat-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(84,159,87,.18);
}

.product-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #edf0ee;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
  transition: .22s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-visual {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-visual.no-image i {
  width: 54px;
  height: 54px;
}

.product-body { padding: 22px; }

.product-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.product-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.product-card p {
  margin: 0;
  color: #7b8794;
  font-size: 14px;
  line-height: 1.65;
}

/* WHY */
.why-section { background: #f7faf8; }

.why-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  background: #fff;
  border: 1px solid #edf0ee;
  border-radius: 24px;
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,23,42,.035);
  transition: .22s ease;
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: rgba(84,159,87,.10);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.why-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.why-card p {
  margin: 0;
  color: #718096;
  font-size: 14px;
  line-height: 1.65;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.about-image {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #122a35, #1a3a48);
  position: relative;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.65));
}

.about-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.about-badge strong {
  color: var(--brand);
  display: block;
  font-size: 48px;
  line-height: .9;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4b5563;
  font-size: 15px;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: rgba(84,159,87,.12);
  color: var(--brand);
  flex: 0 0 auto;
}

.stats-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  border-radius: 22px;
  padding: 26px 16px;
  background: #f8faf9;
  border: 1px solid #edf0ee;
}

.stat-num {
  color: var(--brand);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  font-weight: 900;
}

/* MISSION */
.mission-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.mission-title {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.mission-box {
  position: relative;
  max-width: 980px;
  text-align: center;
}

.since-pill {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

/* PARTNERS */
.partners-wrap {
  overflow: hidden;
  margin-top: 40px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.partner-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.partner-logo {
  min-width: 170px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eef1ef;
  color: #9aa3af;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .05em;
}

/* FAQ */
.faq-section { background: #f7faf8; }

.faq-list {
  margin: 42px auto 0;
  max-width: 900px;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid #e5ebe7;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-toggle span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: .3s ease;
  color: #718096;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 22px;
}

.faq-item.open .faq-content {
  max-height: 260px;
  padding: 0 22px 20px;
}

/* CTA */
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: radial-gradient(circle at 86% 18%, rgba(84,159,87,.18), transparent 32%), var(--navy);
  padding: clamp(42px, 7vw, 78px) 24px;
  text-align: center;
  color: #fff;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
}

/* CONTACT */
.contact-section { background: #f7faf8; }

.contact-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
}

.contact-card {
  background: #fff;
  border: 1px solid #edf0ee;
  border-radius: 26px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}

.contact-card h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #dfe5e1;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.success-msg {
  display: none;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 14px;
  color: #166534;
  background: #dcfce7;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
}

.success-msg.show { display: block; }

.info-list { display: grid; gap: 18px; }

.info-item {
  display: flex;
  gap: 14px;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(84,159,87,.11);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.map-box {
  margin-top: 20px;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #edf0ee;
  background: linear-gradient(135deg, #eaf7ed, #d8efe0);
  display: grid;
  place-items: center;
  color: var(--brand);
  text-align: center;
}

/* CAREERS */
.careers-section {
  background: #fff;
  text-align: center;
  padding: 70px 0;
}

/* FOOTER */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 62px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .95fr 1.05fr;
  gap: 38px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer p,
.footer-links a,
.footer-contact span {
  color: rgba(255,255,255,.48);
  font-size: 14px;
  line-height: 1.7;
}

.footer h4 {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  outline: none;
  padding: 13px 14px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.34);
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
  display: grid;
  place-items: center;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .burger-btn {
    display: inline-flex;
  }

  .brand-logo {
    min-width: auto;
  }

  .header-inner {
    height: 72px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line {
    display: none;
  }

  .process-card.active {
    transform: none;
  }

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

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

@media (max-width: 768px) {
  .container-x {
    width: min(100% - 28px, 1280px);
  }

  .site-header {
    background: rgba(11,27,34,.96);
  }

  .header-inner {
    height: 68px;
  }

  .logo-title {
    font-size: 11px;
  }

  .logo-sub {
    font-size: 8px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 88px;
    padding-bottom: 52px;
    background: #f4f7f8;
  }

  .hero-inner {
    width: min(100% - 32px, 430px);
  }

  .hero-banner {
    height: 390px;
    min-height: 390px;
    border-radius: 14px;
  }

  .hero-video {
    object-position: center;
  }

  .hero-banner::after {
    background:
      linear-gradient(90deg, rgba(2,93,128,.76) 0%, rgba(2,93,128,.45) 52%, rgba(0,0,0,.22) 100%),
      linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.32));
  }

  .hero-content {
    left: 28px;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 300px;
  }

  .eyebrow {
    display: none;
  }

  .hero-title {
    font-size: 31px;
    line-height: 1.13;
    letter-spacing: -.035em;
  }

  .hero-title span {
    display: block;
  }

  .hero-text {
    display: none;
  }

  .hero-buttons {
    margin-top: 24px;
  }

  .hero-buttons .btn-primary {
    display: none;
  }

  .hero-buttons .btn-outline {
    width: auto;
    min-width: 150px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .process-shell {
    overflow-x: auto;
    padding: 8px 0 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .process-shell::-webkit-scrollbar {
    display: none;
  }

  .process-grid {
    display: flex;
    width: max-content;
    gap: 14px;
    padding: 0 4px;
  }

  .process-card {
    width: 230px;
    flex: 0 0 230px;
    min-height: 205px;
  }

  .process-card,
  .process-card.active,
  .process-card:hover {
    transform: none;
  }

  .product-grid,
  .why-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    height: 185px;
  }

  .about-image {
    min-height: 310px;
    border-radius: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

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

  .map-box {
    height: 240px;
  }

  .newsletter,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .partner-logo {
    min-width: 145px;
    height: 62px;
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

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

.nav-link.active { color:#fff; }
.nav-link.active::after { width:100%; }


.sectors-section {
  background: #fff;
}

.sector-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.sector-card {
  overflow: hidden;
  border-radius: 24px;
  background: #f8faf9;
  border: 1px solid #edf0ee;
  box-shadow: 0 8px 24px rgba(15,23,42,.035);
  transition: .25s ease;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.sector-img {
  height: 235px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(84,159,87,.10), rgba(11,27,34,.08));
}

.sector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.sector-card:hover .sector-img img {
  transform: scale(1.05);
}

.sector-body {
  padding: 26px 24px 30px;
}

.sector-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.sector-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
}

.sector-card:nth-child(2n) .sector-icon {
  background: var(--brand);
}

.sector-title-wrap h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.sector-title-wrap span {
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.sector-body p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.75;
}

.value-section {
  background: #f7f8fa;
}

.value-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.value-card {
  min-height: 250px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 34px 26px;
  transition: .24s ease;
}

.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(84,159,87,.30);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: rgba(84,159,87,.10);
  margin-bottom: 24px;
}

.value-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.value-card p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.industry-process {
  background: #fff;
}

.industry-process-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-process-card {
  position: relative;
  border-radius: 24px;
  padding: 30px 24px;
  background: #f8faf9;
  border: 1px solid #edf0ee;
}

.process-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}

.industry-process-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.industry-process-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.industry-cta {
  background: #f7f8fa;
  padding: clamp(80px, 8vw, 115px) 0;
}

.industry-cta-card {
  border-radius: 32px;
  padding: clamp(42px, 6vw, 72px) 24px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(84,159,87,.28), transparent 32%),
    var(--navy);
  overflow: hidden;
}

.industry-cta-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -.04em;
}

.industry-cta-card p {
  max-width: 720px;
  margin: 18px auto 30px;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid,
  .industry-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .industries-hero {
    min-height: 390px;
    padding-top: 115px;
  }

  .industries-hero h1 {
    font-size: 40px;
  }

  .sector-grid,
  .value-grid,
  .industry-process-grid {
    grid-template-columns: 1fr;
  }

  .sector-img {
    height: 220px;
  }
}
/* MOCKUP INDUSTRY CARDS */

.sectors-section{
  padding-top: 70px !important;
  padding-bottom: 80px !important;
  background: #fff !important;
}

.sectors-section .section-title{
  font-size: 38px !important;
  text-align: center;
}

.sectors-section .section-subtitle{
  display: none;
}

.sectors-section [style*="text-align:center"]::before{
  content: "OUR CORE INDUSTRIES";
  display: block;
  color: #549f57;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
  margin-bottom: 10px;
}

.sectors-section [style*="text-align:center"]::after{
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: #549f57;
  border-radius: 50px;
  margin: 16px auto 0;
}

.industries-4-grid{
  max-width: 960px !important;
  margin: 42px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 26px !important;
}

.industries-4-grid .sector-card{
  position: relative;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: none !important;
}

.industries-4-grid .sector-img{
  height: 185px !important;
  background: #eef3ef !important;
}

.industries-4-grid .sector-img img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.industries-4-grid .sector-body{
  position: relative;
  padding: 34px 24px 24px !important;
}

.industries-4-grid .sector-head{
  display: block !important;
  margin-bottom: 10px !important;
}

.industries-4-grid .sector-icon{
  position: absolute !important;
  left: 24px !important;
  top: -38px !important;
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #ef4b2b !important;
  border: 2px solid #ef4b2b !important;
  box-shadow: 0 10px 28px rgba(15,23,42,.12) !important;
  margin: 0 !important;
}

.industries-4-grid .sector-card:nth-child(2) .sector-icon{
  color: #ef4444 !important;
  border-color: #ef4444 !important;
}

.industries-4-grid .sector-card:nth-child(3) .sector-icon{
  color: #2288ff !important;
  border-color: #2288ff !important;
}

.industries-4-grid .sector-card:nth-child(4) .sector-icon{
  color: #dc3545 !important;
  border-color: #dc3545 !important;
}

.industries-4-grid .sector-title-wrap h3{
  margin-top: 8px !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  color: #071922 !important;
}

.industries-4-grid .sector-title-wrap span{
  display: none !important;
}

.industries-4-grid .sector-body p{
  max-width: 360px;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: #374151 !important;
}

.industries-4-grid .sector-card::after{
  content: "→";
  position: absolute;
  right: 24px;
  bottom: 26px;
  color: #549f57;
  font-size: 28px;
  font-weight: 400;
}

@media(max-width:768px){
  .industries-4-grid{
    grid-template-columns: 1fr !important;
  }

  .industries-4-grid .sector-img{
    height: 190px !important;
  }
}



.industries-hero{
  position: relative;
  min-height: 520px !important;
  padding-top: 125px !important;
  padding-bottom: 90px !important;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(2,10,20,.94) 0%,
      rgba(2,10,20,.78) 30%,
      rgba(2,10,20,.30) 58%,
      rgba(2,10,20,.10) 100%
    ),
    url('../images/industries/industrial-hero.jpg');

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.industries-hero-content{
  position: relative;
  z-index: 5;
  max-width: 610px !important;
}

.industries-hero h1{
  margin:0;
  font-size: clamp(56px, 5.8vw, 78px) !important;
  line-height: .98 !important;
  letter-spacing: -.06em !important;
  font-weight: 900;
  color:#fff;
}

.industries-hero h1 span{
  color:#fff !important;
}

.industries-hero p{
  margin-top: 24px !important;
  max-width: 560px !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,.88) !important;
}

.hero-buttons{
  display: none !important;
}

.hero-wave svg{
  height: 75px !important;
}

/* section closer like mockup */
.sectors-section{
  padding-top: 55px !important;
}

.industries-4-grid{
  margin-top: 38px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  gap: 28px !important;
}

.industries-4-grid .sector-card{
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(15,23,42,.08) !important;
}

.industries-4-grid .sector-img{
  height: 215px !important;
}

.industries-4-grid .sector-body{
  padding: 22px 24px 24px !important;
}

.industries-4-grid .sector-icon{
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  margin-top: -50px !important;
}

.industries-4-grid .sector-title-wrap h3{
  font-size: 18px !important;
}

.industries-4-grid .sector-body p{
  font-size: 13px !important;
  line-height: 1.55 !important;
}

@media(max-width:768px){

  .industries-hero{
    min-height: 520px !important;
    padding-top: 92px !important;
    background-position: center center !important;
  }

  .industries-hero-content{
    margin-left: 0 !important;
    padding: 0 22px 120px !important;
    max-width: 100% !important;
  }

  .hero-mini-badge{
    white-space: nowrap;
    font-size: 11px !important;
    letter-spacing: .16em !important;
  }

  .industries-hero h1{
    font-size: 52px !important;
    line-height: .95 !important;
    letter-spacing: -.05em !important;
    max-width: 100% !important;
  }

  .industries-hero h1 span{
    display: inline !important;
  }

  .industries-hero p{
    margin-top: 18px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }

  .hero-wave{
    height: 42px !important;
    bottom: -2px !important;
  }

  .industries-4-grid{
    grid-template-columns: 1fr !important;
  }

  .industries-4-grid .sector-img{
    height: 200px !important;
  }

}

/* HERO EXACT LIKE MOCKUP */

.industries-hero{
  min-height: 420px !important;
  padding-top: 110px !important;
  padding-bottom: 0 !important;
  align-items: center !important;

  background:
    linear-gradient(
      90deg,
      rgba(9,19,31,.68) 0%,
      rgba(3,12,22,.45) 34%,
      rgba(3,12,22,.16) 62%,
      rgba(3,12,22,.03) 100%
    ),
    url('../images/industries/industrial-hero.jpg') center/cover no-repeat !important;
}

.industries-hero-content{
  max-width: 560px !important;
  padding-bottom: 75px !important;
  margin-left: 55px !important;
}

.hero-mini-badge{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  color: #7ed957 !important;
  font-size: 13px !important;
  letter-spacing: .22em !important;
  margin-bottom: 18px !important;
}

.hero-mini-badge::after{
  content: "";
  width: 24px;
  height: 2px;
  background: #549f57;
  display: inline-block;
  margin-left: 8px;
}

.hero-mini-dot{
  display: none !important;
}

.industries-hero h1{
  font-size: 42px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  max-width: 520px !important;
}

.industries-hero p{
  max-width: 500px !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin-top: 20px !important;
}

.hero-wave svg{
  height: 88px !important;
}
.hero-wave{
  position:absolute !important;
  left:0 !important;
  bottom:-1px !important;
  width:100% !important;
  height:78px !important;
  z-index:5 !important;
  pointer-events:none !important;
}

.hero-wave svg{
  width:100% !important;
  height:100% !important;
  display:block !important;
}

.industries-hero{
  min-height:420px !important;
  padding-top:105px !important;
  padding-bottom:0 !important;
}

.industries-hero-content{
  padding-bottom:85px !important;
}

.industries-hero{
  min-height: 600px !important;
  background-position: center top !important;
  background-size: cover !important;
}

.industries-hero-content{
  padding-top: 25px !important;
}

.hero-wave{
  height: 62px !important;
}
.industries-4-grid .sector-body{
  padding-right: 64px !important;
}

.industries-4-grid .sector-card::after{
  right: 24px !important;
  bottom: 28px !important;
}
@media(max-width:768px){
  .industries-4-grid .sector-body{
    padding-right: 58px !important;
  }

  .industries-4-grid .sector-card::after{
    right: 22px !important;
    bottom: 24px !important;
    font-size: 24px !important;
  }
}


@keyframes heroZoom{
   from{
      transform:scale(1);
   }
   to{
      transform:scale(1.08);
   }
}
@media (max-width: 768px){

  .industries-hero{
    min-height: 410px !important;
    padding-top: 76px !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    background-position: center top !important;
  }

  .industries-hero::after{
    display: none !important;
  }

  .industries-hero .container-x{
    width: 100% !important;
  }

  .industries-hero-content{
    margin-left: 0 !important;
    padding: 54px 18px 90px !important;
    max-width: 100% !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .hero-mini-badge{
    font-size: 10px !important;
    letter-spacing: .14em !important;
    margin-bottom: 14px !important;
  }

  .hero-mini-badge::after{
    width: 18px !important;
  }

  .industries-hero h1{
    max-width: 330px !important;
    font-size: 32px !important;
    line-height: 1.05 !important;
    letter-spacing: -.045em !important;
  }

  .industries-hero h1 span{
    display: block !important;
  }

  .hero-wave{
    height: 82px !important;
    bottom: -2px !important;
    z-index: 8 !important;
  }

  .hero-wave svg{
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    transform: none !important;
  }

  .sectors-section{
    position: relative !important;
    margin-top: -1px !important;
    padding-top: 54px !important;
    background: #fff !important;
    z-index: 9 !important;
  }
}
.card-arrow{
   background:linear-gradient(135deg,#549f57,#7dd56f);
   color:#fff;
   width:48px;
   height:48px;
   border-radius:50%;
}
.mobile-toggle{
   width:54px;
   height:54px;
}


