/* ============================================================
   IBFC WEBSITE — STYLESHEET
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green-dark:   #1b5e20;
  --green-main:   #2e7d32;
  --green-mid:    #388e3c;
  --green-light:  #43a047;
  --green-pale:   #e8f5e9;
  --white:        #ffffff;
  --gray-light:   #f5f5f5;
  --gray-mid:     #e0e0e0;
  --gray-text:    #616161;
  --dark:         #1a1a1a;
  --font-main:    'Poppins', sans-serif;
  --font-body:    'Roboto', sans-serif;
  --transition:   0.3s ease;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.14);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) { .container { padding: 0 16px; } }
@media (max-width: 480px) { .container { padding: 0 14px; } }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 2px solid var(--green-light);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- Left side --- */
.top-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.92);
}

.top-bar__item i {
  color: #a5d6a7;
  font-size: 0.78rem;
}

.top-bar__item .label {
  color: #a5d6a7;
  font-weight: 500;
  white-space: nowrap;
}

.top-bar__item a {
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition);
}

.top-bar__item a:hover {
  color: #a5d6a7;
}

.top-bar__divider {
  color: rgba(255,255,255,0.35);
  font-size: 1rem;
  padding: 0 2px;
}

/* --- Right side --- */
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Socials */
.top-bar__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.72rem;
  transition: background var(--transition), transform var(--transition);
}

.top-bar__socials a:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* CTA Button */
.top-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--green-dark);
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.top-bar__cta i {
  font-size: 0.75rem;
}

.top-bar__cta:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE — TOP BAR
   ============================================================ */
@media (max-width: 900px) {
  .top-bar__inner { flex-wrap: wrap; gap: 6px; }
  .top-bar__cta { font-size: 0.75rem; padding: 6px 12px; white-space: nowrap; }
}

@media (max-width: 768px) {
  .top-bar__inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .top-bar__right { width: 100%; justify-content: space-between; }
  .top-bar__item--email { display: none; }
}

@media (max-width: 480px) {
  .top-bar { font-size: 0.76rem; }
  .top-bar__cta { font-size: 0.72rem; padding: 5px 10px; }
  .top-bar__right { flex-wrap: wrap; gap: 8px; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

/* --- Logo --- */
.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar__logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* --- Desktop Menu --- */
.navbar__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.navbar__link i {
  font-size: 0.6rem;
  transition: transform var(--transition);
  color: var(--green-main);
}

.navbar__item:hover > .navbar__link,
.navbar__link.active {
  color: var(--green-main);
  background: var(--green-pale);
}

.navbar__item:hover > .navbar__link i {
  transform: rotate(180deg);
}

/* Active underline indicator */
.navbar__link.active {
  color: var(--green-main);
  background: var(--green-pale);
}

/* --- Dropdown --- */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  min-width: 210px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-top: 3px solid var(--green-main);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999;
  padding: 8px 0;
}

.navbar__item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: var(--font-main);
  font-size: 0.80rem;
  font-weight: 500;
  color: #444;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.dropdown li a i {
  width: 16px;
  color: var(--green-main);
  font-size: 0.78rem;
}

.dropdown li a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  padding-left: 24px;
}

.dropdown li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

/* --- Navbar CTA --- */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-main);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid var(--green-main);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.navbar__cta i {
  font-size: 0.8rem;
}

.navbar__cta:hover {
  background: transparent;
  color: var(--green-main);
  transform: translateY(-1px);
}

/* --- Hamburger --- */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}

.navbar__hamburger:hover {
  background: var(--green-pale);
}

.navbar__hamburger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--green-dark);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.navbar__hamburger span:nth-child(2) {
  width: 70%;
}

/* Hamburger open state */
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   RESPONSIVE — NAVBAR
   ============================================================ */
@media (max-width: 1024px) {
  .navbar__link {
    font-size: 0.76rem;
    padding: 8px 8px;
  }
  .navbar__cta {
    padding: 9px 14px;
    font-size: 0.74rem;
  }
}

