﻿/* Ray Health — Home page styles (home.html) */

/* ========================================
   Home page wrapper & shared section layout
======================================== */
.home {
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-primary);
}

.home-section {
  width: 100%;
  padding: clamp(48px, 8vw, 80px) 0;
}

.home-section__container {
  width: 100%;
  max-width: var(--canvas-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, var(--content-inset));
  box-sizing: border-box;
}

/* Shared home page buttons */
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition-default),
    box-shadow var(--transition-default), background-color var(--transition-default),
    filter var(--transition-ui);
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button:active {
  transform: translateY(0);
}

.home-button--primary {
  background-color: var(--color-gold);
  color: var(--color-dark);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
}

.home-button--primary:hover {
  filter: brightness(1.03);
  box-shadow: var(--shadow-raised);
}

.home-button--primary:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

.home-button--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-default),
    box-shadow var(--transition-default), background-color var(--transition-default),
    color var(--transition-default), border-color var(--transition-default);
}

.home-button--outline:hover,
.home-button--outline:focus,
.home-button--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-btn);
  color: var(--color-white);
  border-color: var(--color-white);
}

.home-button--outline:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* Beat parent theme `a:hover { color: theme-text }` on hero CTAs */
.home-hero a.home-button--outline,
.home-hero a.home-button--outline:hover,
.home-hero a.home-button--outline:focus,
.home-hero a.home-button--outline:active,
body.pharmacymentor-child .home-hero a.home-button--outline:hover {
  color: var(--color-white);
  text-decoration: none;
}

.home-hero a.home-button--primary,
.home-hero a.home-button--primary:hover,
.home-hero a.home-button--primary:focus,
.home-hero a.home-button--primary:active,
body.pharmacymentor-child .home-hero a.home-button--primary:hover {
  color: var(--color-dark);
  text-decoration: none;
}

/* ========================================
   Hero section
======================================== */
.home-hero {
  position: relative;
  padding: 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: var(--hero-bg-desktop, url("https://c.animaapp.com/hfh0WX3e/img/rectangle-2.png"));
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.home-hero__container {
  position: relative;
  z-index: 1;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vw, 80px) 0;
}

.home-hero__title {
  margin: 0 0 34px;
  max-width: 560px;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(28px, 5vw, 74px);
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--color-white);
}

.home-hero__title-accent {
  display: block;
  font-weight: 700;
  color: var(--color-gold);
}

.home-hero__title-main {
  display: block;
  font-weight: 300;
  color: var(--color-white);
}

