/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.section-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; background: #dcfce7; color: #16a34a;
  font-family: var(--font-main); font-size: 0.78rem; font-weight: 600;
  border-radius: 50px; margin-bottom: 14px;
}
.section-pill--light { background: rgba(255,255,255,0.12); color: #86efac; }

.section-heading { font-family: var(--font-main); font-size: clamp(1.8rem,3.2vw,2.6rem); font-weight: 800; color: #0f172a; line-height: 1.15; margin-bottom: 12px; }
.section-heading em { font-style: normal; color: #16a34a; }
.section-heading--white { color: #fff; }
.section-heading--white em { color: #4ade80; }

.section-sub { font-size: 0.93rem; color: #64748b; line-height: 1.7; max-width: 560px; }
.section-sub--light { color: rgba(255,255,255,0.65); max-width: 560px; }

/* ============================================================
   SCROLL-REVEAL — will-animate pattern (safe: visible by default)
   JS adds will-animate ONLY to off-screen elements, then visible on enter
   ============================================================ */
.prod__card.will-animate,
.hiw__step.will-animate,
.why__card.will-animate,
.news__card.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.prod__card.will-animate.visible,
.hiw__step.will-animate.visible,
.why__card.will-animate.visible,
.news__card.will-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.prod { padding: 100px 0 110px; background: #fff; }

.prod__header { text-align: center; margin-bottom: 56px; }
.prod__header .section-sub { margin: 0 auto; }

.prod__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 36px; }

.prod__card {
  border: 2px solid #e2e8f0; border-radius: 20px; padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.prod__card:hover { border-color: #16a34a; transform: translateY(-4px); box-shadow: 0 16px 40px rgba(22,163,74,0.1); }

.prod__card--featured {
  border-color: #16a34a;
  background: linear-gradient(160deg, #f0fdf4 0%, #fff 60%);
  box-shadow: 0 8px 32px rgba(22,163,74,0.12);
}
.prod__card--featured::before {
  content: '★ Most Popular';
  position: absolute; top: 16px; right: -28px;
  background: #16a34a; color: #fff;
  font-family: var(--font-main); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.06em; padding: 4px 36px;
  transform: rotate(45deg); transform-origin: center;
}

.prod__badge { font-family: var(--font-main); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #16a34a; }

.prod__blend { font-family: var(--font-main); font-size: 2.8rem; font-weight: 900; color: #0f172a; line-height: 1; }
.prod__card--featured .prod__blend { color: #16a34a; }

.prod__ratio { font-size: 0.8rem; color: #64748b; font-family: var(--font-main); }

.prod__use { font-size: 0.85rem; color: #64748b; line-height: 1.65; }

.prod__specs { border-top: 1px solid #e2e8f0; padding-top: 14px; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.prod__specs li { display: flex; justify-content: space-between; font-size: 0.82rem; }
.prod__specs li span:first-child { color: #64748b; }
.prod__specs li span:last-child { font-weight: 600; color: #0f172a; }

.prod__cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 14px;
  font-family: var(--font-main); font-size: 0.85rem; font-weight: 600; color: #16a34a;
  border-top: 1px solid #e2e8f0; width: 100%;
  transition: gap 0.3s;
}
.prod__card--featured .prod__cta { color: #16a34a; border-color: #bbf7d0; }
.prod__card:hover .prod__cta { gap: 10px; }

.prod__note { text-align: center; font-size: 0.85rem; color: #94a3b8; display: flex; align-items: center; justify-content: center; gap: 8px; }
.prod__note i { color: #16a34a; }
.prod__note strong { color: #0f172a; }

@media (max-width: 960px) { .prod__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .prod { padding: 60px 0 70px; } .prod__grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw { background: #0b2416; padding: 100px 0 110px; }

.hiw__header { text-align: center; margin-bottom: 64px; }
.hiw__header .section-sub { margin: 0 auto; }

.hiw__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0;
}

.hiw__step {
  text-align: center; padding: 0 16px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

.hiw__num {
  font-family: var(--font-main); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; color: #4ade80;
}

.hiw__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 2px solid rgba(74,222,128,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #4ade80;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hiw__step:hover .hiw__icon { background: rgba(74,222,128,0.1); border-color: #4ade80; transform: scale(1.08); }

.hiw__step h3 { font-family: var(--font-main); font-size: 1rem; font-weight: 700; color: #f1f5f9; }
.hiw__step p { font-size: 0.85rem; color: #94a3b8; line-height: 1.65; }

.hiw__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-main); font-size: 0.8rem; font-weight: 600;
  color: #4ade80; transition: gap 0.3s;
}
.hiw__link:hover { gap: 10px; }

.hiw__connector {
  display: flex; align-items: flex-start; padding-top: 32px;
  color: rgba(74,222,128,0.4); font-size: 1.1rem;
}

@media (max-width: 900px) {
  .hiw__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hiw__connector { display: none; }
}
@media (max-width: 560px) {
  .hiw { padding: 60px 0 70px; }
  .hiw__steps { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { padding: 100px 0 110px; background: #f8fafc; }

.why__header { text-align: center; margin-bottom: 56px; }
.why__header .section-sub { margin: 0 auto; }

.why__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.why__card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.why__card:hover { border-color: #16a34a; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(22,163,74,0.1); }

.why__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #dcfce7; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #16a34a; margin-bottom: 18px;
  transition: background 0.3s, transform 0.3s;
}
.why__card:hover .why__icon { background: #16a34a; color: #fff; transform: rotate(-5deg) scale(1.05); }

.why__card h3 { font-family: var(--font-main); font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.why__card p { font-size: 0.88rem; color: #64748b; line-height: 1.7; }

@media (max-width: 900px) { .why__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .why { padding: 60px 0 70px; } .why__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CERTIFICATIONS — scrolling marquee
   ============================================================ */
.certs { padding: 48px 0; background: #fff; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; overflow: hidden; }

.certs__label { text-align: center; font-family: var(--font-main); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #94a3b8; margin-bottom: 28px; }

.certs__track-wrap { overflow: hidden; }

.certs__track {
  display: flex; align-items: center; gap: 0;
  animation: certScroll 22s linear infinite;
  width: max-content;
}
.certs__track:hover { animation-play-state: paused; }

@keyframes certScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.certs__item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 48px;
  font-family: var(--font-main); font-size: 0.9rem; font-weight: 600; color: #0f172a;
  white-space: nowrap;
  border-right: 1px solid #e2e8f0;
}
.certs__item i { color: #16a34a; font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: #0b2416; padding: 100px 0 110px; }

.testi__header { text-align: center; margin-bottom: 56px; }
.testi__header .section-sub { margin: 0 auto; }

.testi__slider { overflow: hidden; }

.testi__track {
  display: flex; gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testi__card {
  min-width: calc((100% - 48px) / 3); flex-shrink: 0;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.3s;
}
.testi__card:hover { border-color: rgba(74,222,128,0.3); }

.testi__stars { color: #facc15; font-size: 0.9rem; display: flex; gap: 3px; }

.testi__quote { font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.75; font-style: italic; flex: 1; }

.testi__author { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }

.testi__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(74,222,128,0.15); border: 2px solid #4ade80;
  display: flex; align-items: center; justify-content: center;
  color: #4ade80; font-size: 0.9rem; flex-shrink: 0;
}

.testi__author strong { display: block; font-family: var(--font-main); font-size: 0.88rem; font-weight: 700; color: #f1f5f9; }
.testi__author span { font-size: 0.78rem; color: #94a3b8; }

.testi__controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }

.testi__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 0.85rem; cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.testi__arrow:hover { background: #16a34a; border-color: #16a34a; }

.testi__dots { display: flex; gap: 8px; align-items: center; }

.testi__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.testi__dot.active { background: #4ade80; width: 24px; border-radius: 4px; }

@media (max-width: 960px) { .testi__card { min-width: calc((100% - 24px) / 2); } }
@media (max-width: 768px) { .testi__card { min-width: 100%; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; padding: 90px 0; overflow: hidden; }

.cta-banner__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #14532d 0%, #16a34a 50%, #22c55e 100%);
}
.cta-banner__bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}

.cta-banner__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50px;
  font-family: var(--font-main); font-size: 0.78rem; font-weight: 600; color: #fff;
  margin-bottom: 16px;
}

.cta-banner__heading {
  font-family: var(--font-main); font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 12px;
}

.cta-banner__sub { font-size: 0.93rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 520px; }

.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

.cta-banner__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 50px;
  font-family: var(--font-main); font-size: 0.9rem; font-weight: 700;
  text-decoration: none; transition: all 0.3s; white-space: nowrap;
}
.cta-banner__btn--primary { background: #fff; color: #16a34a; }
.cta-banner__btn--primary:hover { background: #071d10; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.cta-banner__btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.cta-banner__btn--outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

@media (max-width: 768px) { .cta-banner__inner { flex-direction: column; text-align: center; } .cta-banner__actions { justify-content: center; } .cta-banner { padding: 60px 0; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 100px 0 110px; background: #fff; }

.gallery__header { text-align: center; margin-bottom: 16px; }
.gallery__header .section-pill { display: block; width: fit-content; margin: 0 auto 14px; }
.gallery__header .section-sub { margin: 0 auto 36px; }

/* ---- Filter bar ---- */
.gallery__filters {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 60px; padding: 6px; width: fit-content; margin-left: auto; margin-right: auto;
}

.gallery__filter {
  padding: 9px 22px; border-radius: 50px; border: none;
  font-family: var(--font-main); font-size: 0.85rem; font-weight: 600; color: #64748b;
  cursor: pointer; background: transparent;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  display: flex; align-items: center; gap: 7px;
}
.gallery__filter:hover { color: #16a34a; }
.gallery__filter.active {
  background: #16a34a; color: #fff;
  box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}
.gallery__filter .filter-count {
  font-size: 0.72rem; font-weight: 700;
  background: rgba(255,255,255,0.25); color: inherit;
  padding: 1px 6px; border-radius: 20px; min-width: 20px; text-align: center;
}
.gallery__filter:not(.active) .filter-count {
  background: #e2e8f0; color: #64748b;
}

/* ---- Grid ---- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
}

.gallery__item {
  border-radius: 12px; overflow: hidden; position: relative; cursor: pointer;
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}
.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  z-index: 2;
}

.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.55s ease;
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,36,22,0.75) 0%, rgba(11,36,22,0.15) 60%, transparent 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 14px; opacity: 0; transition: opacity 0.3s;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay i { color: #fff; font-size: 1.3rem; }

/* Hidden state — smooth fade+scale out */
.gallery__item.hidden {
  opacity: 0; pointer-events: none;
  transform: scale(0.88);
}

@media (max-width: 960px)  { .gallery__grid { grid-template-columns: repeat(3,1fr); grid-auto-rows: 190px; } }
@media (max-width: 640px)  { .gallery__grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; } }
@media (max-width: 560px)  { .gallery { padding: 60px 0 70px; } .gallery__filters { border-radius: 14px; padding: 6px; gap: 4px; } .gallery__filter { padding: 8px 14px; font-size: 0.8rem; } }

/* ============================================================
   NEWS & UPDATES
   ============================================================ */
.news { padding: 100px 0 110px; background: #f8fafc; }

.news__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }

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

.news__card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.news__card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.news__img-wrap { height: 200px; overflow: hidden; }
.news__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s; }
.news__card:hover .news__img-wrap img { transform: scale(1.06); }

.news__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }

.news__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.news__cat { font-family: var(--font-main); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #16a34a; background: #dcfce7; padding: 3px 10px; border-radius: 50px; }

.news__date { font-size: 0.78rem; color: #94a3b8; display: flex; align-items: center; gap: 5px; }
.news__date i { color: #16a34a; }

.news__title { font-family: var(--font-main); font-size: 1rem; font-weight: 700; color: #0f172a; line-height: 1.4; }

.news__excerpt { font-size: 0.85rem; color: #64748b; line-height: 1.7; }

.news__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-main); font-size: 0.82rem; font-weight: 600; color: #16a34a; transition: gap 0.3s; margin-top: 4px; }
.news__link i { font-size: 0.75rem; transition: transform 0.3s; }
.news__card:hover .news__link { gap: 10px; }
.news__card:hover .news__link i { transform: translateX(4px); }

@media (max-width: 900px) { .news__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .news { padding: 60px 0 70px; } .news__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 100px 0 110px; background: #fff; }

.contact__header { text-align: center; margin-bottom: 56px; }
.contact__header .section-sub { margin: 0 auto; }

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

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__field label { font-family: var(--font-main); font-size: 0.82rem; font-weight: 600; color: #0f172a; }
.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 2px solid #e2e8f0; font-size: 0.9rem; font-family: var(--font-body);
  color: #0f172a; background: #fff; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus { border-color: #16a34a; box-shadow: 0 0 0 4px rgba(22,163,74,0.1); }
.contact__field textarea { resize: vertical; min-height: 110px; }
.contact__field select { cursor: pointer; }

.contact__submit {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 15px 32px; background: #16a34a; color: #fff; border: none; border-radius: 50px;
  font-family: var(--font-main); font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s; width: 100%;
}
.contact__submit:hover { background: #15803d; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(22,163,74,0.3); }

/* Info + Map */
.contact__info-wrap { display: flex; flex-direction: column; gap: 20px; }

.contact__info-card { background: #f8fafc; border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 18px; }

.contact__info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact__info-item i { width: 36px; height: 36px; border-radius: 10px; background: #dcfce7; color: #16a34a; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.contact__info-item strong { display: block; font-family: var(--font-main); font-size: 0.8rem; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
.contact__info-item span, .contact__info-item a { font-size: 0.88rem; color: #64748b; text-decoration: none; transition: color 0.2s; }
.contact__info-item a:hover { color: #16a34a; }

.contact__map { border-radius: 20px; overflow: hidden; height: 240px; }
.contact__map iframe { display: block; }

@media (max-width: 900px) { .contact__body { grid-template-columns: 1fr; } .contact__row { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .contact { padding: 60px 0 70px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer__top { background: #0b2416; padding: 72px 0 48px; }

.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; }

.footer__col--brand .footer__logo img { height: 64px; width: auto; mix-blend-mode: screen; margin-bottom: 18px; }

.footer__about { font-size: 0.85rem; color: #94a3b8; line-height: 1.75; margin-bottom: 22px; }

.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none; transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer__socials a:hover { background: #16a34a; border-color: #16a34a; color: #fff; }

.footer__title { font-family: var(--font-main); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; color: #94a3b8; text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer__links a::before { content: '→'; font-size: 0.75rem; color: #16a34a; }
.footer__links a:hover { color: #4ade80; }

.footer__contacts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.footer__contacts li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: #94a3b8; }
.footer__contacts i { color: #4ade80; font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.footer__contacts a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer__contacts a:hover { color: #4ade80; }

.footer__apply-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: #16a34a; color: #fff; border-radius: 50px;
  font-family: var(--font-main); font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: background 0.3s, transform 0.3s;
}
.footer__apply-btn:hover { background: #15803d; transform: translateY(-2px); }

.footer__bottom { background: #061409; padding: 18px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: 0.8rem; color: #475569; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.8rem; color: #475569; text-decoration: none; transition: color 0.2s; }
.footer__bottom-links a:hover { color: #4ade80; }

.footer__made-by {
  font-size: 0.8rem; color: #475569;
  display: flex; align-items: center; gap: 4px;
  border-left: 1px solid #1e3a2a; padding-left: 20px; margin-left: 4px;
}
.footer__made-by a { color: #4ade80; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.footer__made-by a:hover { color: #86efac; }

@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } .footer__bottom-inner { flex-direction: column; text-align: center; } }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.fab-whatsapp {
  position: fixed; bottom: 90px; right: 24px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fabPulse 2.5s ease-in-out infinite;
}
.fab-whatsapp:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.6); animation: none; }

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}

.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: #0b2416; border: none; color: #fff; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  opacity: 0; pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: #16a34a; transform: translateY(-3px); }

/* ============================================================
   COMPREHENSIVE RESPONSIVE — TABLET & MOBILE
   ============================================================ */

/* ---- Shared section padding ---- */
@media (max-width: 768px) {
  .prod, .hiw, .why, .testi, .gallery, .news, .contact { padding: 72px 0 80px; }
  .certs { padding: 36px 0; }
  .section-heading { font-size: clamp(1.55rem, 5vw, 2rem); }
  .section-sub { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .prod, .hiw, .why, .testi, .gallery, .news, .contact { padding: 56px 0 64px; }
  .section-heading { font-size: clamp(1.4rem, 6vw, 1.8rem); }
}

/* ---- Products ---- */
@media (max-width: 768px) {
  .prod__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .prod__blend { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .prod__grid { grid-template-columns: 1fr; }
  .prod__card--featured::before { font-size: 0.6rem; padding: 3px 28px; right: -22px; }
}

/* ---- How It Works ---- */
@media (max-width: 768px) {
  .hiw__steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }
  .hiw__connector { display: none; }
  .hiw__step { padding: 0 8px; }
  .hiw__step p { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .hiw__steps { grid-template-columns: 1fr; gap: 32px; }
  .hiw__icon { width: 60px; height: 60px; font-size: 1.25rem; }
}

/* ---- Why Choose Us ---- */
@media (max-width: 768px) {
  .why__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why__card { padding: 26px 20px; }
}
@media (max-width: 480px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ---- Certifications ---- */
@media (max-width: 480px) {
  .certs__item { padding: 0 28px; font-size: 0.82rem; }
}

/* ---- Testimonials ---- */
@media (max-width: 768px) {
  .testi__header .section-heading--white { font-size: clamp(1.5rem, 5vw, 2rem); }
  .testi__card {
    min-width: calc(100% - 0px);
    padding: 24px 20px;
  }
  .testi__controls { margin-top: 28px; }
}

/* ---- CTA Banner ---- */
@media (max-width: 768px) {
  .cta-banner { padding: 56px 0; }
  .cta-banner__inner { flex-direction: column; text-align: center; gap: 28px; }
  .cta-banner__actions { justify-content: center; flex-direction: column; align-items: center; }
  .cta-banner__btn { width: 100%; max-width: 280px; justify-content: center; }
  .cta-banner__heading { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta-banner__sub { font-size: 0.88rem; }
}

/* ---- Gallery ---- */
@media (max-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: 8px; }
  .gallery__filters {
    border-radius: 12px; padding: 5px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    width: 100%;
  }
  .gallery__filter { border-radius: 8px; padding: 9px 12px; font-size: 0.82rem; justify-content: center; }
  .gallery__filter:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .gallery__grid { grid-auto-rows: 140px; }
}

/* ---- News ---- */
@media (max-width: 768px) {
  .news__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .news__grid { grid-template-columns: 1fr; gap: 20px; }
  .news__card { display: grid; grid-template-columns: 120px 1fr; }
  .news__img-wrap { height: 100%; border-radius: 12px 0 0 12px; }
  .news__body { padding: 16px 14px; }
  .news__title { font-size: 0.92rem; }
  .news__excerpt { display: none; }
}
@media (max-width: 480px) {
  .news__card { display: block; }
  .news__img-wrap { height: 180px; border-radius: 12px 12px 0 0; }
  .news__body { padding: 16px; }
  .news__excerpt { display: block; font-size: 0.83rem; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
}

/* ---- Contact ---- */
@media (max-width: 768px) {
  .contact__body { grid-template-columns: 1fr; gap: 28px; }
  .contact__row { grid-template-columns: 1fr; }
  .contact__map { height: 220px; }
  .contact__info-card { padding: 24px 20px; }
}

/* ---- Footer ---- */
@media (max-width: 768px) {
  .footer__top { padding: 52px 0 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__about { font-size: 0.83rem; max-width: 400px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

/* ---- Floating buttons ---- */
@media (max-width: 480px) {
  .fab-whatsapp { width: 46px; height: 46px; font-size: 1.25rem; bottom: 80px; right: 16px; }
  .back-top { width: 40px; height: 40px; font-size: 0.8rem; right: 16px; bottom: 20px; }
}
