/**
 * iHeal Theme - Homepage Sections 
 * Styles for all new homepage components matching the Next.js implementation
 */

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.iheal-announcement {
  background: linear-gradient(90deg, #315E26, #78a346);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
}

.iheal-announcement__text {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.iheal-announcement__emoji {
  font-size: 16px;
}

.iheal-announcement__mobile {
  display: inline;
}

.iheal-announcement__desktop {
  display: none;
}

@media (min-width: 768px) {
  .iheal-announcement__mobile { display: none; }
  .iheal-announcement__desktop { display: inline; }
}

/* ==========================================================================
   Social Proof Ticker
   ========================================================================== */

.iheal-ticker {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  overflow: hidden;
  padding: 14px 0;
}

.iheal-ticker__track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

.iheal-ticker__group {
  display: flex;
  flex-shrink: 0;
}

.iheal-ticker__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  white-space: nowrap;
}

.iheal-ticker__icon {
  font-size: 18px;
}

.iheal-ticker__stat {
  font-weight: 900;
  font-size: 14px;
  color: #111827;
}

.iheal-ticker__label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}

.iheal-ticker__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d1d5db;
  margin-left: 16px;
}

/* ==========================================================================
   Best Sellers Section
   ========================================================================== */

.iheal-best-sellers {
  padding: 80px 0;
  background: var(--color-light);
}

.iheal-best-sellers__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-best-sellers__header {
  text-align: center;
  margin-bottom: 48px;
}

.iheal-best-sellers__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #78a346;
  margin-bottom: 12px;
}

.iheal-best-sellers__title {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
}

.iheal-best-sellers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .iheal-best-sellers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .iheal-best-sellers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.iheal-product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.5s ease;
}

.iheal-product-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transform: translateY(-6px);
  border-color: rgba(120,163,70,0.2);
}

.iheal-product-card__image-wrap {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #f0f5eb, #e8edd8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.iheal-product-card__img {
  max-height: 160px;
  max-width: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.iheal-product-card:hover .iheal-product-card__img {
  transform: scale(1.08);
}

.iheal-product-card__rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #f59e0b;
}

.iheal-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.iheal-product-card__hover-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.iheal-product-card:hover .iheal-product-card__hover-cta {
  transform: translateY(0);
}

