/* LabKart first-view — matched to Saiflower lx-hero-split quality */

.home-firstview {
  padding: 0.85rem 0 1.25rem;
}

/* —— Category icon rail —— */
.cat-icons {
  margin: 0 auto 0.85rem;
  max-width: 1520px;
  padding-inline: var(--hp-edge);
}

.cat-icons__list {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.15rem 0 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.cat-icons__list::-webkit-scrollbar { display: none; }

.cat-icon {
  flex: 0 0 auto;
  width: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--color-ink);
}

.cat-icon__img {
  width: 4.25rem;
  height: 4.25rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(194, 160, 90, 0.2);
  box-shadow: var(--shadow-sm);
  color: var(--color-ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-icon__img svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 1.7;
}

.cat-icon:nth-child(1) .cat-icon__img { background: linear-gradient(145deg, #eef5f0, #fff); color: var(--color-success); }
.cat-icon:nth-child(2) .cat-icon__img { background: linear-gradient(145deg, #fdeeee, #fff); color: #c2554b; }
.cat-icon:nth-child(3) .cat-icon__img { background: linear-gradient(145deg, #eef4fb, #fff); color: #3b6ea5; }
.cat-icon:nth-child(4) .cat-icon__img { background: linear-gradient(145deg, #faf5ea, #fff); color: var(--color-primary-dark); }
.cat-icon:nth-child(5) .cat-icon__img { background: linear-gradient(145deg, #fdeef0, #fff); color: #b83b4a; }
.cat-icon:nth-child(6) .cat-icon__img { background: linear-gradient(145deg, #fff8e8, #fff); color: #b8860b; }
.cat-icon:nth-child(7) .cat-icon__img { background: linear-gradient(145deg, #f5eef8, #fff); color: #7a4ea3; }
.cat-icon:nth-child(8) .cat-icon__img { background: linear-gradient(145deg, #eaf7e4, #fff); color: var(--color-success); }
.cat-icon:nth-child(9) .cat-icon__img { background: linear-gradient(145deg, #eef2f7, #fff); color: #475569; }

.cat-icon__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  color: #334155;
}

@media (prefers-reduced-motion: no-preference) {
  .cat-icon:hover .cat-icon__img {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(47, 111, 78, 0.12);
  }
}

@media (min-width: 1024px) {
  .cat-icons__list {
    justify-content: center;
    overflow: visible;
    gap: 1.15rem;
  }

  .cat-icon {
    width: 5.5rem;
  }

  .cat-icon__img {
    width: 4.5rem;
    height: 4.5rem;
  }

  .cat-icon__label { font-size: 0.75rem; }
}

/* —— Below-fold content (1mg-inspired) —— */
.home-section {
  max-width: 1520px;
  margin: 0 auto;
  padding: 1.75rem var(--hp-edge) 0.5rem;
}

.home-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.home-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-section__sub {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  max-width: 36rem;
}

.home-section__link {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.home-section__link:hover {
  color: var(--color-success);
}

/* Health concerns chips */
.concern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .concern-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .concern-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}

.concern-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 0.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.concern-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 160, 90, 0.35);
  color: var(--color-ink);
}

.concern-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #faf5ea, #fff);
  border: 1px solid rgba(194, 160, 90, 0.25);
  color: var(--color-primary-dark);
}

.concern-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.concern-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}

/* Product cards scroll / grid */
.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15.5rem, 18rem);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

@media (min-width: 1100px) {
  .product-rail {
    grid-auto-flow: unset;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }
}

.pkg-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 28, 23, 0.07);
  border-radius: 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pkg-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pkg-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-success);
  background: rgba(47, 111, 78, 0.1);
  border-radius: 999px;
}

.pkg-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.25;
}

.pkg-card__name a {
  color: inherit;
}

.pkg-card__name a:hover {
  color: var(--color-primary-dark);
}

.pkg-card__meta {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.pkg-card__pricing {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.pkg-card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.pkg-card__mrp {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-decoration: line-through;
}

.pkg-card__off {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-discount);
}

.pkg-card__actions {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.35rem;
}

.pkg-card__actions .btn {
  flex: 1;
  font-size: 0.75rem;
  padding: 0.55rem 0.75rem;
}

/* How it works */
.steps {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.step-card {
  position: relative;
  padding: 1.25rem 1.15rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #1d1607;
  background: linear-gradient(135deg, #c9a24e, var(--color-primary));
  border-radius: 50%;
}

.step-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.35rem;
}

.step-card__text {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.45;
}

/* Testimonials */
.t-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .t-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.t-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(32, 28, 23, 0.06);
  border-radius: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.t-card__stars {
  display: flex;
  gap: 0.15rem;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
}

.t-card__stars svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
}

.t-card__quote {
  font-size: 0.875rem;
  color: var(--color-ink-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.t-card__who {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.t-card__avatar {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  background: linear-gradient(145deg, #faf5ea, #fff);
  border: 1px solid rgba(194, 160, 90, 0.3);
}

.t-card__name {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-ink);
}

.t-card__city {
  font-size: 0.7rem;
  color: var(--color-muted);
}

/* FAQ */
.faq-home {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 52rem;
}

.faq-home details {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(32, 28, 23, 0.07);
  border-radius: 0.85rem;
  padding: 0.15rem 0;
}

.faq-home summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-home summary::-webkit-details-marker { display: none; }

.faq-home summary::after {
  content: "+";
  font-weight: 400;
  color: var(--color-muted);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-home details[open] summary::after { content: "–"; }

.faq-home__body {
  padding: 0 1.1rem 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* Bottom CTA */
.home-cta {
  max-width: 1520px;
  margin: 1.5rem auto 2.5rem;
  padding: 0 var(--hp-edge);
}

.home-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(194, 160, 90, 0.25), transparent 60%),
    linear-gradient(135deg, #eef5f0 0%, #faf5ea 55%, #fff 100%);
  border: 1px solid rgba(194, 160, 90, 0.2);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .home-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
  }
}

.home-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.35rem;
}

.home-cta__text {
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 32rem;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* —— Split hero —— */
.hero-split {
  display: block;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 var(--hp-edge) 0.85rem;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-split {
    display: grid;
    grid-template-columns: minmax(13.5rem, 24%) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
  }

  .hero-split__side,
  .hero-split__main {
    height: var(--hero-h);
    min-height: var(--hero-h);
  }
}

/* Left promo card */
.hero-side {
  position: relative;
  height: 100%;
  min-height: var(--hero-h);
}

.hero-side__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: var(--hero-h);
  padding: 1.35rem 1.15rem 0;
  border-radius: 1.35rem;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(165deg, #e4f3ec 0%, #d4ebe0 55%, #c8e4d6 100%);
  border: 1px solid rgba(194, 160, 90, 0.2);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-side__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.hero-side__kicker {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.hero-side__title {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-ink);
  letter-spacing: 0.01em;
}

.hero-side__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a24e 0%, var(--color-primary) 70%);
  color: #1d1607;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(194, 160, 90, 0.35);
  width: fit-content;
}

.hero-side__cta svg {
  width: 0.85rem;
  height: 0.85rem;
}

.hero-side__img {
  display: block;
  flex: 1 1 42%;
  min-height: 7.5rem;
  margin-top: 0.35rem;
  overflow: hidden;
  border-radius: 0 0 1.1rem 1.1rem;
}

.hero-side__img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 7.5rem;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.4s ease;
}

.hero-side__card:hover .hero-side__img img {
  transform: scale(1.04) translateY(-4px);
}

@media (max-width: 899px) {
  .hero-split__side { display: none; }
}

/* Main carousel */
.hero-main {
  position: relative;
  height: var(--hero-h);
  min-height: var(--hero-h);
  border-radius: 1.35rem;
  overflow: hidden;
}

.hero-main__viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 1.35rem;
}

.hero-main__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(194, 160, 90, 0.18);
  box-shadow: var(--shadow-sm);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 22rem);
  max-width: 58%;
  min-height: 100%;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(
    105deg,
    rgba(253, 252, 249, 0.96) 0%,
    rgba(253, 252, 249, 0.84) 48%,
    rgba(253, 252, 249, 0.18) 78%,
    transparent 100%
  );
}

.hero-slide__kicker {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.hero-slide__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero-slide__sub {
  margin: 0.55rem 0 1rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  line-height: 1.45;
  color: #475569;
  max-width: 30ch;
}

.hero-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a24e 0%, var(--color-primary) 70%);
  color: #1d1607;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(194, 160, 90, 0.35);
  width: fit-content;
  transition: transform 0.15s ease;
}

.hero-slide__cta:hover {
  color: #1d1607;
  transform: scale(1.03);
}

.hero-slide__cta svg {
  width: 0.85rem;
  height: 0.85rem;
}

.hero-main__nav {
  position: absolute;
  bottom: 1.15rem;
  z-index: 5;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #334155;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-main__nav:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

.hero-main__nav svg {
  width: 1.05rem;
  height: 1.05rem;
}

.hero-main__nav--prev { right: 4.6rem; }
.hero-main__nav--next { right: 1.1rem; }

.hero-main__dots {
  position: absolute;
  left: 1.5rem;
  bottom: 1.35rem;
  z-index: 5;
  display: flex;
  gap: 0.35rem;
}

.hero-main__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(32, 28, 23, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-main__dot.is-active {
  width: 1.35rem;
  background: var(--color-primary-dark);
}

@media (max-width: 640px) {
  .hero-main,
  .hero-main__viewport,
  .hero-slide {
    min-height: 15.5rem;
    height: 15.5rem;
  }

  .hero-slide__overlay {
    max-width: 72%;
    padding: 1.1rem 1.15rem;
  }

  .hero-main__nav { display: none; }
}

/* —— Trust bar —— */
.trustbar {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0.35rem var(--hp-edge) 0.5rem;
}

.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

@media (min-width: 900px) {
  .trustbar__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trustbar__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 160, 90, 0.4);
}

.trustbar__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(250, 245, 234, 0.9), #fff);
  border: 1px solid rgba(194, 160, 90, 0.3);
  color: var(--color-primary-dark);
}

.trustbar__item:nth-child(odd) .trustbar__icon {
  background: linear-gradient(135deg, rgba(238, 245, 240, 0.9), #fff);
  border-color: rgba(47, 111, 78, 0.22);
  color: var(--color-success);
}

.trustbar__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.trustbar__title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.25;
}

.trustbar__sub {
  font-size: 0.7rem;
  color: var(--color-muted);
  line-height: 1.3;
  margin-top: 0.1rem;
}

@media (max-width: 480px) {
  .trustbar__item { padding: 0.7rem 0.75rem; gap: 0.55rem; }
  .trustbar__icon { width: 2.15rem; height: 2.15rem; }
  .trustbar__title { font-size: 0.72rem; }
  .trustbar__sub { font-size: 0.64rem; }
}

/* ============================================================
   Homepage animations (prefers-reduced-motion safe)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .anim-fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  }
  .anim-fade-up.is-visible { opacity: 1; transform: translateY(0); }

  .anim-stagger > .anim-child {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  }
  .anim-stagger.is-visible > .anim-child { opacity: 1; transform: translateY(0); }
  .anim-stagger.is-visible > .anim-child:nth-child(1) { transition-delay: 0ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(2) { transition-delay: 50ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(3) { transition-delay: 100ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(4) { transition-delay: 150ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(5) { transition-delay: 200ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(6) { transition-delay: 250ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(7) { transition-delay: 300ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(8) { transition-delay: 350ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(9) { transition-delay: 400ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(10) { transition-delay: 450ms; }
  .anim-stagger.is-visible > .anim-child:nth-child(n+11) { transition-delay: 480ms; }

  .cat-icons.anim-enter { animation: softRise 0.55s var(--ease-out) both; }
  .hero-split.anim-enter { animation: softRise 0.6s var(--ease-out) 0.08s both; }
  .trustbar.anim-enter { animation: softRise 0.55s var(--ease-out) 0.16s both; }

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

  .hero-main__viewport { overflow: hidden; }
  .hero-slide.is-active {
    animation: slideInSoft 0.45s var(--ease-out);
  }
  @keyframes slideInSoft {
    from { opacity: 0.65; }
    to { opacity: 1; }
  }

  .pkg-card, .concern-card, .step-card, .t-card, .trustbar__item {
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.2s ease;
  }
  .cat-icon:active .cat-icon__img { transform: scale(0.94); }
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-stagger > .anim-child,
  .cat-icons.anim-enter, .hero-split.anim-enter, .trustbar.anim-enter {
    opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important;
  }
}

/* ============================================================
   Mobile homepage UI/UX
   ============================================================ */
@media (max-width: 767px) {
  .home-firstview { padding: 0.55rem 0 1rem; }
  .cat-icons { margin-bottom: 0.65rem; }
  .cat-icons__list {
    gap: 0.55rem; scroll-snap-type: x mandatory; scroll-padding-inline: 0.25rem;
  }
  .cat-icon { width: 4.65rem; scroll-snap-align: start; }
  .cat-icon__img { width: 3.65rem; height: 3.65rem; }
  .cat-icon__img svg { width: 1.25rem; height: 1.25rem; }
  .cat-icon__label { font-size: 0.65rem; }

  .hero-main, .hero-main__viewport, .hero-slide {
    min-height: 17.5rem; height: 17.5rem; border-radius: 1.15rem;
  }
  .hero-slide__overlay {
    max-width: 78%; width: 100%; padding: 1.15rem 1rem 2.75rem;
    background: linear-gradient(105deg, rgba(253,252,249,0.97) 0%, rgba(253,252,249,0.9) 55%, rgba(253,252,249,0.35) 82%, transparent 100%);
  }
  .hero-slide__title { font-size: clamp(1.35rem, 6.2vw, 1.7rem); max-width: 12ch; }
  .hero-slide__sub {
    font-size: 0.8rem; max-width: 26ch;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .hero-slide__cta { min-height: 2.55rem; padding: 0.7rem 1.2rem; font-size: 0.7rem; }
  .hero-main__dots { left: 1rem; bottom: 0.95rem; }
  .hero-main__dot { width: 0.55rem; height: 0.55rem; }
  .hero-main__dot.is-active { width: 1.5rem; }

  .trustbar__item { min-height: 4.25rem; padding: 0.75rem; border-radius: 0.9rem; }
  .home-section { padding: 1.35rem var(--hp-edge) 0.35rem; }
  .home-section__head { flex-direction: column; align-items: flex-start; gap: 0.45rem; margin-bottom: 0.9rem; }
  .home-section__title { font-size: 1.35rem; }
  .home-section__sub { font-size: 0.8rem; }

  .concern-card { padding: 0.85rem 0.4rem; min-height: 5.5rem; border-radius: 0.9rem; }
  .concern-card__label { font-size: 0.7rem; }

  .product-rail {
    grid-auto-columns: minmax(78vw, 17.5rem);
    gap: 0.7rem;
    margin-inline: calc(-1 * var(--hp-edge));
    padding-inline: var(--hp-edge);
    scroll-padding-inline: var(--hp-edge);
  }
  .pkg-card__actions { flex-direction: column; }
  .pkg-card__actions .btn { width: 100%; min-height: 2.65rem; }

  .faq-home summary { min-height: 3.15rem; padding: 1rem; align-items: center; font-size: 0.875rem; }

  .home-cta { margin: 1.15rem auto 1.5rem; }
  .home-cta__inner { padding: 1.35rem 1.15rem; border-radius: 1.15rem; }
  .home-cta__actions { width: 100%; flex-direction: column; }
  .home-cta__actions .btn { width: 100%; min-height: 2.85rem; justify-content: center; }
}

@media (max-width: 380px) {
  .hero-main, .hero-main__viewport, .hero-slide { min-height: 16.25rem; height: 16.25rem; }
  .cat-icon { width: 4.25rem; }
  .cat-icon__img { width: 3.35rem; height: 3.35rem; }
}
