/* =========================================================
   HOME PAGE
   Layout/styling specific to index.html only.
   ========================================================= */
/* =========================================================
   HERO
   Full-bleed two-column hero: text (left) + edge-to-edge
   image slider (right). Rebuilt from scratch — see the
   RESPONSIVE section below for the tablet/mobile stacked
   (image-top, text-below) layout.

   --hero-navbar-h approximates the sticky navbar's rendered
   height (logo 34px + var(--space-2) padding top/bottom +
   1px border ≈ 67px, rounded up for breathing room) so the
   hero can fill "the rest of the viewport" beneath it.
   ========================================================= */
.hero {
  --hero-navbar-h: 73px;
  background: var(--color-forest);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(420px, 44%) 1fr;
  min-height: calc(100svh - var(--hero-navbar-h));
  align-items: stretch;
}

/* ---------- Text column ---------- */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-6) clamp(1.5rem, 4vw, 4rem);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-leaf-light);
  border: 1px solid var(--color-line-dark);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-bottom: var(--space-4);
  align-self: flex-start;
}

.hero__title {
  color: var(--color-white);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.hero__title em {
  font-style: italic;
  color: var(--color-leaf-light);
}

.hero__lede {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.55;
  max-width: 460px;
  margin-bottom: var(--space-4);
}

.hero__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero__actions .btn {
  flex: 0 1 auto;
}

/* Stat row — 2x2 grid with a vertical divider between columns */
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-4);
  max-width: 460px;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-line-dark);
}

.hero-stat:nth-child(even) {
  padding-left: var(--space-3);
  border-left: 1px solid var(--color-line-dark);
}

.hero-stat__num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.hero-stat__label {
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
}

/* ---------- Visual column ---------- */
.hero__visual {
  position: relative;
  height: 100%;
  min-height: 320px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6000ms ease;
  z-index: 1;
}

.hero-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle bottom gradient so arrows/dots/counter stay readable
   without darkening the image overall. */
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(14, 33, 28, 0.55) 0%,
    rgba(14, 33, 28, 0.12) 22%,
    rgba(14, 33, 28, 0) 45%
  );
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(14,33,28,0.35);
  backdrop-filter: blur(6px);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.hero-slider__arrow svg { width: 20px; height: 20px; }

.hero-slider__arrow:hover {
  background: rgba(14,33,28,0.6);
  border-color: var(--color-white);
}

.hero-slider__arrow--prev { left: var(--space-3); }
.hero-slider__arrow--next { right: var(--space-3); }

.hero-slider__counter {
  position: absolute;
  left: var(--space-3);
  bottom: var(--space-3);
  z-index: 4;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-slider__dots {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width var(--duration) var(--ease), background var(--duration) var(--ease);
}

.hero-slider__dot.is-active {
  width: 22px;
  background: var(--color-earth);
}






/* ---------- About teaser ---------- */
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
  align-items: center;
}

.about-teaser__text { max-width: 600px; }
.about-teaser__text h2 { margin-block: var(--space-2) var(--space-3); }
.about-teaser__text .lede { margin-bottom: var(--space-3); }

.about-teaser__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-stat {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 28px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--color-earth);
}

.about-stat__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-forest);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.about-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-earth);
}

/* ---------- Featured products ---------- */
.featured-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 340px;
  margin-inline: auto;
  width: 100%;
}

.product-card__img {
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  background: var(--color-cream);
}

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

.product-card__body {
  padding: var(--space-2) var(--space-3);
}

.product-card__body h3 { margin-bottom: 0.3rem; font-size: 1.08rem; }
.product-card__body p { font-size: 0.85rem; margin-bottom: var(--space-1); line-height: 1.5; }

.product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.featured-products__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}

/* ---------- Process loop (Home page only) ---------- */

/* .process-preview {
  background: #17201A;
} */


.process-preview__image-wrap {
  margin-top: var(--space-4);
  display: flex;
  justify-content: center;
}

.process-preview__image {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
}

.process-preview__cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-5);
}


/* ---------- Certifications slider ---------- */
.cert-slider {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.cert-slider__track {
  width: max-content;
}

.cert-card {
  flex: 0 0 280px;
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: block;
  color: inherit;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-leaf-light);
}

.cert-card__id {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-earth);
  margin-bottom: 0.4rem;
}

.cert-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.cert-card p { font-size: 0.85rem; margin-bottom: var(--space-2); }

.cert-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-leaf);
}

.certifications-preview__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}

/* ---------- Blog teaser ---------- */
/* ---------- Blog teaser: full-bleed image overlay cards ---------- */
.blog-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.blog-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

.blog-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

/* .blog-card:hover .blog-card__bg {
  transform: scale(1.06);
} */

.blog-teaser__cta{
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);

}
.blog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 33, 28, 0.96) 0%,
    rgba(14, 33, 28, 0.75) 32%,
    rgba(14, 33, 28, 0.15) 62%,
    rgba(14, 33, 28, 0.05) 100%
  );
}