.home-hero__details {
  margin: -18px 0 28px;
  max-width: 520px;
  font-family: var(--font-primary);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1023px) {
  .home-hero {
    min-height: 460px;
    background-image: var(--hero-bg-mobile, var(--hero-bg-desktop, url("https://c.animaapp.com/hfh0WX3e/img/rectangle-2.png")));
    background-position: center center;
  }

  .home-hero__content {
    text-align: center;
  }

  .home-hero__title {
    margin: 0 auto 26px;
    max-width: 580px;
    text-align: center;
  }

  .home-hero__details {
    margin: -10px auto 24px;
    text-align: center;
  }

  .home-hero__actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .home-hero {
    min-height: 400px;
  }

  .home-hero::before {
    background: rgba(0, 0, 0, 0.58);
  }

  .home-hero__title {
    margin: 0 auto 20px;
    line-height: 1.18;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .home-hero__actions .home-button {
    width: 100%;
    max-width: 250px;
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Home section device visibility (ACF) */
.home-section-visibility {
  display: contents;
}

@media (min-width: 1024px) {
  .home-section-visibility.is-hidden-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .home-section-visibility.is-hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .home-section-visibility.is-hidden-mobile {
    display: none !important;
  }
}


/* ---- Health plans (Women / Men) ---- */
.home-plans__intro {
  margin: 0 auto 40px;
  max-width: 900px;
  font-family: var(--font-primary);
  font-size: clamp(24px, 4.5vw, 52px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.25;
}

.home-plans__intro-text {
  font-weight: 300;
  color: var(--color-dark);
}

.home-plans__intro-accent {
  font-weight: 700;
  color: var(--color-gold);
}

.home-plans__layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.home-plans__grids {
  min-width: 0;
}

.home-plans__panel-grid[hidden] {
  display: none !important;
}

.home-plans__panel-copy[hidden] {
  display: none !important;
}

.home-plans__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-plans__image--placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.home-plans__empty {
  margin: 0;
  padding: 24px;
  color: #6b7280;
  font-family: var(--font-primary);
}

.home-plans__sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}

.home-plans__toggle {
  flex: 0 0 auto;
  width: min(100%, 309px);
  height: 65px;
  margin-bottom: 28px;
  background-color: var(--color-cream-3);
  border-radius: var(--radius-pill);
  padding: 7px;
  display: flex;
  align-items: center;
}

.home-plans__toggle-button {
  width: 50%;
  height: 100%;
  border: none;
  border-radius: var(--radius-pill);
  background-color: transparent;
  font-family: var(--font-primary);
  font-weight: 700;
  color: #1f2a37;
  font-size: clamp(15px, 2vw, 20px);
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--transition-ui), box-shadow var(--transition-ui),
    transform var(--transition-fast);
}

.home-plans__toggle-button.is-active {
  background-color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.home-plans__toggle-button:hover {
  transform: translateY(-1px);
}

.home-plans__toggle-button:active {
  transform: translateY(0);
}

.home-plans__toggle-button:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

.home-plans__header {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.home-plans__heading {
  margin: 0 0 20px;
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 51px);
  letter-spacing: 0;
  line-height: 1.1;
  text-align: left;
}

.home-plans__heading-accent {
  font-weight: 700;
  color: var(--color-gold);
}

.home-plans__heading-text {
  font-weight: 300;
  color: var(--color-dark);
}

.home-plans__description {
  margin: 0;
  max-width: none;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0;
  line-height: 1.4;
  text-align: left;
}

.home-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 34px);
  margin: 0;
  min-width: 0;
}

.home-plans__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 100%;
}

.home-plans__media {
  position: relative;
  flex: 1 1 auto;
}

.home-plans__image {
  width: 100%;
  aspect-ratio: 309 / 585;
  object-fit: cover;
  display: block;
}

.home-plans__overlay {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
}

.home-plans__chip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 22px 0 25px;
  border-radius: var(--radius-md) 0 20px 0;
}

.home-plans__chip--menopause {
  background-color: var(--color-chip-menopause);
}

.home-plans__chip--weight {
  background-color: var(--color-chip-weight);
}

.home-plans__chip--hair {
  background-color: var(--color-chip-hair);
}

.home-plans__chip-label {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-white);
  font-size: clamp(11px, 1.2vw, 16px);
  letter-spacing: 1.6px;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.home-plans__body {
  position: absolute;
  inset: auto 0 0;
  padding: 24px 20px 28px;
  z-index: 2;
}

.home-plans__card-name {
  margin: 0 0 8px;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-white);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1;
}

.home-plans__card-text {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-white);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.35;
}

.home-plans__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 171px;
  height: 53px;
  padding: 0 20px;
  background: transparent;
  border: 2px solid var(--color-white);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-ui);
}

.home-plans__button:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.12);
}

.home-plans__button:active {
  transform: translateY(0);
}

.home-plans__button-label {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-white);
  font-size: 18px;
  text-align: center;
  line-height: normal;
}

.home-plans__button-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}

.home-plans__footer {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: auto;
  padding-top: clamp(24px, 4vw, 40px);
}

.home-plans__explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 259px;
  height: 53px;
  padding: 0 28px;
  background-color: var(--color-dark);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--color-white);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-ui);
}

.home-plans__explore:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
  color: var(--color-white);
}

