/* hero-banner starting from here */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-image: url("../image/showcaseBanner.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}
.hero-content {
  position: relative;
  color: #fff;
  z-index: 1;
  text-align: center;
  transform: translateY(-15%);
}
.hero-content h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-breadcrumb {
  font-size: 14px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.hero-breadcrumb a:hover {
  color: #fff;
}
.hero-breadcrumb span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* hero-banner finished here */
.showcase-main {
  padding: 60px 0;
}
/* testimonials starting from here */
.testimonials {
  padding: 80px 350px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.testimonials-left .pill {
  display: inline-block;
  background: #ffd9b5;
  color: #1a1a1a;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
.testimonials-left h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #111;
  margin-bottom: 12px;
}
.testimonials-left .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.testimonials-right {
  position: relative;
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.slider-track {
  display: flex;
  will-change: transform;
  transition: transform 400ms ease;
  touch-action: pan-y;
  gap: 24px;
  padding: 8px;
}
.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 22px;
  text-align: left;
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  justify-content: start;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
.slider-controls {
  display: none;
}
.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  border: 1px solid #eee;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.arrow-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0 0;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9c9c9;
  border: none;
  padding: 0;
  cursor: pointer;
}
.slider-dot.active {
  background: #111;
}
@media (max-width: 900px) {
  .testimonials {
    padding: 80px 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .testimonials-left {
    text-align: center;
  }
  .testimonials-left h2 {
    font-size: clamp(26px, 6vw, 34px);
  }
  .testimonials-left .subtitle {
    font-size: clamp(13px, 2.4vw, 15px);
  }
  .testimonials-left .btn {
    width: min(100%, 240px);
    text-align: center;
  }
  .slider-track {
    gap: 12px;
    padding: 6px;
  }
  .testimonial-card {
    flex: 0 0 calc(50% - 6px);
    padding: 16px;
  }
  .testimonial-text {
    font-size: clamp(13px, 2.2vw, 14px);
  }
  .stars svg {
    width: 15px;
    height: 15px;
  }
}
/* testimonials finished here */
/* visual-gallery starting from here */
.visual-gallery {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  color: #fff;
  padding: 50px 0;
}
.vg-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.vg-left .vg-video {
  position: relative;
  display: block;
  width: min(100%, 760px);
  margin-inline: auto;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}
.vg-media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #000;
}
.vg-thumb {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.vg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
}
.vg-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}
.vg-play-svg {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}
.vg-right .vg-pill {
  display: inline-block;
  background: #ffd9b5;
  color: #1a1a1a;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}
.vg-title {
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #fff;
}
.vg-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 20px;
}
.vg-cta {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}
@media (max-width: 900px) {
  .vg-grid {
    grid-template-columns: 1fr;
  }
  .vg-thumb {
    height: 320px;
  }
}
/* visual-gallery finished here */
/* running-plants starting from here */
.running-plants {
  padding: 40px 0 70px;
  background: #fff;
}

.running-plants__container {
  width: min(100%, 1520px);
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.running-plants__pill {
  display: inline-block;
  background: #fbe6d7;
  color: #ff7a1a;
  border-radius: 999px;
  padding: 6px 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.running-plants__title {
  margin: 0 0 12px;
  color: #000;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: 0.6px;
}

.running-plants__desc {
  margin: 0 auto 4px;
  max-width: 1420px;
  color: #111;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.25;
  font-weight: 400;
}

.running-plants__gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.running-plants__item {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.running-plants__gallery img {
  width: 100%;
  height: clamp(140px, 12.5vw, 230px);
  display: block;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.running-plants__overlay {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 12px;
  display: grid;
  align-items: end;
  justify-items: start;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.2));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease-in-out;
}

.running-plants__hover-text {
  margin: 0;
  color: #e5e7eb;
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition:
    transform 0.45s ease-in-out,
    opacity 0.45s ease-in-out;
}

.running-plants__item:hover img,
.running-plants__item:focus-within img,
.running-plants__item:active img {
  transform: translate3d(10px, 0, 0);
}

.running-plants__item:hover .running-plants__overlay,
.running-plants__item:focus-within .running-plants__overlay,
.running-plants__item:active .running-plants__overlay {
  opacity: 1;
}

.running-plants__item:hover .running-plants__hover-text,
.running-plants__item:focus-within .running-plants__hover-text,
.running-plants__item:active .running-plants__hover-text {
  opacity: 1;
  transform: translateY(0);
}

.running-plants--projects {
  padding: clamp(72px, 9vw, 112px) 0 clamp(64px, 8vw, 98px);
  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(255, 122, 0, 0.12),
      transparent 40%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.running-plants--projects .running-plants__container {
  width: min(1240px, 100%);
  padding: 0 clamp(14px, 2.8vw, 36px);
}

.rp-showcase__eyebrow {
  margin: 0 auto;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ff7a00;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  font-weight: 800;
}

.rp-showcase__eyebrow::before,
.rp-showcase__eyebrow::after {
  content: "";
  width: 64px;
  height: 1px;
  background: rgba(255, 122, 0, 0.45);
}

.rp-showcase__title {
  margin: 16px auto 0;
  max-width: 760px;
  color: #0f172a;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

.rp-showcase__title span {
  color: #ff7a00;
}

.rp-showcase__desc {
  margin: 18px auto 0;
  max-width: 700px;
  color: #5f6b7a;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.55;
}

.rp-showcase__stats {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rp-showcase__stat {
  background: #ffffff;
  border: 1px solid #ebeff5;
  border-radius: 14px;
  min-height: 96px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  text-align: left;
}

.rp-showcase__stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #ff7a00;
  background: #fff7f1;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rp-showcase__stat-icon svg {
  width: 24px;
  height: 24px;
}

.rp-showcase__stat strong {
  display: block;
  color: #0b1324;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1;
}

.rp-showcase__stat p {
  margin: 4px 0 0;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
}

.rp-showcase__featured {
  margin-top: 26px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.13);
}

.rp-showcase__featured img {
  width: 100%;
  aspect-ratio: 21 / 8;
  display: block;
  object-fit: cover;
  transition: transform 520ms ease;
}

.rp-showcase__featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      95deg,
      rgba(10, 19, 37, 0.9) 0%,
      rgba(10, 19, 37, 0.64) 33%,
      rgba(10, 19, 37, 0.18) 58%,
      rgba(10, 19, 37, 0) 82%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

.rp-showcase__featured-overlay {
  position: absolute;
  left: clamp(18px, 4vw, 44px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(520px, 85%);
  text-align: left;
  color: #ffffff;
}

.rp-showcase__featured-eyebrow {
  margin: 0 0 10px;
  color: #ff7a00;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.rp-showcase__featured-overlay h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.rp-showcase__featured-location {
  margin: 10px 0 0;
  font-size: 20px;
  font-weight: 600;
}

.rp-showcase__featured-overlay ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.rp-showcase__featured-overlay li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.55;
}

.rp-showcase__featured-overlay li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

.rp-showcase__featured:hover img,
.rp-showcase__featured:focus-within img {
  transform: scale(1.045);
}

.rp-carousel {
  margin-top: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rp-carousel__viewport {
  flex: 1;
  overflow: hidden;
}

.rp-carousel__track {
  --slides: 3;
  --gap: 14px;
  display: flex;
  gap: var(--gap);
  transform: translate3d(0, 0, 0);
  transition: transform 380ms ease;
  will-change: transform;
}

.rp-carousel__slide {
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - (var(--slides) - 1) * var(--gap)) / var(--slides));
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eaf0f6;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.09);
}

.rp-carousel__slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.rp-carousel__body {
  padding: 12px 14px 14px;
  text-align: left;
}

.rp-carousel__body h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.2;
  font-weight: 700;
}

.rp-carousel__body p {
  margin: 6px 0 0;
  color: #5f6b7a;
  font-size: 15px;
}

.rp-carousel__meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e8edf3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rp-carousel__meta span {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}

.rp-carousel__meta span:last-child {
  text-align: right;
}

.rp-carousel__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid #e6ebf2;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.rp-carousel__arrow:hover {
  transform: translateY(-1px);
  color: #ff7a00;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.rp-carousel__arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.rp-showcase__cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  background: #ff7a00;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.rp-showcase__cta:hover,
.rp-showcase__cta:focus-visible {
  transform: translateY(-2px);
  background-color: #e86d00;
  box-shadow: 0 14px 26px rgba(255, 122, 0, 0.36);
}

.rp-showcase__cta span {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1200px) {
  .running-plants--projects .running-plants__container {
    padding: 0 20px;
  }

  .rp-showcase__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .running-plants--projects {
    padding: 56px 0 54px;
  }

  .rp-showcase__title {
    max-width: 620px;
    font-size: clamp(34px, 8.4vw, 54px);
  }

  .rp-showcase__desc {
    font-size: 15px;
  }

  .rp-showcase__featured img {
    aspect-ratio: 5 / 3;
  }

  .rp-showcase__featured-overlay {
    width: 90%;
  }

  .rp-showcase__featured-location {
    font-size: 18px;
  }

  .rp-showcase__featured-overlay li {
    font-size: 14px;
  }

  .rp-carousel__track {
    --slides: 2;
  }
}

@media (max-width: 700px) {
  .rp-showcase__featured::before {
    background:
      linear-gradient(
        180deg,
        rgba(10, 19, 37, 0.86) 0%,
        rgba(10, 19, 37, 0.66) 42%,
        rgba(10, 19, 37, 0.18) 100%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.15) 100%);
  }

  .rp-showcase__featured-overlay {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .rp-showcase__featured-overlay h3 {
    font-size: clamp(26px, 7.8vw, 36px);
  }
}

@media (max-width: 560px) {
  .running-plants--projects .running-plants__container {
    padding: 0 12px;
  }

  .rp-showcase__eyebrow {
    gap: 8px;
    font-size: 11px;
  }

  .rp-showcase__eyebrow::before,
  .rp-showcase__eyebrow::after {
    width: 30px;
  }

  .rp-showcase__stats {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rp-showcase__stat {
    min-height: 84px;
    padding: 12px 14px;
  }

  .rp-carousel {
    gap: 8px;
  }

  .rp-carousel__track {
    --slides: 1;
    --gap: 10px;
  }

  .rp-carousel__arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .rp-carousel__meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .rp-showcase__cta {
    width: 100%;
    margin-top: 18px;
    padding: 13px 16px;
  }
}
/* running-plants finished here */

/* customer-success starting from here */
.customer-success {
  padding: clamp(72px, 9vw, 110px) 0;
  background:
    radial-gradient(
      circle at 50% -12%,
      rgba(255, 122, 0, 0.1),
      transparent 42%
    ),
    #f8f9fb;
}

.customer-success__container {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 clamp(14px, 2.8vw, 36px);
  text-align: center;
}

.customer-success__eyebrow {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  color: #ff7a00;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  font-weight: 800;
}

.customer-success__eyebrow::before,
.customer-success__eyebrow::after {
  content: "";
  width: 62px;
  height: 1px;
  background: rgba(255, 122, 0, 0.5);
}

.customer-success__title {
  margin: 14px auto 0;
  max-width: 880px;
  color: #111111;
  font-size: clamp(36px, 4.5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

.customer-success__desc {
  margin: 16px auto 0;
  max-width: 700px;
  color: #5f6673;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.6;
}

.customer-success__stats {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.customer-success__stat {
  background: #ffffff;
  border: 1px solid #e8ebf0;
  border-radius: 14px;
  min-height: 96px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
  text-align: left;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.customer-success__stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.customer-success__stat-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff7f1;
  color: #ff7a00;
  display: grid;
  place-items: center;
}

.customer-success__stat-icon svg {
  width: 24px;
  height: 24px;
}

.customer-success__stat strong {
  display: block;
  color: #111111;
  font-size: clamp(26px, 2.1vw, 36px);
  line-height: 1;
}

.customer-success__stat p {
  margin: 4px 0 0;
  color: #5f6673;
  font-size: 14px;
  line-height: 1.3;
}

.customer-success__featured {
  margin-top: 22px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.customer-success__featured img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  display: block;
  transition: transform 520ms ease;
}

.customer-success__featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      96deg,
      rgba(9, 16, 31, 0.92) 0%,
      rgba(9, 16, 31, 0.73) 36%,
      rgba(9, 16, 31, 0.18) 64%,
      rgba(9, 16, 31, 0) 84%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.2) 100%);
}

.customer-success__featured-overlay {
  position: absolute;
  top: 50%;
  left: clamp(18px, 3.5vw, 40px);
  transform: translateY(-50%);
  width: min(740px, 90%);
  color: #ffffff;
  text-align: left;
  z-index: 2;
}

.customer-success__featured-eyebrow {
  margin: 0 0 10px;
  color: #ff7a00;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
}

.customer-success__featured-overlay h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.06;
  font-weight: 800;
}

.customer-success__featured-location {
  margin: 8px 0 0;
  color: #f3f4f6;
  font-size: 20px;
  font-weight: 600;
}

.customer-success__featured blockquote {
  margin: 14px 0 0;
  max-width: 640px;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.55;
}

.customer-success__featured-meta {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.customer-success__featured-meta li {
  position: relative;
  padding-left: 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.customer-success__featured-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

.customer-success__featured:hover img {
  transform: scale(1.045);
}

.customer-carousel {
  margin-top: 18px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-carousel__viewport {
  flex: 1;
  overflow: hidden;
}

.customer-carousel__track {
  --slides: 3;
  --gap: 16px;
  display: flex;
  gap: var(--gap);
  transform: translate3d(0, 0, 0);
  transition: transform 380ms ease;
  will-change: transform;
}

.customer-carousel__slide {
  margin: 0;
  flex: 0 0 calc((100% - (var(--slides) - 1) * var(--gap)) / var(--slides));
  background: #ffffff;
  border: 1px solid #e8ebf0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.customer-carousel__slide img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  display: block;
}

.customer-card__body {
  padding: 12px 14px 14px;
  text-align: left;
}

.customer-card__body h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.2;
  font-weight: 700;
}

.customer-card__body p {
  margin: 6px 0 0;
  color: #5f6673;
  font-size: 15px;
}

.customer-card__meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e8ebf0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.customer-card__meta span {
  color: #111111;
  font-size: 14px;
  font-weight: 600;
}

.customer-carousel__slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.customer-carousel__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid #e6ebf2;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.customer-carousel__arrow:hover {
  transform: translateY(-1px);
  color: #ff7a00;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.customer-carousel__arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.customer-success__logos {
  margin-top: 20px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  border-radius: 14px;
  border: 1px solid #e8ebf0;
  background: #ffffff;
}

.customer-success__logos span {
  color: #778095;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  opacity: 0.72;
  transition:
    opacity 220ms ease,
    color 220ms ease;
}

.customer-success__logos span:hover {
  opacity: 1;
  color: #4b5568;
}

.customer-success__cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  background: #ff7a00;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.customer-success__cta:hover,
.customer-success__cta:focus-visible {
  transform: translateY(-2px);
  background-color: #e96f00;
  box-shadow: 0 14px 26px rgba(255, 122, 0, 0.36);
}

.customer-success__cta span {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1200px) {
  .customer-success__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-success__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .customer-success {
    padding: 58px 0;
  }

  .customer-success__title {
    font-size: clamp(34px, 8.4vw, 52px);
  }

  .customer-success__featured img {
    aspect-ratio: 5 / 3;
  }

  .customer-success__featured-overlay {
    width: 92%;
  }

  .customer-success__featured-meta {
    grid-template-columns: 1fr;
  }

  .customer-carousel__track {
    --slides: 2;
  }
}

@media (max-width: 700px) {
  .customer-success__featured::before {
    background:
      linear-gradient(
        180deg,
        rgba(9, 16, 31, 0.9) 0%,
        rgba(9, 16, 31, 0.68) 42%,
        rgba(9, 16, 31, 0.2) 100%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.2) 100%);
  }

  .customer-success__featured-overlay {
    top: auto;
    bottom: 16px;
    transform: none;
  }
}

@media (max-width: 560px) {
  .customer-success__container {
    padding: 0 12px;
  }

  .customer-success__eyebrow {
    gap: 8px;
    font-size: 11px;
  }

  .customer-success__eyebrow::before,
  .customer-success__eyebrow::after {
    width: 30px;
  }

  .customer-success__stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .customer-carousel {
    gap: 8px;
  }

  .customer-carousel__track {
    --slides: 1;
    --gap: 10px;
  }

  .customer-carousel__arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .customer-card__meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .customer-success__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .customer-success__cta {
    width: 100%;
    padding: 13px 16px;
  }
}
/* customer-success finished here */

/* ===== Responsive Overrides (project page) ===== */
main,
.visual-gallery {
  overflow-x: clip;
}

.hero-banner img,
.testimonials img,
.visual-gallery img,
.visual-gallery video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .testimonials {
    padding: clamp(52px, 7vw, 80px) clamp(20px, 5vw, 120px);
  }

  .testimonials-grid {
    gap: clamp(20px, 3vw, 36px);
  }

  .vg-grid {
    gap: clamp(20px, 3vw, 40px);
  }

  .vg-thumb {
    height: clamp(260px, 35vw, 420px);
  }

  .running-plants__container {
    padding: 0 20px;
  }

  .running-plants__gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-banner {
    min-height: 250px;
    padding: 0 14px;
  }

  .hero-content {
    transform: none;
  }

  .hero-content h1 {
    font-size: clamp(30px, 7vw, 44px);
    margin-bottom: 10px;
  }

  .hero-breadcrumb {
    font-size: clamp(12px, 2.6vw, 14px);
    flex-wrap: wrap;
    gap: 4px;
  }

  .testimonials-left .subtitle,
  .testimonial-text,
  .vg-desc {
    font-size: clamp(13px, 2.3vw, 15px);
  }

  .slider-track {
    gap: 14px;
    padding: 4px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: clamp(14px, 3vw, 20px);
  }

  .vg-right {
    text-align: center;
  }

  .vg-title {
    font-size: clamp(28px, 6vw, 38px);
  }

  .running-plants {
    padding: 40px 0 56px;
  }

  .running-plants__pill {
    font-size: 12px;
    padding: 6px 16px;
  }

  .running-plants__title {
    font-size: clamp(24px, 5.5vw, 34px);
  }

  .running-plants__desc {
    font-size: clamp(12px, 2vw, 13px);
    line-height: 1.4;
  }

  .running-plants__gallery {
    margin-top: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero-banner {
    min-height: 220px;
  }

  .testimonials {
    padding: 44px 12px;
  }
  .testimonials-grid {
    gap: 16px;
  }
  .testimonials-left h2 {
    font-size: clamp(22px, 7vw, 28px);
  }
  .slider-track {
    gap: 8px;
    padding: 4px;
  }
  .testimonial-card {
    flex: 0 0 calc(50% - 4px);
    padding: 12px;
    border-radius: 12px;
  }
  .testimonial-text {
    font-size: 12px;
    line-height: 1.55;
  }
  .stars {
    margin-bottom: 8px;
  }
  .stars svg {
    width: 13px;
    height: 13px;
  }

  .testimonials-left .pill,
  .vg-right .vg-pill {
    font-size: 11px;
    padding: 5px 11px;
  }

  .btn.btn-accent,
  .vg-cta {
    width: min(100%, 280px);
    text-align: center;
    padding: 10px 14px;
    font-size: 13px;
  }

  .slider-dots {
    gap: 8px;
  }

  .slider-dot {
    width: 7px;
    height: 7px;
  }

  .vg-thumb {
    height: clamp(210px, 52vw, 270px);
  }

  .vg-play-svg {
    width: 78px;
    height: 78px;
  }

  .running-plants {
    padding: 32px 0 42px;
  }

  .running-plants__container {
    padding: 0 12px;
  }

  .running-plants__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .running-plants__gallery img {
    height: clamp(120px, 32vw, 180px);
  }
}

/* Final hard-fix for testimonials on small screens */
.testimonials-grid > * {
  min-width: 0;
}

.testimonials-right {
  min-width: 0;
}

@media (max-width: 900px) {
  .testimonials .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials-left {
    padding: 0 12px;
  }

  .testimonials-left h2 {
    overflow-wrap: anywhere;
  }

  .testimonials-left .btn.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .testimonials-right {
    overflow: hidden;
  }

  .testimonials-slider {
    overflow: hidden;
  }

  .slider-track {
    gap: 10px !important;
  }

  .testimonial-card {
    flex: 0 0 100% !important;
    max-width: 100%;
  }
}

/* Keep desktop/tablet-large exactly like original design */
@media (min-width: 901px) {
  .testimonials {
    padding: 80px 350px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
  }

  .testimonials-left {
    text-align: left;
    padding: 0;
  }

  .testimonials-left h2 {
    font-size: clamp(28px, 4vw, 40px);
  }

  .testimonials-left .subtitle {
    font-size: 16px;
  }

  .testimonials-right,
  .testimonials-slider {
    overflow: hidden;
  }

  .slider-track {
    gap: 24px !important;
    padding: 8px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px) !important;
    padding: 22px;
    max-width: none;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .stars svg {
    width: 18px;
    height: 18px;
  }
}