@media (max-width: 900px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__nav {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    justify-content: flex-start;
  }

  .navbar__nav.open {
    max-height: 600px;
  }

  .navbar__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
  }

  .navbar__link {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #f0f0f0;
    text-transform: uppercase;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--green-main);
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-left: 16px;
    transition: max-height 0.3s ease;
    display: none;
  }

  .navbar__item.open .dropdown {
    display: block;
    max-height: 400px;
  }

  .dropdown li a {
    padding: 10px 20px;
  }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  background: #0a1f0a;
}

/* --- Track & Slides --- */
.hero__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.hero__slide.active {
  opacity: 1;
  z-index: 2;
}

/* --- Gradient overlay (left → right for text readability) --- */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 30, 5, 0.82) 0%,
    rgba(10, 40, 10, 0.65) 50%,
    rgba(0, 0, 0, 0.20) 100%
  );
  z-index: 1;
}

/* --- Content --- */
.hero__content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1240px;
  padding: 0 20px;
  /* align text to left within the centered block */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Slide-in animation for active slide */
.hero__slide.active .hero__badge,
.hero__slide.active .hero__heading,
.hero__slide.active .hero__sub,
.hero__slide.active .hero__actions {
  animation: heroFadeUp 0.75s ease forwards;
}

.hero__slide.active .hero__badge   { animation-delay: 0.15s; opacity: 0; }
.hero__slide.active .hero__heading { animation-delay: 0.30s; opacity: 0; }
.hero__slide.active .hero__sub     { animation-delay: 0.45s; opacity: 0; }
.hero__slide.active .hero__actions { animation-delay: 0.60s; opacity: 0; }

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

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.30);
  color: #a5d6a7;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}

.hero__badge i {
  color: #69f0ae;
  font-size: 0.75rem;
}

/* Heading */
.hero__heading {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  max-width: 680px;
}

.hero__heading span {
  color: #69f0ae;
}

/* Subheading */
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 34px;
}

/* CTA Buttons */
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--green {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* --- Prev / Next Arrows --- */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
}

.hero__arrow:hover {
  background: var(--green-main);
  border-color: var(--green-main);
  transform: translateY(-50%) scale(1.08);
}

.hero__arrow--prev { left: 28px; }
.hero__arrow--next { right: 28px; }

/* --- Dots --- */
.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width 0.3s ease;
  padding: 0;
}

.hero__dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 5px;
  border-color: var(--white);
}

/* --- Progress Bar --- */
.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}

.hero__progress-bar {
  height: 100%;
  background: var(--green-light);
  width: 0%;
  transition: width linear;
}

/* ---- Hero Glass Stats Strip ---- */
.hero__statsbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__statsbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.hero__statitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px;
  gap: 4px;
}

.hero__statnum {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero__statnum sup {
  font-size: 0.55em;
  color: #4ade80;
  vertical-align: super;
}

.hero__statlabel {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__statdivider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero__statsbar-inner { justify-content: space-between; }
  .hero__statitem { padding: 14px 10px; }
  .hero__statlabel { display: none; }
  .hero__statdivider { height: 28px; }
}

/* ============================================================
   RESPONSIVE — HERO
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 480px;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 30, 5, 0.55) 0%,
      rgba(5, 30, 5, 0.80) 100%
    );
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero__heading { max-width: 100%; }
  .hero__sub     { max-width: 100%; }

  .hero__actions {
    justify-content: center;
  }

  .hero__arrow { display: none; }
}

@media (max-width: 480px) {
  .btn {
    padding: 11px 20px;
    font-size: 0.78rem;
  }

  .hero__heading {
    font-size: 2rem;
  }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  background: #1b5e20;
  padding: 22px 0;
}

.stats__inner {
  padding: 0 20px;
}

/* Grid — 4 equal columns */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Each stat item */
.stats__item {
  padding: 0 48px 0 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stats__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stats__item:nth-child(1) { transition-delay: 0.00s; }
.stats__item:nth-child(2) { transition-delay: 0.12s; }
.stats__item:nth-child(3) { transition-delay: 0.24s; }
.stats__item:nth-child(4) { transition-delay: 0.36s; }

/* Top separator line */
.stats__line {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 10px;
}

/* Big number */
.stats__number {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

/* Label below */
.stats__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.2px;
}

/* ============================================================
   RESPONSIVE — STATS
   ============================================================ */
@media (max-width: 900px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }
  .stats__item {
    padding: 0 24px 0 0;
  }
}

@media (max-width: 480px) {
  .stats {
    padding: 52px 0;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .stats__number {
    font-size: 2.2rem;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--white);
  padding: 88px 0;
  border-bottom: 1px solid #f0f0f0;
}

.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 20px;
}

/* ---- Left ---- */
.about__left {
  flex: 1;
  max-width: 700px;
}

/* Pill label */
.about__pill {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}

/* Big heading */
.about__heading {
  font-family: var(--font-main);
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.about__accent {
  color: var(--green-main);
}

/* Body text */
.about__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ISO Badge */
.about__iso {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  background: var(--green-pale);
  border: 1px solid #c8e6c9;
  border-radius: 10px;
  padding: 14px 20px;
}

.about__iso-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-main);
  flex-shrink: 0;
}