.home-plans__explore:active {
  transform: translateY(0);
}

.home-plans__explore-label {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-white);
  font-size: 18px;
  text-align: center;
  line-height: normal;
}

.home-plans__explore-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-gold);
}

/* ---- 8.2 Plans (Women / Men Health Plans) — legacy (index.html) ---- */
.home .plans__intro {
  margin: 0 auto 40px;
  max-width: 900px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(24px, 4.5vw, 52px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.25;
}

.home .plans__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 32px;
  margin-bottom: 40px;
}

.home .plans-toggle {
  flex: 0 0 auto;
  width: min(100%, 309px);
  height: 65px;
  background-color: var(--color-cream-3);
  border-radius: var(--radius-pill);
  padding: 7px;
  display: flex;
  align-items: center;
}

.home .plans-toggle__btn {
  width: 50%;
  height: 100%;
  border: none;
  border-radius: var(--radius-pill);
  background-color: transparent;
  font-family: var(--font-primary);
  font-weight: 700;
  color: #1f2a37;
  font-size: clamp(15px, 2vw, 20px);
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--transition-ui), box-shadow var(--transition-ui),
    transform var(--transition-fast);
}

.home .plans-toggle__btn.is-active {
  background-color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.home .plans-toggle__btn:hover { transform: translateY(-1px); }
.home .plans-toggle__btn:active { transform: translateY(0); }
.home .plans-toggle__btn:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

.home .plans__header {
  flex: 1 1 240px;
  min-width: 0;
}

.home .plans__heading {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: transparent;
  font-size: clamp(28px, 4vw, 51px);
  letter-spacing: 0;
  line-height: 1.1;
}

.home .plans__description {
  margin: 0;
  max-width: 340px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0;
  line-height: 1.4;
}

.home .plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 34px);
  margin-bottom: 32px;
}

.home .plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 100%;
}

.home .plan-card__media {
  position: relative;
  flex: 1 1 auto;
}

.home .plan-card__image {
  width: 100%;
  aspect-ratio: 309 / 585;
  object-fit: cover;
  display: block;
}

.home .plan-card__overlay {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
}

.home .plan-card__chip {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.home .plan-card__chip .category-chip__bg {
  position: relative;
  display: block;
  width: 168px;
  max-width: 70%;
  height: 50px;
  border-radius: 20px 0 20px 0;
}

.home .plan-card__chip .category-chip {
  position: absolute;
  top: 0;
  left: 25px;
  display: flex;
  align-items: center;
  height: 50px;
  font-size: clamp(11px, 1.2vw, 16px);
  letter-spacing: 1.6px;
  padding-right: 16px;
}

.home .plan-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 24px 20px 28px;
  z-index: 2;
}

.home .plan-card__title {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: transparent;
  font-size: 27px;
  letter-spacing: 0;
  line-height: normal;
}

.home .plan-card__title-name {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--color-white);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1;
}

.home .plan-card__title-text {
  display: block;
  font-weight: 500;
  color: var(--color-white);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.35;
}

.home .plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 171px;
  height: 53px;
  padding: 0 20px;
  background: transparent;
  border: 2px solid var(--color-white);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-ui);
}

.home .plan-cta:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.12);
}

.home .plan-cta:active { transform: translateY(0); }

.home .plan-cta__label {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-white);
  font-size: 18px;
  text-align: center;
  line-height: normal;
}

.home .plan-cta__arrow {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}

.home .plans__footer {
  display: flex;
  justify-content: flex-start;
}

.home .explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 259px;
  height: 53px;
  padding: 0 24px;
  background-color: var(--color-dark);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-ui);
}

.home .explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.home .explore-btn:active { transform: translateY(0); }

.home .explore-btn__label {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-white);
  font-size: 18px;
  text-align: center;
  line-height: normal;
}

.home .explore-btn__arrow {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}

/* ---- Featured products ---- */
.home-section.home-products {
  padding-bottom: 0;
}

