.ev-text-strip {
  width: 100%;
  overflow: hidden;
  background: #b6f426;
  padding: 5px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.ev-text-strip__wrap {
  overflow: hidden;
  white-space: nowrap;
}

.ev-text-strip__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: evTextStripMove 40s linear infinite;
}

.ev-text-strip__track span {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
  animation: textBlinkColor 1.8s infinite linear;
  opacity: 1;
}

/* optional: different timing for second line to make it more dynamic */
.ev-text-strip:nth-of-type(2) .ev-text-strip__track span {
  animation: textBlinkColor 1.4s infinite linear;
}

.ev-text-strip__icon {
  font-size: clamp(26px, 4vw, 60px);
  line-height: 1;
  animation: iconBlinkColor 1.8s infinite linear;
}

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

/* 4-color blinking text */
@keyframes textBlinkColor {
  0% {
    color: #ff1e1e;
    text-shadow: 0 0 6px rgba(255, 30, 30, 0.35);
  }
  25% {
    color: #ff00ff;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.35);
  }
  50% {
    color: #005eff;
    text-shadow: 0 0 8px rgba(0, 94, 255, 0.35);
  }
  75% {
    color: #ff7a00;
    text-shadow: 0 0 8px rgba(255, 122, 0, 0.35);
  }
  100% {
    color: #ff1e1e;
    text-shadow: 0 0 6px rgba(255, 30, 30, 0.35);
  }
}

/* icon color animation */
@keyframes iconBlinkColor {
  0% {
    color: #111111;
  }
  25% {
    color: #ff00ff;
  }
  50% {
    color: #005eff;
  }
  75% {
    color: #ff7a00;
  }
  100% {
    color: #111111;
  }
}

:root {
  --primary-color: #becb0a;
  --secondary-color: #161515;
}

.hero-all-products{
  position: relative;
  width: 100%;
    min-height: clamp(620px, 88vh, 980px);  /* was 520..820 */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 40px;
  margin-top: 40px;

  /* remove single background image, slides will handle it */
  background: #000; /* fallback */
}


/* Slides wrapper sits behind overlay + text */
.hero-slides-all-products{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.products-hero{
  --p-nav-h: 72px;
  --p-accent: #becb0a;
  --p-text: #fff;
  --p-max: 1180px;

  position: relative;
}

.products-hero__slider{
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: calc(100vh - var(--p-nav-h));
}

/* IMPORTANT: each slide must fill the hero */
.products-hero__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
  overflow: hidden;

  background-image: var(--p-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.products-hero__slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

/* dark overlay like your screenshot */
.products-hero__overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(70% 90% at 75% 50%,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.08) 60%,
      rgba(0,0,0,0.88) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.55) 55%,
      rgba(0,0,0,0.05) 100%);
}

.products-hero__inner{
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--p-max);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: flex-end; /* text on right */
}

.products-hero__text{
  max-width: 720px;
  text-align: left;
}

.products-hero__kicker{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
  color: rgba(255,255,255,0.85);
}

.products-hero__title{
  margin: 0 0 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #fff;
  font-size: clamp(42px, 5vw, 86px);
}

.products-hero__line{ display:block; }

.products-hero__subtitle{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.8);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.7;
  max-width: 64ch;
}

.products-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: var(--p-accent);
  color: #111;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
}

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

.products-hero__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.85);
  background: transparent;
  cursor: pointer;
  opacity: 0.75;
}

.products-hero__dot.is-active{
  background: rgba(255,255,255,0.98);
  opacity: 1;
}

/* reveal animation */
.products-hero__reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
  will-change: transform, opacity;
}

.products-hero__reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 991px){
  .products-hero__inner{
    justify-content: center;
    text-align: center;
  }
  .products-hero__text{
    text-align: center;
  }
}

@media (max-width: 767px){
  .products-hero__title{
    line-height: 1.02;
    font-size: clamp(34px, 8vw, 54px);
  }
}