.about__iso-icon i {
  color: var(--white);
  font-size: 1rem;
}

.about__iso-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about__iso-text strong {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
}

.about__iso-text span {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--green-mid);
}

/* ---- Right ---- */
.about__right {
  flex-shrink: 0;
  width: 42%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

/* Image wrapper */
.about__img-wrap {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.about__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.about__img-wrap:hover .about__img {
  transform: scale(1.04);
}

/* Floating badge on image */
.about__img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.about__img-badge i {
  color: var(--green-main);
  font-size: 0.82rem;
}

/* CTA button */
.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  border: 1.5px solid #ccc;
  padding: 13px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}

.about__cta i {
  font-size: 0.78rem;
  transition: transform var(--transition);
}

.about__cta:hover {
  border-color: var(--green-main);
  color: var(--green-main);
}

.about__cta:hover i {
  transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE — ABOUT
   ============================================================ */
@media (max-width: 860px) {
  .about__inner {
    flex-direction: column;
    gap: 32px;
  }

  .about__left {
    max-width: 100%;
  }

  .about__right {
    width: 100%;
    align-items: flex-start;
  }

  .about__img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 0;
  }

  .about__iso {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: #f7f9f7;
  padding: 90px 0;
}

/* --- Header --- */
.services__header {
  text-align: center;
  margin-bottom: 56px;
}

.services__pill {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-family: var(--font-main);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services__heading {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.services__heading span {
  color: var(--green-main);
}

.services__sub {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--gray-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* --- Card --- */
.services__card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 30px 30px;
  border: 1px solid #e8f0e8;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;

  /* entry animation */
  opacity: 0;
  transform: translateY(24px);
}

.services__card.visible {
  animation: svcCardIn 0.55s ease forwards;
}

.services__card:nth-child(1) { animation-delay: 0.05s; }
.services__card:nth-child(2) { animation-delay: 0.13s; }
.services__card:nth-child(3) { animation-delay: 0.21s; }
.services__card:nth-child(4) { animation-delay: 0.29s; }
.services__card:nth-child(5) { animation-delay: 0.37s; }
.services__card:nth-child(6) { animation-delay: 0.45s; }

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

.services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(46,125,50,0.10);
  border-color: #c8e6c9;
}

/* Green top accent bar on hover */
.services__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services__card:hover::before {
  transform: scaleX(1);
}

/* --- Icon --- */
.services__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.services__icon i {
  font-size: 1.3rem;
  color: var(--green-main);
  transition: color 0.3s ease;
}

.services__card:hover .services__icon {
  background: var(--green-main);
  transform: rotate(-5deg) scale(1.05);
}

.services__card:hover .services__icon i {
  color: var(--white);
}

/* --- Title --- */
.services__title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

/* --- Desc --- */
.services__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.7;
  flex: 1;
}

/* --- Link --- */
.services__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--green-main);
  margin-top: 6px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.services__link i {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.services__link:hover {
  color: var(--green-dark);
  gap: 10px;
}

.services__link:hover i {
  transform: translateX(3px);
}

/* ============================================================
   RESPONSIVE — SERVICES
   ============================================================ */
@media (max-width: 780px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services {
    padding: 60px 0;
  }

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

  .services__card {
    padding: 28px 22px 24px;
  }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  background: #0f1f10;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

/* Subtle bg texture */
.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(46,125,50,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 20%, rgba(46,125,50,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.products .container { position: relative; z-index: 1; }

/* --- Header --- */
.products__header {
  text-align: center;
  margin-bottom: 56px;
}

.products__pill {
  display: inline-block;
  background: rgba(105,240,174,0.10);
  border: 1px solid rgba(105,240,174,0.25);
  color: #69f0ae;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.products__heading {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.products__heading span { color: #69f0ae; }

.products__sub {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Grid --- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* --- Card --- */
.products__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(28px);
}

.products__card.visible {
  animation: prodCardIn 0.6s ease forwards;
}

.products__card:nth-child(1) { animation-delay: 0.05s; }
.products__card:nth-child(2) { animation-delay: 0.15s; }
.products__card:nth-child(3) { animation-delay: 0.25s; }
.products__card:nth-child(4) { animation-delay: 0.35s; }

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

.products__card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(105,240,174,0.25);
}

/* Featured card */
.products__card--featured {
  background: rgba(46,125,50,0.20);
  border-color: rgba(105,240,174,0.35);
  box-shadow: 0 0 0 1px rgba(105,240,174,0.15);
}

.products__card--featured:hover {
  background: rgba(46,125,50,0.28);
}

/* --- Badge --- */
.products__badge {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #69f0ae;
  background: rgba(105,240,174,0.10);
  border: 1px solid rgba(105,240,174,0.20);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

.products__card--featured .products__badge {
  background: rgba(105,240,174,0.18);
  border-color: rgba(105,240,174,0.40);
}

/* --- Blend number --- */
.products__blend {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}

.products__card--featured .products__blend {
  color: #69f0ae;
}

/* --- Blend label --- */
.products__blend-label {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
  margin-top: -8px;
}

/* --- Use case --- */
.products__use {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* --- Specs list --- */
.products__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.products__specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.80rem;
}

.spec-key {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.40);
  font-weight: 400;
}

.spec-val {
  font-family: var(--font-main);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.78rem;
}

/* --- CTA button --- */
.products__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.80rem;
  font-weight: 700;
  color: #69f0ae;
  margin-top: 4px;
  transition: gap 0.25s ease;
}

.products__cta i {
  font-size: 0.70rem;
  transition: transform 0.25s ease;
}

.products__cta:hover { gap: 12px; }
.products__cta:hover i { transform: translateX(3px); }

/* --- Bottom note --- */
.products__note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.products__note i { color: #69f0ae; font-size: 0.80rem; }
.products__note strong { color: rgba(255,255,255,0.60); }

/* ============================================================
   RESPONSIVE — PRODUCTS
   ============================================================ */
@media (max-width: 960px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .products__grid {
    grid-template-columns: 1fr;
  }

  .products {
    padding: 60px 0 50px;
  }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw {
  background: var(--white);
  padding: 90px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* --- Header --- */
.hiw__header {
  text-align: center;
  margin-bottom: 72px;
}

.hiw__pill {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hiw__heading {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.hiw__heading span { color: var(--green-main); }

.hiw__sub {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--gray-text);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Steps row --- */
.hiw__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

/* --- Single step --- */
.hiw__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hiw__step.visible { opacity: 1; transform: translateY(0); }
.hiw__step:nth-child(1) { transition-delay: 0.05s; }
.hiw__step:nth-child(2) { transition-delay: 0.18s; }
.hiw__step:nth-child(3) { transition-delay: 0.31s; }
.hiw__step:nth-child(4) { transition-delay: 0.44s; }

/* --- Icon wrap (number + icon) --- */
.hiw__icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  position: relative;
  width: 100%;
}

/* Step number */
.hiw__step-num {
  font-family: var(--font-main);
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--green-main);
  letter-spacing: 1px;
  background: var(--green-pale);
  border: 1.5px solid #c8e6c9;
  border-radius: 4px;
  padding: 3px 8px;
  flex-shrink: 0;
}

/* Icon circle */
.hiw__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid #c8e6c9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hiw__icon i {
  font-size: 1.25rem;
  color: var(--green-main);
  transition: color 0.3s ease;
}

.hiw__step:hover .hiw__icon {
  background: var(--green-main);
  border-color: var(--green-main);
  transform: scale(1.08);
}

.hiw__step:hover .hiw__icon i {
  color: var(--white);
}

/* --- Connector line --- */
.hiw__connector {
  width: 100%;
  padding: 0 24px 0 0;
  display: flex;
  align-items: center;
  margin: 22px 0 28px;
}

.hiw__connector span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-main) 0%, #c8e6c9 100%);
  border-radius: 2px;
  position: relative;
}

/* Arrow head on connector */
.hiw__connector span::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid #c8e6c9;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Last step — no connector arrow */
.hiw__connector--last span {
  background: transparent;
  border: none;
}

.hiw__connector--last span::after { display: none; }

/* --- Body --- */
.hiw__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 28px;
}

.hiw__title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
}

.hiw__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.hiw__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--green-main);
  transition: gap 0.25s ease;
  margin-top: 2px;
}