.home-products {
  background-color: var(--color-cream-2);
}

.home-products__title {
  margin: 0 auto 40px;
  max-width: 900px;
  font-family: var(--font-primary);
  font-size: clamp(24px, 4vw, 50px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.15;
}

.home-products__title-text {
  font-weight: 300;
  color: var(--color-dark);
}

.home-products__title-accent {
  font-weight: 700;
  color: var(--color-gold);
}

.home-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 35px);
  margin-bottom: 32px;
  align-items: stretch;
}

.home-products__item {
  width: 100%;
  height: 100%;
}

.home-products__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.home-products__media {
  position: relative;
  width: 100%;
  aspect-ratio: 309 / 229;
}

.home-products__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-products__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 56px;
  height: 56px;
  background-color: var(--color-gold);
  border-radius: 50%;
  z-index: 2;
}

.home-products__badge-text {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
  padding: 6px;
  box-sizing: border-box;
  pointer-events: none;
}

.home-products__badge-text--out_of_stock,
.home-products__badge-text--coming_soon {
  font-size: 8px;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 8px 5px;
}

.home-products__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
  padding: 14px 12px 16px;
}

.home-products__info {
  width: 100%;
  margin: 0;
}

.home-products__name {
  margin: 0 0 4px;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-gold);
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.4;
}

.home-products__name a {
  color: inherit;
  text-decoration: none;
}

.home-products__empty {
  margin: 0 0 32px;
  text-align: center;
  font-family: var(--font-primary);
  color: var(--color-text-muted);
}

.home-products__label {
  margin: 0 0 4px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-dark);
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1.4;
}

.home-products__price {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-dark);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
}

.home-products__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 43px;
  margin-top: auto;
  padding: 0 16px;
  background-color: var(--color-gold);
  border: none;
  border-radius: var(--radius-card-btn);
  color: var(--color-white);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.home-products__button:hover {
  transform: translateY(-2px);
  color: var(--color-white);
}

.home-products__button:active {
  transform: translateY(0);
}

.home-products__button-text {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-white);
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: normal;
  white-space: nowrap;
}

.home-products__button-text strong {
  font-weight: 700;
}

.home-products__button-icon {
  width: 17px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-white);
}

.home-products__more-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.home-products__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  min-width: 280px;
  max-width: 100%;
  height: 62px;
  margin: 0;
  padding: 0 28px;
  background-color: var(--color-black);
  border: none;
  border-radius: 20px 20px 0 0;
  color: var(--color-white);
  cursor: pointer;
  transition: filter var(--transition-fast);
}

.home-products__more:hover {
  filter: brightness(1.08);
  color: var(--color-white);
}

.home-products__more-label {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-white);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.2;
  white-space: nowrap;
}

.home-products__more-icon {
  width: 14px;
  height: 9px;
  flex-shrink: 0;
  color: var(--color-gold);
}

/* ---- 8.3 Products — legacy (index.html) ---- */
.home .products {
  background-color: var(--color-cream-2);
}

.home .products__heading {
  margin: 0 auto 40px;
  max-width: 900px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: transparent;
  font-size: clamp(24px, 4vw, 50px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.15;
}

.home .products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 35px);
  margin-bottom: 32px;
}

.home .product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.home .product-item__visual {
  position: relative;
  width: 100%;
}

.home .product-item .product-card {
  position: relative;
  width: 100%;
  aspect-ratio: 309 / 417;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
}

.home .product-item .product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.home .product-item .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 56px;
  height: 56px;
  background-color: var(--color-gold);
  border-radius: 50%;
  z-index: 2;
}

.home .product-item .product-badge__label {
  position: absolute;
  top: 28px;
  left: 20px;
  width: 40px;
  height: auto;
  z-index: 3;
}

.home .product-item .product-card__info {
  position: static;
  width: 100%;
  height: auto;
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 400;
  color: transparent;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
}