@media (prefers-reduced-motion: reduce){
  .products-hero__slide,
  .products-hero__reveal{
    transition: none !important;
  }
}

/* Each slide is a full-cover background */
.hero-slide-all-products{
  position: absolute;
  inset: 0;
  background-size: 100% 100%, contain; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 2500ms ease;
  will-change: opacity, transform;
}

/* Active slide visible */
.hero-slide-all-products.is-active{
  opacity: 1;
  transform: scale(1);
}

/* Keep your overlay above slides */
.hero-overlay-all-products{
  z-index: 1;
}

/* Keep your content above overlay */
.hero-inner-all-products{
  z-index: 2;
  position: relative;
}
/* Dark shadow/vignette like your screenshot */
.hero-overlay-all-products {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(70% 90% at 75% 50%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.046) 60%,
      rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.062) 0%,
      rgba(0, 0, 0, 0.72) 60%,
      rgba(0, 0, 0, 0) 100%);
}

.hero-inner-all-products {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: flex-end; /* text on right */
}

.hero-text-wrap-all-products {
  max-width: 720px;
  text-align: left;

  opacity: 0;
  transform: translateY(26px);
  transition:
    transform 800ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 650ms ease;
  will-change: transform, opacity;
}

/* Added by JS */
.hero-all-products.is-ready-all-products .hero-text-wrap-all-products {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker-all-products {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
  font-size: 12px;
  margin-bottom: 14px;
}

.hero-title-all-products {
  color: #fff;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 86px);
}

.hero-subtitle-all-products {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.7;
  margin: 0;
  max-width: 64ch;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-all-products {
    min-height: clamp(520px, 65vh, 720px);
  }

  .hero-inner-all-products {
    justify-content: center; /* center on tablet */
    padding: 0 18px;
  }

  .hero-text-wrap-all-products {
    max-width: 760px;
    text-align: center;
  }

  .hero-overlay-all-products {
    background:
      radial-gradient(80% 100% at 50% 45%,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.72) 65%,
        rgba(0, 0, 0, 0.9) 100%);
  }
}
@media (prefers-reduced-motion: reduce){
  .hero-slide-all-products{
    transition: none;
    transform: none;
  }
}
@media (max-width: 767px){
  .hero-slide-all-products{
    background-position: 35% center;
  }

  .hero-title-all-products {
    line-height: 1.02;
  }

  .hero-kicker-all-products {
    margin-bottom: 10px;
  }
}

@media (max-width: 479px) {
  .hero-inner-all-products {
    padding: 0 14px;
  }

  .hero-subtitle-all-products {
    max-width: 40ch;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero-text-wrap-all-products {
    transition: none;
    transform: none;
    opacity: 1;
  }
}


/* ===== Basic Solution Heading (Responsive + Reveal) ===== */

.basic-solution-heading {
  background: #fff;
  padding: clamp(48px, 6vw, 90px) 0;
}

.basic-solution-heading__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;

  text-align: center;
}

.basic-solution-heading__kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
}

.basic-solution-heading__title {
  margin: 0;
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #1a1919;

  /* Responsive size */
  font-size: clamp(34px, 4.1vw, 66px);
}

/* ---------- Reveal animation (replays on scroll up/down) ---------- */
.basic-solution-heading [data-bsh-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    transform 900ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 650ms ease;
  transition-delay: var(--bsh-delay, 0ms);
  will-change: transform, opacity;
}

.basic-solution-heading.is-inview-bsh [data-bsh-reveal] {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991px) {
  .basic-solution-heading__container {
    padding: 0 18px;
  }

  .basic-solution-heading__title {
    line-height: 1.02;
  }
}