.blog-card__badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  z-index: 2;
}

.blog-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-4) var(--space-3) var(--space-3);
  z-index: 2;
}

.blog-card__date {
  font-size: 0.78rem;
  color: var(--color-leaf-light);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.blog-card__content h3 {
  color: var(--color-white);
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.blog-card__desc {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: var(--space-2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.blog-card__content .btn-link {
  color: var(--color-white);
  display: inline-flex;

}

.blog-card__content .btn-link::after {
  color: var(--color-leaf-light);
}


/* ---------- Partner teaser ---------- */
.partner-teaser__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-3);
}

.partner-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.partner-card h3 { color: var(--color-white); margin-bottom: var(--space-2); }
.partner-card p { margin-bottom: var(--space-3); }

/* ---------- FAQ preview ---------- */
.faq-preview__list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-forest);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin-top: var(--space-2);
  font-size: 0.92rem;
}

.faq-preview__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
}

/* ---------- Contact teaser ---------- */
.contact-teaser__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  flex-wrap: wrap;
}
/* =========================================================
   RESPONSIVE — Home page specific
   ========================================================= */

/* ---------- ≤1024px : tablet/iPad — image TOP, content BELOW ---------- */
@media (max-width: 1024px) {
  .hero__grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  /* Image slider sits directly under the navbar, full width, zero gap */
  .hero__visual {
    order: 1;
    width: 100%;
    max-width: 100%;
    height: 52vh;
    min-height: 340px;
    max-height: 560px;
  }

  .hero__content {
    order: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: var(--space-5) var(--space-4);
  }

  .hero__stats { max-width: 480px; }

  .featured-products__grid,
  .blog-teaser__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- ≤768px : mobile — image TOP, content BELOW, compact ---------- */
@media (max-width: 768px) {
  .hero__visual {
    width: 100%;
    max-width: 100%;
    height: 46vh;
    min-height: 280px;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: var(--space-5) var(--space-3);
  }

  .hero__badge {
    font-size: 0.72rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: var(--space-2);
  }

  .hero__title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    margin-bottom: var(--space-2);
  }

  .hero__lede {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: var(--space-3);
  }

  .hero__stats {
    max-width: 100%;
    gap: var(--space-2) var(--space-3);
    padding: var(--space-3);
    margin-top: var(--space-3);
    padding-top: var(--space-3);
  }
  .hero-stat { padding-block: 0.1rem; }
  .hero-stat__num { font-size: 1.5rem; }
  .hero-stat__label { font-size: 0.8rem; }

  .hero__actions {
    flex-direction: column;
    gap: var(--space-1);
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0.75rem 1.2rem;
    font-size: 0.88rem;
  }

  .hero-slider__arrow { width: 36px; height: 36px; }
  .hero-slider__arrow svg { width: 16px; height: 16px; }
  .hero-slider__arrow--prev { left: var(--space-2); }
  .hero-slider__arrow--next { right: var(--space-2); }
  .hero-slider__counter { left: var(--space-2); bottom: var(--space-2); font-size: 0.72rem; }
  .hero-slider__dots { right: var(--space-2); bottom: var(--space-2); }
}

/* ---------- ≤480px : very small mobile — tighten further so everything fits ---------- */
@media (max-width: 480px) {
  .hero__visual {
    height: 40vh;
    min-height: 230px;
  }

  .hero__content {
    padding: var(--space-4) var(--space-3);
  }

  .hero__badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.8rem;
    margin-bottom: var(--space-2);
  }

  .hero__title {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
    margin-bottom: var(--space-2);
  }

  .hero__lede {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: var(--space-3);
  }

  .hero__stats {
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    margin-top: var(--space-2);
    padding-top: var(--space-2);
  }
  .hero-stat__num { font-size: 1.3rem; }
  .hero-stat__label { font-size: 0.74rem; }

  .hero__actions .btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
}