.home .product-item .product-card__title {
  font-weight: 700;
  color: var(--color-dark);
  font-size: clamp(14px, 1.8vw, 20px);
}

.home .product-item .product-card__label {
  color: var(--color-dark);
  font-size: clamp(12px, 1.5vw, 16px);
}

.home .product-item .product-card__price {
  font-weight: 700;
  color: var(--color-dark);
  font-size: clamp(18px, 2.2vw, 24px);
}

.home .product-item .assessment-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 284px;
  height: 43px;
  margin-top: auto;
  padding: 0 16px;
  background-color: var(--color-gold);
  border: none;
  border-radius: var(--radius-card-btn);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.home .product-item .assessment-btn:hover { transform: translateY(-2px); }
.home .product-item .assessment-btn:active { transform: translateY(0); }

.home .product-item .assessment-btn__label {
  position: static;
  width: auto;
  height: auto;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-white);
  font-size: clamp(14px, 1.8vw, 20px);
  text-align: center;
  line-height: normal;
}

.home .product-item .assessment-btn__label strong { font-weight: 700; }

.home .product-item .assessment-btn__arrow {
  position: static;
  width: 17px;
  height: 16px;
  flex-shrink: 0;
}

.home .more-products {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 315px);
  height: 62px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: var(--color-black);
  border: none;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.home .more-products:hover { transform: translateY(-2px); }

.home .more-products__label {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-white);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.2;
  white-space: nowrap;
}

.home .more-products__arrow {
  position: static;
  width: 15px;
  height: 9px;
  flex-shrink: 0;
}

/* ---- How to get started (steps) ---- */
.home-steps__title {
  margin: 0 0 clamp(32px, 4vw, 48px);
  font-family: var(--font-primary);
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: 0;
  line-height: 1.15;
  text-align: left;
}

.home-steps__title-accent {
  font-weight: 700;
  color: var(--color-gold);
}

.home-steps__title-text {
  font-weight: 300;
  color: var(--color-dark);
}

.home-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.home-steps__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-steps__media {
  position: relative;
  z-index: 1;
  width: 100%;
}

.home-steps__image {
  width: 100%;
  aspect-ratio: 411 / 429;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.home-steps__image--placeholder {
  background: linear-gradient(135deg, #e8e4da, #f4f1ea);
}

.home-steps__meta {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 14px;
  align-items: stretch;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.home-steps__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50px;
  height: 100%;
  align-self: stretch;
}

.home-steps__marker {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gold);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-sizing: border-box;
}

.home-steps__number {
  font-family: var(--font-primary);
  font-weight: 800;
  color: var(--color-white);
  font-size: 22px;
  line-height: 1;
}

.home-steps__connector {
  display: block;
  width: 2px;
  flex: 1 1 auto;
  min-height: 48px;
  margin-top: 6px;
  background-color: var(--color-gold);
  border-radius: 2px;
  position: relative;
}

.home-steps__connector::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-gold);
  transform: translate(-50%, 50%);
}

.home-steps__content {
  min-width: 0;
  padding-top: 6px;
  padding-bottom: 8px;
  text-align: left;
}

.home-steps__content-title {
  margin: 0 0 10px;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-dark);
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.25;
  text-align: left;
}

.home-steps__content-text {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.45;
  text-align: left;
}

/* ---- 8.4 How to get started (steps) — legacy (index.html) ---- */
.home .steps__heading {
  margin: 0 0 40px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: transparent;
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: 0;
  line-height: 1.15;
}

.home .steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.home .step-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home .step-item__image {
  width: 100%;
  aspect-ratio: 411 / 429;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.home .step-item__meta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.home .step-item__marker {
  position: relative;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
}

.home .step-item__marker .step-marker {
  position: absolute;
  inset: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-gold);
  border-radius: 50%;
  border: 3px solid var(--color-white);
}

.home .step-item__marker .step-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  color: var(--color-white);
  font-size: 24px;
  line-height: 1;
}