@media (max-width: 767px) {
  .basic-solution-heading {
    padding: 46px 0;
  }

  .basic-solution-heading__kicker {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .basic-solution-heading__title {
    font-size: clamp(30px, 9vw, 52px);
  }
}

@media (max-width: 479px) {
  .basic-solution-heading__container {
    padding: 0 14px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .basic-solution-heading [data-bsh-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
:root{
  --primary-color:#becb0a;
  --secondary-color:#161515;
  --heading-white-section:#1a1919;
  --body-white-section:#5e5e5e;
  --line-color: rgba(22,21,21,.18);
}

*{ box-sizing:border-box; }
.features-grid-all-products{
  width:100%;
  background:#fff;
  padding: 56px 0;
}

.features-wrap-all-products{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* rows */
.features-row-3-all-products,
.features-row-2-all-products{
  display:grid;
  gap:0;
}

/* 3 cards top row */
.features-row-3-all-products{
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

/* 2 cards bottom row */
.features-row-2-all-products{
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line-color);
}

/* card */
.feature-card-all-products{
  position:relative;
  display:block;
  padding: 42px 42px 36px;
  min-height: 260px;
  text-decoration:none;
  background:#fff;
  overflow:hidden;

  /* borders (no double thickness) */
  border-right: 1px solid var(--line-color);
}

.features-row-3-all-products .feature-card-all-products:nth-child(3n){
  border-right:none;
}
.features-row-2-all-products .feature-card-all-products:nth-child(2n){
  border-right:none;
}

/* top row needs vertical lines only; bottom row also */
.features-row-2-all-products .feature-card-all-products{
  border-top: none;
}

/* hover fill (top -> bottom) */
.feature-card-all-products::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--primary-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
  z-index:0;
}

/* content above overlay */
.feature-card-all-products > *{
  position:relative;
  z-index:1;
}

/* typography */
.feature-title-all-products{
  margin:0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading-white-section);
}

.feature-text-all-products{
  margin:0 0 26px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-white-section);
  max-width: 52ch;
}

.feature-link-all-products{
  display:inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--secondary-color);
  position:relative;
  padding-bottom: 6px;
}

.feature-link-all-products{
  display:inline-block;
  position:relative;
  padding-bottom: 6px;
}

.feature-link-all-products::after{
  content:"";
  position:absolute;
  left:0;
  right:0;              /* makes it span full text width */
  bottom:0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform 360ms ease;
}


/* hover / focus */
.feature-card-all-products:hover::before,
.feature-card-all-products:focus-visible::before,
.feature-card-all-products.is-hover-all-products::before{
  transform: scaleY(1);
}

.feature-card-all-products:hover .feature-title-all-products,
.feature-card-all-products:focus-visible .feature-title-all-products,
.feature-card-all-products.is-hover-all-products .feature-title-all-products{
  color: var(--secondary-color);
}

.feature-card-all-products:hover .feature-text-all-products,
.feature-card-all-products:focus-visible .feature-text-all-products,
.feature-card-all-products.is-hover-all-products .feature-text-all-products{
  color: rgba(22,21,21,.78);
}

.feature-card-all-products:hover .feature-link-all-products::after,
.feature-card-all-products:focus-visible .feature-link-all-products::after,
.feature-card-all-products.is-hover-all-products .feature-link-all-products::after{
  transform: scaleX(1);
}

/* accessibility */
.feature-card-all-products:focus-visible{
  outline: 2px solid rgba(190,203,10,.65);
  outline-offset: -2px;
}

/* responsive */
@media (max-width: 991px){
  .features-wrap-all-products{
    width: min(1180px, calc(100% - 32px));
  }

  .features-row-3-all-products{
    grid-template-columns: repeat(2, 1fr);
  }
  .features-row-3-all-products .feature-card-all-products:nth-child(3n){
    border-right: 1px solid var(--line-color);
  }
  .features-row-3-all-products .feature-card-all-products:nth-child(2n){
    border-right: none;
  }
}

@media (max-width: 767px){
  .features-grid-all-products{
    padding: 40px 0;
  }

  .features-row-3-all-products,
  .features-row-2-all-products{
    grid-template-columns: 1fr;
  }

  .feature-card-all-products{
    padding: 28px 22px 22px;
    min-height: 0;
    border-right: none;
    border-bottom: 1px solid var(--line-color);
  }

  .features-row-2-all-products{
    border-bottom: none;
  }

  .feature-title-all-products{
    font-size: 20px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .feature-card-all-products::before,
  .feature-link-all-products::after{
    transition:none !important;
  }
}
:root{
  --brand-green: #becb0a;
  --text-dark: #1a1919;
  --text-body: #5e5e5e;
  --border: rgba(0,0,0,.14);
}

/* ===== Our Work Section ===== */
.ourwork-all-products{
  background:#fff;
  padding: clamp(40px, 6vw, 90px) 0;
}

.ourwork__container-all-products{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.ourwork__grid-all-products{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

/* Left content */
.ourwork__kicker-all-products{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: .85;
  margin-bottom: 12px;
}

.ourwork__title-all-products{
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  margin: 0 0 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.ourwork__lead-all-products{
  margin: 0 0 18px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 56ch;
}

.ourwork__divider-all-products{
  height: 1px;
  width: 100%;
  background: var(--border);
  margin: 18px 0 22px;
}

.ourwork__item-all-products{
  margin: 0 0 18px;
}

.ourwork__item-head-all-products{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.ourwork__check-all-products{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
  color: var(--brand-green);
}

.ourwork__item-title-all-products{
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
}

.ourwork__item-text-all-products{
  margin: 0 0 0 40px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 60ch;
}

/* Right media */
.ourwork__media-all-products{
  display:flex;
  justify-content:flex-end;
}

.ourwork__photo-all-products{
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 4 / 5.2; /* keeps height consistent like your screenshot */
  overflow: hidden;
  background: var(--brand-green); /* initial “green card” */
}

/* Real image */
.ourwork__img-all-products{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}

/* GREEN → IMAGE REVEAL MASK (top → down) */
.ourwork__photo-all-products::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--brand-green);
  transform: scaleY(1);
  transform-origin: top;
  z-index: 2;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}

/* optional subtle shadow overlay (like screenshot soft shading) */
.ourwork__photo-all-products::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,0));
  z-index: 1;
  pointer-events:none;
}

/* Badge (appears LAST) */
.ourwork__badge-all-products{
  position:absolute;
  right: -8px;            /* makes it stick out like your screenshot */
  bottom: 78px;
  background: var(--brand-green);
  color: #111;
  padding: 18px 22px;
  display:flex;
  align-items:center;
  gap: 14px;
  z-index: 3;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.ourwork__badge-num-all-products{
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
}

.ourwork__badge-label-all-products{
  font-size: 18px;
  line-height: 1.1;
}

/* ===== Scroll reveal (content) ===== */
.ourwork-all-products [data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: transform, opacity;
}

/* When in view (replays because JS removes class on exit) */
.ourwork-all-products.is-inview-all-products [data-reveal]{
  opacity: 1;
  transform: translateY(0);
}

/* Image reveal trigger */
.ourwork-all-products.is-inview-all-products .ourwork__photo-all-products::before{
  transform: scaleY(0); /* reveal from top to bottom */
}

/* Badge appears AFTER image reveal */
.ourwork-all-products.is-inview-all-products .ourwork__badge-all-products{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 900ms; /* badge comes last */
}

/* ===== Responsive ===== */
@media (max-width: 991px){
  .ourwork__grid-all-products{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .ourwork__media-all-products{
    justify-content:flex-start;
  }
  .ourwork__photo-all-products{
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 12; /* nicer on tablets */
  }
  .ourwork__badge-all-products{
    right: 12px;
    bottom: 18px;
  }
}

@media (max-width: 520px){
  .ourwork__photo-all-products{
    aspect-ratio: 16 / 13;
  }
  .ourwork__badge-num-all-products{
    font-size: 36px;
  }
  .ourwork__badge-label-all-products{
    font-size: 16px;
  }
  .ourwork__item-text-all-products{
    margin-left: 0;
  }
}
/* ===== FIX: center content vertically + equal top/bottom spacing for image + badge fully visible ===== */

/* Make both columns same height and vertically centered */
.ourwork__grid-all-products{
  align-items: center; /* was start */
}

/* Ensure the left block sits in the vertical middle nicely */
.ourwork__content-all-products{
  align-self: center;
}

/* Right side: keep the image “card” centered with equal space top/bottom */
.ourwork__media-all-products{
  align-items: center;
}

/* Prevent text truncation in badge */
.ourwork__badge-label-all-products{
  white-space: nowrap;         /* keeps “Active users” readable */
}

/* Slightly scale badge for small widths */
@media (max-width: 520px){
  .ourwork__badge-all-products{
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
    gap: 10px;
  }
  .ourwork__badge-num-all-products{ font-size: 32px; }
  .ourwork__badge-label-all-products{ font-size: 14px; }
}

/* Tablet: keep layout balanced and centered */
@media (max-width: 991px){
  .ourwork__grid-all-products{
    align-items: start; /* stack mode looks better top-aligned */
  }
  .ourwork__photo-all-products{
    margin-inline: auto;
    margin-block: 14px;
    overflow: hidden; /* in stacked view, keep everything neat */
  }
  .ourwork__badge-all-products{
    right: 12px;
    bottom: 12px;
  }
}


.prod-hero{
  --prod-nav-h: 72px;
  --prod-accent: #becb0a;
  --prod-text: #fff;

  --prod-overlay-1: rgba(0,0,0,0.90);
  --prod-overlay-2: rgba(0,0,0,0.62);
  --prod-overlay-3: rgba(0,0,0,0.00);

  --prod-max: 1180px;

  font-family: inherit;
}

.prod-hero__slider{
  position: relative;
  overflow: hidden;
  background: #000;

  /* IMPORTANT: choose a height that matches your image ratio when using contain */
  min-height: clamp(520px, calc(100vh - var(--prod-nav-h)), 760px);
}

.prod-hero__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      var(--prod-overlay-1) 0%,
      var(--prod-overlay-2) 44%,
      rgba(0,0,0,0.15) 62%,
      var(--prod-overlay-3) 74%
    ),
    var(--prod-bg);

  background-repeat: no-repeat, no-repeat;

  /* Layer 1 = overlay fill, layer 2 = image */
  background-size: 100% 100%, cover;     /* NO CROP */
  background-position: 0 0, center; /* alignment */
}

.prod-hero__slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

.prod-hero__container{
  height: 100%;
  max-width: var(--prod-max);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 60px);

  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.prod-hero__content{
  max-width: 70ch;
}

/* kicker underline */
.prod-hero__kicker{
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  padding-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--prod-text);
  opacity: 0.92;
}

.prod-hero__kicker::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:56px;
  height:2px;
  background: var(--prod-accent);
}

.prod-hero__title{
  margin: 0 0 16px;
  font-weight: 850;
  line-height: 0.98;
  color: var(--prod-text);
  font-size: clamp(44px, 5.6vw, 78px);
}

.prod-hero__line{ display:block; }

.prod-hero__subtitle{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.7;
  max-width: 64ch;
}

.prod-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: var(--prod-accent);
  color: #111;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
}

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

.prod-hero__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.85);
  background: transparent;
  cursor: pointer;
  opacity: 0.75;
}

.prod-hero__dot.is-active{
  background: rgba(255,255,255,0.98);
  opacity: 1;
}

/* reveal */
.prod-hero__reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
  will-change: transform, opacity;
}
.prod-hero__reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tuning */
@media (max-width: 768px){
  .prod-hero__slide{
    background-size: 100% 100%, contain;    /* still NO CROP */
    background-position: 0 0, center top;   /* keep top visible on phones */
  }

  .prod-hero__title{
    font-size: clamp(34px, 8vw, 54px);
    line-height: 1.02;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .prod-hero__slide,
  .prod-hero__reveal{
    transition: none !important;
  }
}