.hiw__link i {
  font-size: 0.70rem;
  transition: transform 0.25s ease;
}

.hiw__link:hover { gap: 10px; }
.hiw__link:hover i { transform: translateX(3px); }

/* ============================================================
   RESPONSIVE — HOW IT WORKS
   ============================================================ */
@media (max-width: 860px) {
  .hiw__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .hiw__connector { display: none; }
  .hiw__body { padding-right: 0; }
}

@media (max-width: 520px) {
  .hiw {
    padding: 60px 0;
  }

  .hiw__steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  background: #f7f9f7;
  padding: 90px 0;
}

.why__header {
  text-align: center;
  margin-bottom: 56px;
}

.why__pill {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.why__heading {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.why__heading span { color: var(--green-main); }

.why__sub {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* Card */
.why__card {
  background: var(--white);
  border-radius: 14px;
  padding: 34px 28px;
  border: 1px solid #e8f0e8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.why__card.visible { opacity: 1; transform: translateY(0); }
.why__card:nth-child(1) { transition-delay: 0.04s; }
.why__card:nth-child(2) { transition-delay: 0.11s; }
.why__card:nth-child(3) { transition-delay: 0.18s; }
.why__card:nth-child(4) { transition-delay: 0.25s; }
.why__card:nth-child(5) { transition-delay: 0.32s; }
.why__card:nth-child(6) { transition-delay: 0.39s; }

.why__card:hover {
  box-shadow: 0 12px 32px rgba(46,125,50,0.10);
  transform: translateY(-4px);
}

.why__card:hover.visible { transform: translateY(-4px); }

.why__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-pale);
  border: 1.5px solid #c8e6c9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.why__icon i {
  font-size: 1.2rem;
  color: var(--green-main);
  transition: color 0.3s;
}

.why__card:hover .why__icon {
  background: var(--green-main);
  transform: rotate(-6deg) scale(1.06);
}

.why__card:hover .why__icon i { color: var(--white); }

.why__card h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.why__card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.7;
}

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

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs {
  background: var(--white);
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 36px 0;
}

.certs__header {
  text-align: center;
  margin-bottom: 28px;
}

.certs__label {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
}

.certs__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.certs__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.certs__item:hover { opacity: 1; transform: translateY(-2px); }

.certs__item i {
  font-size: 1.5rem;
  color: var(--green-main);
}

.certs__item span {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.certs__divider {
  width: 1px;
  height: 32px;
  background: #e0e0e0;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .certs__strip { gap: 8px; }
  .certs__divider { display: none; }
  .certs__item { padding: 8px 16px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi {
  background: #0f1f10;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.testi::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46,125,50,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(46,125,50,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.testi .container { position: relative; z-index: 1; }

.testi__header {
  text-align: center;
  margin-bottom: 52px;
}

.testi__pill {
  display: inline-block;
  background: rgba(105,240,174,0.10);
  border: 1px solid rgba(105,240,174,0.22);
  color: #69f0ae;
  font-family: var(--font-main);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.testi__heading {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.testi__heading span { color: #69f0ae; }

.testi__sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.50);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Slider */
.testi__slider {
  overflow: hidden;
  margin-bottom: 36px;
}

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

/* Card */
.testi__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 34px 30px;
  min-width: calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.testi__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(105,240,174,0.20);
}

.testi__stars { display: flex; gap: 4px; }
.testi__stars i { color: #f9a825; font-size: 0.82rem; }

.testi__quote {
  font-family: var(--font-body);
  font-size: 0.90rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

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

.testi__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(105,240,174,0.12);
  border: 1.5px solid rgba(105,240,174,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi__avatar i { color: #69f0ae; font-size: 1rem; }

.testi__author strong {
  display: block;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.testi__author span {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
}

/* Controls */
.testi__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testi__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.testi__arrow:hover {
  background: var(--green-main);
  border-color: var(--green-main);
  transform: scale(1.08);
}

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

.testi__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  transition: background 0.25s, width 0.3s, border-radius 0.3s;
  padding: 0;
}

.testi__dot.active {
  background: #69f0ae;
  width: 24px;
  border-radius: 4px;
}

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

@media (max-width: 560px) {
  .testi { padding: 60px 0; }
  .testi__card { min-width: 100%; }
}


/* ============================================================
   ABOUT US — SECTION (stacked images + accordion)
   ============================================================ */

.about2 {
  padding: 100px 0 110px;
  background: #fff;
}

/* Top row */
.about2__toprow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

.about2__label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray-text);
  margin-bottom: 14px;
}

.about2__heading {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.15;
}

.about2__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #c8f542;
  color: #0d1b2a;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.about2__btn i { font-size: 0.8rem; }
.about2__btn:hover { background: #b5e012; transform: translateY(-2px); }

/* Body: two columns */
.about2__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Stacked Images ---- */
.about2__images {
  position: relative;
  height: 480px;
}

.about2__img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.about2__img {
  position: absolute;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Position 2 — furthest back (leftmost, small peek) */
.about2__img--pos2 {
  top: 0;
  left: 0;
  filter: brightness(0.6);
  z-index: 1;
  transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* Position 1 — middle */
.about2__img--pos1 {
  top: 28px;
  left: 10%;
  filter: brightness(0.8);
  z-index: 2;
  transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* Position 0 — front (fully visible) */
.about2__img--pos0 {
  top: 56px;
  left: 20%;
  z-index: 3;
  filter: brightness(1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Accordion ---- */
.about2__accordion {
  display: flex;
  flex-direction: column;
}

.about2__acc-item {
  border-bottom: 1px solid #e2e8f0;
}
.about2__acc-item:first-child {
  border-top: 1px solid #e2e8f0;
}

.about2__acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: #0d1b2a;
  text-align: left;
  transition: color var(--transition);
}
.about2__acc-trigger:hover { color: var(--green-main); }
.about2__acc-trigger i {
  font-size: 0.9rem;
  color: #0d1b2a;
  flex-shrink: 0;
  transition: color var(--transition);
}
.about2__acc-item.active .about2__acc-trigger { color: var(--green-main); }
.about2__acc-item.active .about2__acc-trigger i { color: var(--green-main); }

.about2__acc-panel {
  display: none;
  padding-bottom: 22px;
}
.about2__acc-panel p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.78;
  color: #4a5568;
}

/* Responsive */
@media (max-width: 900px) {
  .about2__body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about2__images { height: 360px; }
  .about2__toprow {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .about2 { padding: 60px 0 70px; }
  .about2__images { height: 280px; }
  .about2__acc-trigger { font-size: 0.95rem; padding: 18px 0; }
}


/* ============================================================
   SERVICES — Image grid + features (svc3)
   ============================================================ */

.svc3 {
  padding: 80px 0 0;
  background: #fff;
}

.svc3__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section heading with side lines */
.svc3__heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.svc3__line {
  flex: 1;
  height: 1px;
  background: #d1d5db;
  border-radius: 2px;
}

.svc3__heading {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* 4-column grid with dividers */
.svc3__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e5e7eb;
  border-bottom: none;
}

.svc3__col {
  padding: 24px 20px 28px;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.svc3__col:last-child { border-right: none; }

.svc3__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
}

.svc3__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc3__col:hover .svc3__img-wrap img { transform: scale(1.06); }

.svc3__name {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0d1b2a;
}

/* Bottom features 2-column */
.svc3__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e5e7eb;
  border-top: none;
}

.svc3__feat {
  padding: 40px 44px;
  border-right: 1px solid #e5e7eb;
}
.svc3__feat:last-child { border-right: none; }

.svc3__feat-title {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0d1b2a;
  margin-bottom: 16px;
  text-align: center;
}

.svc3__feat-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.75;
  color: #6b7c3b;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .svc3__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc3__col:nth-child(2) { border-right: none; }
  .svc3__col:nth-child(3) { border-top: 1px solid #e5e7eb; }
  .svc3__col:nth-child(4) { border-top: 1px solid #e5e7eb; border-right: none; }
}

@media (max-width: 600px) {
  .svc3__grid { grid-template-columns: 1fr 1fr; }
  .svc3__features { grid-template-columns: 1fr; }
  .svc3__feat { border-right: none; border-bottom: 1px solid #e5e7eb; padding: 30px 24px; }
  .svc3__feat:last-child { border-bottom: none; }
  .svc3__col { padding: 16px 12px 20px; }
  .svc3__name { font-size: 0.72rem; }
}


/* ============================================================
   SERVICES — Scroll-zoom rows (svc2)
   ============================================================ */

.svc2 {
  padding: 100px 0 120px;
  background: #eef1f7;
}

/* Top row */
.svc2__toprow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.svc2__label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray-text);
  margin-bottom: 14px;
}

.svc2__heading {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.15;
}

.svc2__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #c8f542;
  color: #0d1b2a;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.svc2__btn:hover { background: #b5e012; transform: translateY(-2px); }

/* Service rows */
.svc2__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc2__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Left card */
.svc2__card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 220px;
}

.svc2__title {
  font-family: var(--font-main);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 14px;
}

.svc2__desc {
  font-family: var(--font-body);
  font-size: 0.93rem;
  line-height: 1.7;
  color: #6b7280;
}

.svc2__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.svc2__tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #6b7280;
  background: transparent;
}

.svc2__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  color: #0d1b2a;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.svc2__arrow:hover {
  background: #0d1b2a;
  color: #fff;
  border-color: #0d1b2a;
}

/* Right image */
.svc2__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.svc2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(0.88);
  transform-origin: center center;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Responsive */
@media (max-width: 900px) {
  .svc2__row {
    grid-template-columns: 1fr;
  }
  .svc2__img-wrap {
    height: 260px;
  }
  .svc2__img {
    transform: scale(1) !important;
  }
  .svc2__toprow {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .svc2 { padding: 60px 0 80px; }
  .svc2__card { padding: 28px 24px; min-height: auto; }
}


/* ============================================================
   ABOUT — Modern split layout (abt)
   ============================================================ */

.abt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}

/* Left visual column */
.abt__visual-col {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.abt__mainimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.abt__visual-col:hover .abt__mainimg { transform: scale(1); }

/* Green left accent bar */
.abt__visual-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #22c55e, #16a34a);
  z-index: 2;
}

/* Dark overlay gradient */
.abt__visual-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}

/* ISO badge — bottom left */
.abt__badge-iso {
  position: absolute;
  bottom: 32px;
  left: 28px;
  z-index: 3;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.abt__badge-iso i {
  font-size: 1.6rem;
  color: #16a34a;
}

.abt__badge-iso strong {
  display: block;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

.abt__badge-iso span {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
}

/* Year badge — top right */
.abt__badge-year {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(22,163,74,0.4);
}

.abt__year {
  display: block;
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.abt__yearsub {
  display: block;
  font-family: var(--font-main);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Right content column */
.abt__content-col {
  padding: clamp(48px, 7vw, 90px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.abt__content-col.will-animate {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.abt__content-col.will-animate.visible {
  opacity: 1;
  transform: translateX(0);
}

.abt__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: 20px;
  width: fit-content;
}

.abt__heading {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.18;
  margin-bottom: 20px;
}

.abt__heading em {
  font-style: normal;
  color: #16a34a;
}

.abt__body {
  font-size: 0.95rem;
  line-height: 1.78;
  color: #64748b;
  margin-bottom: 28px;
}

/* Checkpoints */
.abt__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.abt__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 500;
  color: #0f172a;
}

.abt__checks li i {
  color: #16a34a;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Stats row */
.abt__stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.abt__stat {
  flex: 1;
  text-align: center;
}

.abt__stat-num {
  display: block;
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
  margin-bottom: 6px;
}

.abt__stat-label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.abt__stat-sep {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}

/* CTA */
.abt__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0b2416;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  width: fit-content;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.abt__cta i { font-size: 0.85rem; transition: transform 0.3s ease; }
.abt__cta:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22,163,74,0.35);
}
.abt__cta:hover i { transform: translateX(4px); }

/* Left visual col animation — applied only when JS adds .will-animate */
.abt__visual-col.will-animate {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.abt__visual-col.will-animate.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
  .abt {
    grid-template-columns: 1fr;
  }
  .abt__visual-col {
    min-height: 380px;
    transform: translateY(-30px);
  }
  .abt__visual-col.visible { transform: translateY(0); }
  .abt__content-col {
    transform: translateY(30px);
    padding: 48px 28px;
  }
  .abt__content-col.visible { transform: translateY(0); }
}

@media (max-width: 560px) {
  .abt__visual-col { min-height: 280px; }
  .abt__badge-iso { bottom: 16px; left: 16px; padding: 10px 14px; }
  .abt__badge-year { top: 16px; right: 16px; }
  .abt__stats-row { gap: 8px; }
}


/* ============================================================
   SERVICES — Image card layout (svc)
   ============================================================ */

.svc {
  background: #f8fafc;
  padding: 100px 0 110px;
}

/* Header row */
.svc__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.svc__header-left { flex: 1; }

.svc__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;
}

.svc__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: 10px;
}
.svc__heading em { font-style: normal; color: #16a34a; }

.svc__sub {
  font-size: 0.93rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 420px;
}

.svc__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 2px solid #0f172a;
  color: #0f172a;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.svc__all-btn:hover {
  background: #0b2416;
  color: #fff;
  transform: translateY(-2px);
}
.svc__all-btn i { font-size: 0.8rem; }

/* Rows */
.svc__row { display: grid; gap: 20px; margin-bottom: 20px; }
.svc__row:last-child { margin-bottom: 0; }
.svc__row--featured { grid-template-columns: 1fr 1fr; }
.svc__row--small    { grid-template-columns: repeat(4, 1fr); }

/* Card base */
.svc__card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.svc__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Image wrap */
.svc__img-wrap {
  width: 100%;
  overflow: hidden;
}
.svc__card--lg .svc__img-wrap { height: 280px; }
.svc__card--sm .svc__img-wrap { height: 160px; }

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

/* Card body */
.svc__card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc__tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 2px;
}

.svc__title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.svc__card--lg .svc__title { font-size: 1.2rem; }

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

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

/* Responsive */
@media (max-width: 960px) {
  .svc__row--small { grid-template-columns: repeat(2, 1fr); }
  .svc__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .svc { padding: 70px 0 80px; }
  .svc__row--featured { grid-template-columns: 1fr; }
  .svc__row--small    { grid-template-columns: 1fr 1fr; }
  .svc__card--lg .svc__img-wrap { height: 220px; }
}