.home .step-item .step-connector {
  position: static;
  width: 11px;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}

.home .step-item .step-content {
  position: static;
  flex: 1;
  min-width: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 400;
  color: transparent;
  font-size: 27px;
  line-height: 1.2;
}

.home .step-item .step-content__title {
  display: block;
  font-weight: 700;
  color: var(--color-dark);
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.2;
  margin-bottom: 8px;
}

.home .step-item .step-content__text {
  display: block;
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.4;
}

/* ---- 8.5 Testimonials ---- */
.home-testimonials__title {
  margin: 0 0 32px;
  font-family: var(--font-primary);
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: 0;
  line-height: 1.15;
}

.home-testimonials__title-accent {
  font-weight: 700;
  color: var(--color-gold);
}

.home-testimonials__title-text {
  font-weight: 300;
  color: var(--color-dark);
}

.home-testimonials__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
}

.home-testimonials__track {
  display: flex;
  gap: clamp(20px, 3vw, 35px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.home-testimonials__card {
  position: relative;
  flex: 0 0 clamp(240px, 28vw, 309px);
  width: clamp(240px, 28vw, 309px);
  cursor: pointer;
}

.home-testimonials__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 309 / 420;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.home-testimonials__card:hover .home-testimonials__photo {
  transform: translateY(-4px);
  filter: brightness(0.95);
}

.home-testimonials__play-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  z-index: 5;
}

.home-testimonials__play {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.3s ease, box-shadow 0.3s ease;
}

.home-testimonials__play-icon {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 20px;
  color: var(--color-gold);
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.home-testimonials__photo--placeholder {
  background: linear-gradient(135deg, #e8e4da, #f4f1ea);
}

.home-testimonials__empty {
  margin: 0;
  text-align: center;
  font-family: var(--font-primary);
  color: var(--color-text-muted);
}

.home-testimonials__card:hover .home-testimonials__play {
  transform: scale(1.15);
  background-color: var(--color-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.home-testimonials__card:hover .home-testimonials__play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  color: var(--color-white);
  filter: none;
}

.home-testimonials__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin: 12px 0 0;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.3;
}

.home-testimonials__name {
  font-weight: 700;
  color: var(--color-dark);
}

.home-testimonials__role {
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--color-text-muted);
}

.home-testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-testimonials__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  background-color: var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, width 0.3s ease,
    border-radius 0.3s ease;
}

.home-testimonials__dot:hover {
  transform: scale(1.15);
}

.home-testimonials__dot.is-active {
  background-color: var(--color-gold);
  width: 28px;
  border-radius: 14px;
}

/* Legacy testimonials selectors (index.html) */
.home .testimonials__heading {
  margin: 0 0 32px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: transparent;
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: 0;
  line-height: 1.15;
}

.home .testimonials__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
}

.home .testimonials__track {
  display: flex;
  gap: clamp(20px, 3vw, 35px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.home .testimonial-card {
  position: relative;
  flex: 0 0 clamp(240px, 28vw, 309px);
  width: clamp(240px, 28vw, 309px);
  cursor: pointer;
}

.home .testimonials .testimonial__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 309 / 420;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.home .testimonial-card:hover .testimonial__photo {
  transform: translateY(-4px);
  filter: brightness(0.95);
}

.home .testimonial__play-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  z-index: 5;
}

.home .testimonials .testimonial__play {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.3s ease, box-shadow 0.3s ease;
}

.home .testimonials .testimonial__play-icon {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.home .testimonial-card:hover .testimonial__play {
  transform: scale(1.15);
  background-color: var(--color-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.home .testimonial-card:hover .testimonial__play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  filter: brightness(0) invert(1);
}

.home .testimonials .testimonial__caption {
  position: static;
  width: 100%;
  margin: 12px 0 0;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.3;
}

.home .testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home .testimonials__dot {
  width: 14px;
  height: 14px;
  background-color: var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, width 0.3s ease,
    border-radius 0.3s ease;
}

.home .testimonials__dot:hover { transform: scale(1.15); }

.home .testimonials__dot.is-active {
  background-color: var(--color-gold);
  width: 28px;
  border-radius: 14px;
}

/* Testimonial Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.video-modal__container {
  position: relative;
  width: 90%;
  max-width: 800px;
  background-color: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.video-modal__content {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-modal__player,
.video-modal__embed,
.video-modal__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__player {
  object-fit: cover;
  background: #000;
}

.video-modal__embed {
  background: #000;
}

/* ---- About section ---- */
.home-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 454px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.home-about__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 454px;
}

.home-about__image {
  width: 100%;
  aspect-ratio: 454 / 498;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.home-about__content {
  min-width: 0;
}

.home-about__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 24px;
  font-family: var(--font-primary);
  letter-spacing: 0;
}

.home-about__actions {
  display: flex;
  align-items: center;
  width: 100%;
}

.home-about__text {
  margin: 0;
  min-width: 0;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.65;
  letter-spacing: 0;
  color: var(--color-dark);
}

.home-about__title-accent {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold);
}

.home-about__title-text {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--color-dark);
}