/* ---------- ≤768px : mobile — remaining home-page sections (unchanged) ---------- */
@media (max-width: 768px) {

  /* ----- About Us: stack single-column, stats between paragraph and Learn More link ----- */
  /* ...everything from here down (About Us, Products, Process, Certifications, Blog,
     Partner cards) is unchanged — keep it exactly as-is in your file... */
     



  /* ----- About Us: stack single-column, stats between paragraph and Learn More link ----- */
  .about-teaser__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .about-teaser__text { display: contents; }
  .about-teaser__text .eyebrow { order: 1; margin-bottom: 0.3rem; }
  .about-teaser__text h2 { order: 2; font-size: 1.6rem; margin-bottom: var(--space-2); }
  .about-teaser__text .lede { order: 3; font-size: 0.92rem; margin-bottom: var(--space-3); }
  .about-teaser__stats {
    order: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-1);
    margin-bottom: var(--space-3);
  }
  .about-teaser__text .btn-link { order: 5; }

  .about-stat {
    padding: 0.55rem 0.35rem;
    border-radius: 8px;
    min-width: 0;
  }
  .about-stat::before { width: 18px; height: 2px; }
  .about-stat__num { font-size: 1.05rem; margin-bottom: 0.15rem; }
  .about-stat__label {
    font-size: 0.58rem;
    line-height: 1.25;
    white-space: normal;
  }

  /* ----- Products section heading — moderate reduction ----- */
  .featured-products .eyebrow { font-size: 0.72rem; }
  .featured-products h2 { font-size: 1.55rem; }
  .featured-products .lede { font-size: 0.88rem; }

  /* ----- Products: compact 2-per-row grid on mobile, only first 2 shown ----- */
  .featured-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
  }
  .featured-products__grid .product-card:nth-child(n + 3) {
    display: none;
  }
  .product-card { max-width: 100%; border-radius: var(--radius-sm); }
  .product-card__img { aspect-ratio: 1 / 1; }
  .product-card__body { padding: var(--space-1) var(--space-2) var(--space-2); }
  .product-card__body h3 { font-size: 0.85rem; margin-bottom: 0.2rem; }
  .product-card__body p {
    font-size: 0.7rem;
    line-height: 1.35;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
  .product-card__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .product-card__actions .btn-link { font-size: 0.72rem; text-align: center; }
  .product-card__actions .btn {
    padding: 0.45rem 0.6rem;
    font-size: 0.68rem;
    width: 100%;
  }

  /* ----- Process: bigger, animated vertical timeline ----- */
  .process-preview__flow {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-width: 280px;
    margin-inline: auto;
    position: relative;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    gap: var(--space-3);
    padding-bottom: var(--space-4);
  }

  .process-step__circle {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }

  .process-step__line {
    display: block;
    position: absolute;
    left: 32px;
    top: 64px;
    bottom: 0;
    width: 2px;
    z-index: 1;
    background: repeating-linear-gradient(
      to bottom,
      var(--color-leaf-light) 0 6px,
      transparent 6px 12px
    );
  }

  .process-step__line::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 12px;
    height: 12px;
    border-right: 2.5px solid var(--color-leaf-light);
    border-bottom: 2.5px solid var(--color-leaf-light);
    transform: translateX(-50%) rotate(45deg);
  }

  /* Progressive enhancement: animate the line/arrow only once JS has
     confirmed it's safe to (see .js-anim-ready guard elsewhere).
     Default state above is fully visible with no JS at all. */
  .process-preview.js-anim-ready .process-step__line {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--step-delay, 0s) + 0.1s);
  }

  .process-preview.js-anim-ready .process-step__line::after {
    opacity: 0;
    transition: opacity 0.35s ease-out calc(var(--step-delay, 0s) + 0.75s);
  }

  .process-preview.js-anim-ready .process-step.is-visible .process-step__line {
    transform: scaleY(1);
  }

  .process-preview.js-anim-ready .process-step.is-visible .process-step__line::after {
    opacity: 1;
  }



  .process-step.is-visible .process-step__line::after {
    opacity: 1;
  }

  .process-step.is-visible .process-step__line { transform: scaleY(1); }

  .process-step__text { align-items: flex-start; padding-top: 0.4rem; }
  .process-step__label { font-size: 0.95rem; margin-bottom: 0.15rem; }
  .process-step__sub { font-size: 0.8rem; }

  .process-step__arrow { display: none; }

  /* ----- Certifications: shrink further, stay horizontal ----- */
  .cert-card { flex: 0 0 220px; padding: var(--space-2); }
  .cert-card h3 { font-size: 0.9rem; }
  .cert-card p { font-size: 0.78rem; }
  .cert-card__id { font-size: 0.68rem; }

  /* ----- Blog: show only the first/latest card, same image-overlay layout ----- */
  .blog-teaser .eyebrow { font-size: 0.72rem; }
  .blog-teaser h2 { font-size: 1.55rem; }
  .blog-teaser .lede { font-size: 0.88rem; }
  .blog-teaser__grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .blog-teaser__grid .blog-card:nth-child(n + 2) { display: none; }
  .blog-card { aspect-ratio: 1 / 1; }
  .blog-card__content { padding: var(--space-3) var(--space-2) var(--space-2); }
  .blog-card__content h3 { font-size: 1rem; }
  .blog-card__desc { font-size: 0.8rem; }
  .blog-card__date { font-size: 0.72rem; }


  /* ----- Partner With Us: compact stacked cards ----- */
  .partner-teaser .eyebrow { font-size: 0.72rem; }
  .partner-teaser h2 { font-size: 1.5rem; }
  .partner-teaser__grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .partner-card { padding: var(--space-3); }
  .partner-card h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
  .partner-card p { font-size: 0.85rem; margin-bottom: var(--space-2); }
  .partner-card .btn { padding: 0.65rem 1.1rem; font-size: 0.82rem; }
}

@media (max-width: 375px) {
  .process-step__circle { width: 56px; height: 56px; }
  .process-step__line { left: 27px; top: 56px; }
}