.iheal-product-card__view-btn {
  display: block;
  text-align: center;
  background: #315E26;
  color: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.iheal-product-card__body {
  padding: 20px;
}

.iheal-product-card__category {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #78a346;
  margin-bottom: 6px;
}

.iheal-product-card__name {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.3;
}

.iheal-product-card__desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.iheal-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.iheal-product-card__price {
  font-size: 20px;
  font-weight: 900;
  color: #111827;
}

.iheal-product-card__reviews {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
}

/* ==========================================================================
   Curated Collections
   ========================================================================== */

.iheal-collections {
  padding: 80px 0;
  background: #FAFAF5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c5-10 15-15 25-10' stroke='%2378a346' stroke-opacity='0.04' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

.iheal-collections__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-collections__header {
  text-align: center;
  margin-bottom: 48px;
}

.iheal-collections__title {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
}

.iheal-collections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .iheal-collections__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.iheal-collection-card {
  background: var(--color-light);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.iheal-collection-card:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.iheal-collection-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.iheal-collection-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.iheal-collection-card__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.iheal-collection-card__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #315E26;
  text-decoration: none;
  transition: color 0.2s ease;
}

.iheal-collection-card__link:hover {
  color: #78a346;
}

/* ==========================================================================
   Press Logos
   ========================================================================== */

.iheal-press {
  padding: 48px 0;
  background: var(--color-light);
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.iheal-press__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-press__label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 32px;
}

.iheal-press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

@media (min-width: 768px) {
  .iheal-press__logos { gap: 48px; }
}

.iheal-press__logo {
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.iheal-press__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.iheal-press__logo img {
  display: block;
}

/* ==========================================================================
   Trusted Experts
   ========================================================================== */

.iheal-experts {
  padding: 80px 0;
  background: #fff;
}

.iheal-experts__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-experts__header {
  text-align: center;
  margin-bottom: 48px;
}

.iheal-experts__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #78a346;
  margin-bottom: 12px;
}

.iheal-experts__title {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.iheal-experts__subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.iheal-experts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .iheal-experts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.iheal-expert-card {
  position: relative;
}

.iheal-expert-card__decor {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(120,163,70,0.1), transparent);
  z-index: 0;
}

.iheal-expert-card__inner {
  position: relative;
  z-index: 1;
  background: var(--color-light);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #f3f4f6;
}

.iheal-expert-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.iheal-expert-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.iheal-expert-card__name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.iheal-expert-card__name {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.iheal-expert-card__check {
  flex-shrink: 0;
}

.iheal-expert-card__role {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  margin-top: 2px;
}

.iheal-expert-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.iheal-expert-card__stars svg {
  display: inline-block;
}

.iheal-expert-card__quote {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  font-style: normal;
  border: none;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Shop by Benefit
   ========================================================================== */

.iheal-benefits {
  padding: 80px 0;
  background: var(--color-light);
}

.iheal-benefits__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-benefits__header {
  text-align: center;
  margin-bottom: 48px;
}

.iheal-benefits__title {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.iheal-benefits__subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.iheal-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .iheal-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .iheal-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.iheal-benefit-card {
  display: block;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #f3f4f6;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.iheal-benefit-card:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: rgba(120,163,70,0.2);
}

.iheal-benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.iheal-benefit-card__name {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.iheal-benefit-card__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.iheal-benefit-card__link {
  font-size: 13px;
  font-weight: 800;
  color: #315E26;
}

/* ==========================================================================
   Signature Drops
   ========================================================================== */

.iheal-drops {
  padding: 80px 0;
  background: #fff;
}

.iheal-drops__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-drops__header {
  text-align: center;
  margin-bottom: 48px;
}

.iheal-drops__title {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.iheal-drops__subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.iheal-drops__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.iheal-drop-card {
  display: flex;
  flex-direction: column;
  background: var(--color-light);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .iheal-drop-card {
    flex-direction: row;
  }
}

.iheal-drop-card:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.iheal-drop-card__image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .iheal-drop-card__image {
    width: 200px;
    height: auto;
    min-height: 180px;
  }
}

.iheal-drop-card__image img {
  max-height: 120px;
  max-width: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.iheal-drop-card__content {
  padding: 24px;
  flex: 1;
}

.iheal-drop-card__name {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.iheal-drop-card__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
}

.iheal-drop-card__usage {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.iheal-drop-card__btn {
  display: inline-block;
  background: #315E26;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease;
}

.iheal-drop-card__btn:hover {
  background: #78a346;
}

/* ==========================================================================
   Mix & Save CTA
   ========================================================================== */

.iheal-mix-save {
  padding: 112px 0;
  background: linear-gradient(135deg, #1a3515, #315E26, #3a7230);
  position: relative;
  overflow: hidden;
}

.iheal-mix-save__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-mix-save__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .iheal-mix-save__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.iheal-mix-save__title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .iheal-mix-save__title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .iheal-mix-save__title {
    font-size: 60px;
  }
}

.iheal-mix-save__accent {
  color: #c5d8a8;
}

.iheal-mix-save__tiers {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.iheal-mix-save__tiers li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-bottom: none;
}

.iheal-mix-save__tier-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #c5d8a8;
  font-size: 20px;
  font-weight: 700;
  margin-right: 0;
  flex-shrink: 0;
}

.iheal-mix-save__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 28rem;
}

.iheal-mix-save__subscribe {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}

.iheal-mix-save__sub-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.iheal-mix-save__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iheal-mix-save__sub-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
}

.iheal-mix-save__visual {
  text-align: center;
}

.iheal-mix-save__img {
  width: 100%;
  max-width: 28rem;
  border-radius: 2.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  object-fit: cover;
  margin-bottom: 32px;
}

.iheal-mix-save__cta {
  display: block;
  width: 100%;
  max-width: 28rem;
  background: #fff;
  color: #315E26;
  padding: 20px 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.iheal-mix-save__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255,255,255,0.2);
}

/* ==========================================================================
   Brand Philosophy
   ========================================================================== */

.iheal-philosophy {
  padding: 80px 0;
  background: #fff;
}

.iheal-philosophy__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-philosophy__title {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 48px;
}

.iheal-philosophy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .iheal-philosophy__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.iheal-philosophy__card {
  background: var(--color-light);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}

.iheal-philosophy__card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.iheal-philosophy__card-text {
  font-size: 14px;
  color: #374151;
  font-weight: 600;
  line-height: 1.6;
}

.iheal-philosophy__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.iheal-philosophy__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.iheal-philosophy__badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #315E26;
}

.iheal-philosophy__badge-name {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
}

/* ==========================================================================
   Stats & Testimonials
   ========================================================================== */

.iheal-stats {
  padding: 80px 0;
  background: var(--color-light);
}

.iheal-stats__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-stats__numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .iheal-stats__numbers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.iheal-stat-item {
  text-align: center;
  padding: 24px;
}

.iheal-stat-item__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #315E26;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .iheal-stat-item__value {
    font-size: 48px;
  }
}

.iheal-stat-item__label {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.iheal-stats__heading {
  font-size: 32px;
  font-weight: 900;
  color: #111827;
  text-align: center;
  margin-bottom: 32px;
}

.iheal-stats__testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .iheal-stats__testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.iheal-testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #f3f4f6;
}

.iheal-testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.iheal-testimonial-card__stars svg {
  display: inline-block;
}

.iheal-testimonial-card__quote {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: normal;
  border: none;
  padding: 0;
}

.iheal-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.iheal-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #78a346, #315E26);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.iheal-testimonial-card__name {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}

.iheal-testimonial-card__location {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 600;
}

/* ==========================================================================
   iHeal Journey
   ========================================================================== */

.iheal-journey {
  padding: 80px 0;
  background: #fff;
}

.iheal-journey__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-journey__header {
  text-align: center;
  margin-bottom: 48px;
}

.iheal-journey__title {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.iheal-journey__subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.iheal-journey__card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #315E26, #1a3515);
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  text-align: center;
}

.iheal-journey__card-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

.iheal-journey__card-text {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* ==========================================================================
   Wellness Stories
   ========================================================================== */

.iheal-wellness-stories {
  padding: 80px 0;
  background: var(--color-light);
}

.iheal-wellness-stories__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-wellness-stories__title {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 48px;
}

.iheal-wellness-stories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .iheal-wellness-stories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.iheal-wellness-stories__card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.iheal-wellness-stories__card:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.iheal-wellness-stories__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.iheal-wellness-stories__body {
  padding: 24px;
}

.iheal-wellness-stories__card-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.iheal-wellness-stories__card-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.iheal-final-cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #315E26, #1a3515);
  overflow: hidden;
  text-align: center;
}

.iheal-final-cta__bg {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: #78a346;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.iheal-final-cta__glow {
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: #78a346;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.iheal-final-cta__container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.iheal-final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.iheal-final-cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #78a346;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.iheal-final-cta__badge-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.iheal-final-cta__title {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .iheal-final-cta__title { font-size: 32px; }
}

.iheal-final-cta__accent {
  background: linear-gradient(135deg, #78a346, #a3d977);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iheal-final-cta__text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.iheal-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.iheal-final-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #78a346;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(120,163,70,0.3);
  transition: all 0.3s ease;
}

.iheal-final-cta__btn-primary:hover {
  background: #fff;
  color: #315E26;
  transform: translateY(-2px);
}

.iheal-final-cta__btn-primary svg {
  display: inline-block;
}

.iheal-final-cta__btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.iheal-final-cta__btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