.home-about__text p {
  margin: 0 0 1em;
}

.home-about__text p:last-child {
  margin-bottom: 0;
}

.home-about__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  height: 53px;
  box-sizing: border-box;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--transition-fast), filter var(--transition-ui),
    box-shadow var(--transition-ui), background-color var(--transition-ui),
    border-color var(--transition-ui), color var(--transition-ui);
}

.home-about__button-text {
  position: relative;
  z-index: 1;
  color: inherit;
}

.home-about__button-icon {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform var(--transition-ui);
}

/* Left outline — mirror of header Login, for light background */
.home-about__button--outline {
  z-index: 1;
  width: 180px;
  padding: 0 22px 0 26px;
  border: none;
  border-top: 1px solid var(--color-gold);
  border-left: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  border-radius: 100px 0 0 100px;
  background-color: transparent;
  color: var(--color-dark);
}

.home-about__button--outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 7px;
  bottom: 0;
  border-radius: 100px 20px 20px 100px;
  background-color: rgba(221, 181, 84, 0.12);
  opacity: 0;
  transition: opacity var(--transition-ui);
}

.home-about__button--outline .home-about__button-text {
  color: var(--color-dark);
}

.home-about__button--outline .home-about__button-icon {
  color: var(--color-gold);
}

.home-about__button--outline:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

.home-about__button--outline:hover::before {
  opacity: 1;
}

.home-about__button--outline:hover .home-about__button-icon {
  transform: translateX(3px);
}

.home-about__button--outline:active {
  transform: translateY(0);
}

/* Right solid — mirror of header Get Started */
.home-about__button--solid {
  z-index: 2;
  width: 172px;
  margin-left: -7px;
  padding: 0 24px;
  border: none;
  border-radius: var(--radius-pill);
  background-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}

.home-about__button--solid .home-about__button-text,
.home-about__button--solid .home-about__button-icon {
  color: var(--color-white);
}

.home-about__button--solid:hover {
  filter: brightness(1.03);
  box-shadow: var(--shadow-raised);
  transform: translateY(-1px);
}

.home-about__button--solid:hover .home-about__button-icon {
  transform: translateX(3px);
}

.home-about__button--solid:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

@media (max-width: 1023px) {
  .home-about__layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .home-about__media,
  .home-about__content {
    display: contents;
  }

  .home-about__title {
    order: 1;
    margin-bottom: 0;
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    align-items: center;
  }

  .home-about__image {
    order: 2;
    max-width: 454px;
    width: 100%;
    margin-inline: auto;
  }

  .home-about__actions {
    order: 3;
    max-width: 454px;
    width: 100%;
    margin-inline: auto;
    justify-content: center;
  }

  .home-about__text {
    order: 4;
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .home-about__actions {
    width: 100%;
  }

  .home-about__button {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 14px;
    font-size: 16px;
    height: 50px;
  }

  .home-about__button--solid {
    margin-left: -7px;
  }
}

/* ---- FAQ section ---- */
.home-faq {
  background-color: var(--color-cream-2);
}

.home-faq .home-section__container {
  max-width: 980px;
}

.home-faq__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 50px);
}

