/* ═══════════════════════════════════════════
   ASHER MATERIALS — CLEANER. GREENER. ASHER.
   Main Stylesheet — faithful to original design
═══════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --green:      #90C741;
  --green-dark: #7ab035;
  --navy:       #00235A;
  --navy-light: #002b6e;
  --teal:       #7EBEC5;
  --white:      #FFFFFF;
  --off-white:  #F5F5F5;
  --charcoal:   #414449;
  --text:       #666666;
  --heading:    #333333;
  --border:     #e2e2e2;
  --shadow-blue: 0px 12px 18px -6px rgba(100,130,208,.17);

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --nav-h:      80px;
  --section-v:  80px;
  --container:  1100px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  line-height: 1.7em;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }
p { padding-bottom: 1em; }
p:last-child { padding-bottom: 0; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 500;
  line-height: 1.4em;
  padding-bottom: 10px;
}

/* ─── Container ─── */
.container {
  width: 80%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 15px 35px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 300ms, background-color 300ms, border-color 300ms;
  line-height: 1;
}

.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.btn--light {
  background: var(--off-white);
  color: #000;
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost-white:hover {
  background: var(--green);
  border-color: var(--green);
}

/* ─── Section Labels (dual-heading style) ─── */
.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  padding-left: 16px;
  border-left: 5px solid var(--green);
  margin-bottom: 12px;
  line-height: 1.4;
}

.section-label--light { color: #fff; border-color: var(--green); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--heading);
  line-height: 1.2em;
  padding-bottom: 12px;
}
.section-title--light { color: var(--white); }

.section-intro {
  font-size: 15px;
  color: var(--text);
  max-width: 640px;
  line-height: 1.8;
}
.section-intro--light { color: rgba(255,255,255,.75); }

.section-header { margin-bottom: 50px; }

.btn-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}

.link-arrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 14px; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.12); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 80%;
  max-width: var(--container);
  margin: 0 auto;
}

.nav__logo img { height: 44px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7D8AA1;
  transition: color .25s;
}
.nav__links a:hover,
.nav__links a.active { color: #000; }

.nav__cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border: 1px solid var(--green);
  transition: background 300ms, color 300ms !important;
}
.nav__cta:hover {
  background: var(--white) !important;
  color: var(--green) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #000;
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--charcoal);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .45;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(65,68,73,.55);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: var(--container);
}

.hero__logo {
  margin: 0 auto 40px;
  max-width: 340px;
}
.hero__logo img { width: 100%; }

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15em;
  margin-bottom: 20px;
  padding-bottom: 0;
  letter-spacing: -.01em;
}

.hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; transform:scaleY(.6); }
  50%      { opacity:1;  transform:scaleY(1); }
}

/* ═══════════════════════════════════════
   ABOUT — "Beyond Sustainable"
═══════════════════════════════════════ */
.about {
  background: var(--navy);
  padding: 100px 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__tagline {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2em;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.about__tagline span {
  display: block;
  font-style: italic;
  color: var(--green);
}

.about__body {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__quote {
  border-left: 3px solid var(--green);
  padding-left: 20px;
  margin-bottom: 32px;
}
.about__quote p {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  padding-bottom: 8px;
}
.about__quote cite {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.about__stat-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  padding-bottom: 6px;
}
.about__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  padding-bottom: 0;
}

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.products {
  padding: var(--section-v) 0;
  background: var(--white);
}

.products__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.products__img-wrap {
  position: relative;
  overflow: hidden;
}
.products__img-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.products__img-wrap:hover img { transform: scale(1.04); }

.products__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.products__name {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1em;
  padding-bottom: 16px;
}

.products__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}

.products__features {
  list-style: none;
  margin: 0 0 28px;
}
.products__features li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.products__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* Approach cards */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.approach-card {
  background: var(--off-white);
  padding: 32px 24px;
  box-shadow: var(--shadow-blue);
  transition: transform .2s, box-shadow .2s;
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 20px 28px -8px rgba(100,130,208,.25);
}
.approach-card__num {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: rgba(144,199,65,.2);
  line-height: 1;
  margin-bottom: 12px;
}
.approach-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  padding-bottom: 0;
}
.approach-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
  padding-bottom: 0;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding: var(--section-v) 0;
  background: var(--off-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

/* Hover-box style cards (slide-top reveal) */
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-blue);
  padding: 36px 24px 32px;
  text-align: center;
  transition: box-shadow .25s;
  cursor: default;
}
.service-card:hover { box-shadow: 0px 20px 32px -8px rgba(100,130,208,.28); }

.service-card__front {
  transition: transform .35s ease, opacity .35s ease;
}
.service-card:hover .service-card__front {
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
}

.service-card__back {
  position: absolute;
  inset: 0;
  padding: 28px 20px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.service-card:hover .service-card__back { transform: translateY(0); }

.service-card__icon {
  width: 50px; height: 50px;
  color: var(--green);
  margin: 0 auto 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  padding-bottom: 0;
}

.service-card__back h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  padding-bottom: 0;
}
.service-card__back p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  padding-bottom: 0;
}

