/* ==========================================================================
   style-clone.css — overrides for index-clone.html only
   Loaded after style.css so these rules win the cascade.
   ========================================================================== */

/* ----- Why-crops icons: larger and clearer ----- */
.crop-block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.crop-block h3 .crop-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
  background: #f6f7f4;
  padding: 4px;
  border: 1px solid var(--border-gray);
  vertical-align: middle;
}

/* ----- Hero zoom slider (Ken Burns crossfade) ----- */
.hero {
  background: #143524;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 50, 30, 0.55), rgba(20, 50, 30, 0.55));
  z-index: 2;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  will-change: opacity, transform;
  animation: heroSlideZoom 21s ease-in-out infinite;
}
.hero-slide.s1 {
  background-image: url('../images/asirigrowth-slider-1.png');
  animation-delay: 0s;
}
.hero-slide.s2 {
  background-image: url('../images/asirigrowth-slider-2.png');
  animation-delay: 7s;
}
.hero-slide.s3 {
  background-image: url('../images/asirigrowth-slider-3.png');
  animation-delay: 14s;
}
.hero-content {
  position: relative;
  z-index: 3;
}

/* 21s cycle, 3 slides staggered by 7s — each slide visible ~7s with 1s crossfade */
@keyframes heroSlideZoom {
  0%   { opacity: 0; transform: scale(1.00); }
  5%   { opacity: 1; transform: scale(1.02); }
  33%  { opacity: 1; transform: scale(1.12); }
  38%  { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1.00); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 1; }
  .hero-slide.s2,
  .hero-slide.s3 { opacity: 0; }
}

/* ----- Hero glass cards (below trust-line) ----- */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 560px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 1.1rem 0.9rem 1.2rem;
  text-align: center;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.hero-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.42);
}
.hero-card-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143524;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.hero-card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.hero-card-label {
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

@media (max-width: 600px) {
  .hero-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    max-width: 100%;
  }
  .hero-card { padding: 0.9rem 0.4rem 1rem; }
  .hero-card-icon { width: 46px; height: 46px; }
  .hero-card-icon svg { width: 24px; height: 24px; }
  .hero-card-label { font-size: 0.72rem; letter-spacing: 0.04em; }
}