.home-faq__title {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
}

.home-faq__title-text {
  color: var(--color-dark);
}

.home-faq__title-accent {
  color: var(--color-gold);
}

.home-faq__description {
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-primary);
  font-size: clamp(13px, 1.8vw, 16px);
  line-height: 1.5;
  color: var(--color-dark);
}

.home-faq__empty {
  margin: 24px 0 0;
  text-align: center;
  font-family: var(--font-primary);
  color: var(--color-text-muted);
}

.home-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-faq__item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.home-faq__item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.home-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border: none;
  background-color: var(--color-gold);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.home-faq__trigger:hover {
  background-color: var(--color-gold-dark, #d4a737);
}

.home-faq__label {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  padding-right: 12px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.4);
}

.home-faq__label--question {
  color: var(--color-white);
}

.home-faq__question {
  flex: 1;
  font-family: var(--font-primary);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: var(--color-white);
}

.home-faq__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.home-faq__item.is-open .home-faq__icon {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.35);
}

.home-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.home-faq__item.is-open .home-faq__panel {
  max-height: 500px;
}

.home-faq__panel-inner {
  display: flex;
  gap: 16px;
  padding: 22px 28px;
  background-color: var(--color-white);
}

.home-faq__label--answer {
  color: var(--color-gold);
  border-right: 1.5px solid var(--color-border);
}

.home-faq__answer {
  flex: 1;
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(13px, 1.8vw, 16px);
  line-height: 1.55;
  color: var(--color-dark);
}

.home-faq__answer p {
  margin: 0 0 0.75em;
}

.home-faq__answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .home-faq__trigger,
  .home-faq__panel-inner {
    padding: 16px 18px;
    gap: 10px;
  }

  .home-faq__label {
    font-size: 18px;
  }

  .home-faq__icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}

.home .product-item:not(.product-item--featured) .product-badge,
.home .product-item:not(.product-item--featured) .product-badge__label {
  display: none;
}

/* Home page responsive breakpoints */
@media (max-width: 1023px) {
  .home .plans__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .home-plans__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-plans__sidebar {
    align-items: center;
  }

  .home .plans__header,
  .home-plans__header {
    text-align: center;
  }

  .home .plans__description,
  .home-plans__description {
    max-width: none;
    margin: 0 auto;
  }

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

  .home .plans__footer,
  .home-plans__footer {
    justify-content: center;
    margin-top: 0;
    padding-top: 8px;
  }

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

  .home .steps__grid,
  .home-steps__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Center section titles and body text on tablet (steps keep left rail alignment) */
  .home-testimonials__title,
  .home-about__title,
  .home-products__title,
  .home-plans__intro,
  .home-plans__heading,
  .home .testimonials__heading,
  .home .products__heading,
  .home .plans__header {
    text-align: center;
  }

  .home-steps__title {
    text-align: left;
  }

  .home-plans__header {
    align-items: center;
  }

  .home-about__title {
    align-items: center;
  }

  .home-testimonials__caption,
  .home-about__text,
  .home-products__info,
  .home-products__name,
  .home-products__label,
  .home-products__price,
  .home-plans__description,
  .home .plans__description,
  .home .testimonials .testimonial__caption {
    text-align: center;
  }

  .home-steps__meta,
  .home-steps__content,
  .home-steps__content-title,
  .home-steps__content-text {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .home .plans__grid,
  .home-plans__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .home .plans-toggle,
  .home-plans__toggle {
    margin: 0 auto;
  }

  .home .explore-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .home .products__grid,
  .home-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 479px) {
  .home .products__grid,
  .home-products__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