/* ═══════════════════════════════════════
   COMMITMENT
═══════════════════════════════════════ */
.commitment {
  padding: var(--section-v) 0;
  background: var(--white);
}

.commitment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.commitment__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--heading);
  padding-bottom: 16px;
}
.commitment__text p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}

.commitment__list { }

.commit-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.commit-item:first-child { border-top: 1px solid var(--border); }

.commit-item__num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: rgba(144,199,65,.35);
  min-width: 32px;
  line-height: 1;
  padding-top: 2px;
}
.commit-item__body h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  padding-bottom: 4px;
}
.commit-item__body p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 0;
}

/* ═══════════════════════════════════════
   PARTNERS
═══════════════════════════════════════ */
.partners {
  padding: var(--section-v) 0;
  background: var(--off-white);
}

.partners__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.partner-logo {
  opacity: .55;
  filter: grayscale(1);
  transition: opacity .25s, filter .25s;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); }

.partner-logo img {
  height: 44px; width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* ═══════════════════════════════════════
   NEWS
═══════════════════════════════════════ */
.news {
  padding: var(--section-v) 0;
  background: var(--white);
}

.news__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}

.news-card {
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}
.news-card__img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.news-card:hover .news-card__img img { transform: scale(1.04); }

.news-card__content { padding: 28px 28px 32px; }

.news-card__date {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.news-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  padding-bottom: 12px;
}

.news-card__excerpt {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  padding-bottom: 20px;
}

.news__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-brief {
  background: var(--off-white);
  padding: 20px 22px;
  box-shadow: var(--shadow-blue);
  transition: box-shadow .2s;
}
.news-brief:hover { box-shadow: 0px 16px 24px -6px rgba(100,130,208,.25); }

.news-brief__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.news-brief h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  padding-bottom: 6px;
}
.news-brief p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 0;
}

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
  background: var(--navy);
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: rgba(0,35,90,.82);
}
.cta-banner .container { position: relative; z-index: 1; }

.cta-banner__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  padding-bottom: 16px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
  padding-bottom: 0;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
  border-top: 3px solid var(--green);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__logo { height: 48px; width: auto; margin-bottom: 14px; }

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 24px;
  padding-bottom: 0;
}

.footer__newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  padding-bottom: 0;
}
.footer__form {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.footer__form input {
  flex: 1;
  min-width: 180px;
  padding: 11px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
}
.footer__form input::placeholder { color: rgba(255,255,255,.3); }
.footer__form input:focus { outline: none; border-color: var(--green); }
.footer__form .btn { border-radius: 0; font-size: 13px; padding: 11px 20px; }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}
.footer__nav-col h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  padding-bottom: 0;
}
.footer__nav-col li { margin-bottom: 8px; }
.footer__nav-col a,
.footer__nav-col p,
.footer__nav-col address p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  padding-bottom: 0;
}
.footer__nav-col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  padding-bottom: 0;
}
.footer__bottom-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(144,199,65,.3) !important;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  background: var(--navy);
  color: var(--white);
}
.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  padding-bottom: 12px;
  color: var(--white);
}
.contact-hero h1 em { color: var(--green); font-style: italic; }
.contact-hero > .container > p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 500px;
  padding-bottom: 0;
}

.contact-body {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 44px;
  box-shadow: var(--shadow-blue);
}
.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 28px;
  padding-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--green); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--heading);
  background: var(--white);
  border-radius: 0;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-blue);
}
.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  padding-bottom: 0;
}
.contact-info-card p { font-size: 14px; color: var(--text); padding-bottom: 0; line-height: 1.65; }
.contact-info-card a { color: var(--text); transition: color .2s; }
.contact-info-card a:hover { color: var(--green); }

.form-submit-msg {
  display: none;
  background: #f0f9e8;
  border: 1px solid var(--green);
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--navy);
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .products__grid       { grid-template-columns: repeat(2,1fr); }
  .services__grid       { grid-template-columns: repeat(2,1fr); }
  .about .container     { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  :root { --section-v: 56px; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s, opacity .3s;
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 12px 28px; }
  .nav__cta { margin: 8px 28px 0; display: inline-block; }

  .products__featured  { grid-template-columns: 1fr; }
  .commitment__grid    { grid-template-columns: 1fr; }
  .news__grid          { grid-template-columns: 1fr; }
  .news__sidebar       { display: none; }
  .footer__top         { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav         { grid-template-columns: repeat(2,1fr); }
  .contact-grid        { grid-template-columns: 1fr; }
  .contact-form        { padding: 28px 20px; }
  .form-row            { grid-template-columns: 1fr; }
  .about__stats        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-v: 48px; }

  .container { width: 90%; }
  .nav__inner { width: 90%; }
  .services__grid      { grid-template-columns: 1fr; }
  .products__grid      { grid-template-columns: 1fr; }
  .footer__nav         { grid-template-columns: 1fr; }
  .footer__bottom      { flex-direction: column; text-align: center; }
  .partners__logos     { gap: 28px; }
  .partner-logo img    { height: 32px; }
  .about__stats        { grid-template-columns: 1fr; }
  .btn-row             { flex-direction: column; align-items: center; }
  .btn                 { padding: 13px 20px; }
}
