/* Slimea Homepage - Scoped under .slimea-hp to avoid conflicts with layout CSS */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700;800;900&family=Red+Hat+Text:wght@400;500;600;700&display=swap');

/* CSS Custom Properties scoped to .slimea-hp */
.slimea-hp {
  /* Color Palette - Warm Browns/Creams */
  --hp-primary: #C6A673;
  --hp-primary-dark: #A8865A;
  --hp-primary-light: #D4BC92;

  --hp-bg: #FFFFFF;
  --hp-bg-cream: #FAF8F5;
  --hp-bg-warm: #F5F2EF;
  --hp-bg-soft: #E4DCD8;

  --hp-text: #1A1A1A;
  --hp-text-secondary: #4A4A4A;
  --hp-muted: #6B6B6B;

  --hp-border: #E5E0DB;
  --hp-border-light: #F0EBE6;

  --hp-success: #2E7D32;
  --hp-white: #FFFFFF;

  /* Shadows */
  --hp-shadow-sm: 0 2px 8px rgba(166, 134, 90, 0.08);
  --hp-shadow-md: 0 4px 20px rgba(166, 134, 90, 0.12);
  --hp-shadow-lg: 0 8px 40px rgba(166, 134, 90, 0.16);
  --hp-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);

  /* Layout */
  --hp-max-width: 1200px;
  --hp-radius-sm: 8px;
  --hp-radius-md: 12px;
  --hp-radius-lg: 16px;
  --hp-radius-xl: 24px;
  --hp-radius-full: 9999px;

  /* Transitions */
  --hp-transition: all 0.3s ease;

  font-family: 'Red Hat Text', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--hp-text);
  -webkit-font-smoothing: antialiased;
}

/* Reset layout style.css overrides inside .slimea-hp */
.slimea-hp h1,
.slimea-hp h2,
.slimea-hp h3,
.slimea-hp h4,
.slimea-hp h5,
.slimea-hp h6 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  color: inherit;
}

.slimea-hp p {
  margin-bottom: 0;
  color: inherit;
}

.slimea-hp ul,
.slimea-hp ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slimea-hp li {
  margin: 0;
  padding: 0;
}

/* Utilities */
.slimea-hp .hp-container {
  width: 100%;
  max-width: var(--hp-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Promo Banner */
.slimea-hp .promo-banner {
  background: var(--hp-text);
  color: var(--hp-white);
  padding: 12px 0;
  text-align: center;
}

.slimea-hp .promo-banner__text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin: 0;
}

.slimea-hp .promo-banner__highlight {
  font-weight: 700;
  color: var(--hp-primary-light);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .slimea-hp .promo-banner {
    padding: 14px 0;
  }
  .slimea-hp .promo-banner__text {
    font-size: 15px;
  }
}

.slimea-hp .hp-muted { color: var(--hp-muted); }
.slimea-hp .hp-text-center { text-align: center; }
.slimea-hp .hp-text-primary { color: var(--hp-primary); }

/* Buttons */
.slimea-hp .hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--hp-radius-full);
  cursor: pointer;
  transition: var(--hp-transition);
  text-decoration: none;
}

.slimea-hp .hp-btn--primary {
  background: var(--hp-primary);
  color: var(--hp-white);
  box-shadow: var(--hp-shadow-md);
}

.slimea-hp .hp-btn--primary:hover {
  background: var(--hp-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--hp-shadow-lg);
}

.slimea-hp .hp-btn--secondary {
  background: var(--hp-white);
  color: var(--hp-text);
  border: 2px solid var(--hp-border);
}

.slimea-hp .hp-btn--secondary:hover {
  border-color: var(--hp-primary);
  color: var(--hp-primary);
}

.slimea-hp .hp-btn--ghost {
  background: transparent;
  color: var(--hp-primary);
  border: 2px solid var(--hp-primary);
}

.slimea-hp .hp-btn--ghost:hover {
  background: var(--hp-primary);
  color: var(--hp-white);
}

.slimea-hp .hp-btn--block {
  width: 100%;
}

.slimea-hp .hp-btn--lg {
  padding: 20px 40px;
  font-size: 18px;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.slimea-hp .promo-banner {
  background: var(--hp-text);
  color: var(--hp-white);
  padding: 12px 0;
  text-align: center;
}

.slimea-hp .promo-banner__text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin: 0;
}

.slimea-hp .promo-banner__highlight {
  font-weight: 700;
  color: var(--hp-primary-light);
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .slimea-hp .promo-banner {
    padding: 14px 0;
  }

  .slimea-hp .promo-banner__text {
    font-size: 15px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.slimea-hp .hero {
  padding: 50px 0 0;
  background: #E8E4DF;
  overflow: hidden;
}

.slimea-hp .hero__content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 50px;
}

.slimea-hp .hero__subheadline {
  font-size: 16px;
  font-weight: 400;
  color: var(--hp-text);
  margin-bottom: 24px;
}

.slimea-hp .hero__subheadline strong {
  font-weight: 700;
}

.slimea-hp .hero__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 32px;
  color: var(--hp-text);
  font-family: 'Red Hat Display', sans-serif;
}

.slimea-hp .hero__title span {
  color: #6B8E6B;
  font-weight: 400;
}

/* Hero Checklist */
.slimea-hp .hero__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  text-align: left;
}

.slimea-hp .hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--hp-text);
  line-height: 1.5;
}

.slimea-hp .hero__checklist li strong {
  font-weight: 700;
}

.slimea-hp .hero__check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--hp-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.slimea-hp .hero__check::after {
  content: '';
  width: 11px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Hero CTA */
.slimea-hp .hero__cta {
  display: flex;
  justify-content: center;
}

.slimea-hp .hero__cta .hp-btn {
  min-width: 260px;
  background: #6B8E6B;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 16px 32px;
}

.slimea-hp .hero__cta .hp-btn:hover {
  background: #5A7A5A;
}

/* Hero Images */
.slimea-hp .hero__image {
  border-radius: var(--hp-radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #D4CEC7 0%, #C4BDB5 100%);
}

.slimea-hp .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom Images Row */
.slimea-hp .hero__bottom-images {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slimea-hp .hero__bottom-images::-webkit-scrollbar {
  display: none;
}

.slimea-hp .hero__bottom-images .hero__image {
  flex: 0 0 120px;
  height: 160px;
}

/* Tablet and up */
@media (min-width: 768px) {
  .slimea-hp .hero {
    padding: 60px 0 0;
  }

  .slimea-hp .hero__title {
    font-size: 36px;
  }

  .slimea-hp .hero__bottom-images {
    gap: 20px;
    padding: 0 40px;
  }

  .slimea-hp .hero__bottom-images .hero__image {
    flex: 0 0 160px;
    height: 200px;
  }

  .slimea-hp .hero__checklist li {
    font-size: 16px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .slimea-hp .hero {
    padding: 70px 0 0;
  }

  .slimea-hp .hero__content {
    max-width: 700px;
    padding: 0 0 60px;
  }

  .slimea-hp .hero__title {
    font-size: 42px;
  }

  .slimea-hp .hero__checklist li {
    font-size: 17px;
  }

  .slimea-hp .hero__bottom-images {
    gap: 24px;
    padding: 0 60px;
  }

  .slimea-hp .hero__bottom-images .hero__image {
    flex: 1;
    max-width: 200px;
    height: 260px;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .slimea-hp .hero__content {
    max-width: 750px;
  }

  .slimea-hp .hero__title {
    font-size: 46px;
  }

  .slimea-hp .hero__bottom-images .hero__image {
    max-width: 240px;
    height: 300px;
  }
}

/* ============================================
   MEDIA STRIP
   ============================================ */
.slimea-hp .media-strip {
  padding: 40px 0;
  background: var(--hp-bg-warm);
  border-top: 1px solid var(--hp-border-light);
  border-bottom: 1px solid var(--hp-border-light);
}

.slimea-hp .media-strip__title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hp-muted);
  text-align: center;
  margin-bottom: 24px;
}

.slimea-hp .media-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.slimea-hp .media-logo {
  height: 32px;
  padding: 8px 24px;
  background: var(--hp-white);
  border-radius: var(--hp-radius-md);
  border: 1px solid var(--hp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-muted);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.slimea-hp .stats {
  padding: 80px 0;
  background: var(--hp-bg);
}

.slimea-hp .stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.slimea-hp .stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--hp-bg-cream);
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-border-light);
}

.slimea-hp .stat-card__value {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--hp-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.slimea-hp .stat-card__label {
  font-size: 14px;
  color: var(--hp-muted);
  font-weight: 500;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.slimea-hp .pricing {
  padding: 60px 0 80px;
  background: #F5F5F5;
}

.slimea-hp .pricing__title {
  text-align: center;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: var(--hp-text);
  margin-bottom: 40px;
}

.slimea-hp .pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Offer Card */
.slimea-hp .offer-card {
  position: relative;
  background: var(--hp-white);
  border-radius: 16px;
  border: 2px solid #E0E0E0;
  overflow: visible;
}

.slimea-hp .offer-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.slimea-hp .offer-card__badge--gray {
  background: #5A5A5A;
  color: var(--hp-white);
}

.slimea-hp .offer-card__badge--orange {
  background: #F5A623;
  color: var(--hp-white);
}

.slimea-hp .offer-card--best {
  border-color: #F5A623;
  border-width: 3px;
}

.slimea-hp .offer-card__content {
  padding: 40px 24px 32px;
  text-align: center;
}

.slimea-hp .offer-card--popular .offer-card__content,
.slimea-hp .offer-card--best .offer-card__content {
  padding-top: 50px;
}

.slimea-hp .offer-card__quantity {
  font-size: 14px;
  font-weight: 600;
  color: var(--hp-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.slimea-hp .offer-card__name {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--hp-text);
  margin-bottom: 4px;
}

.slimea-hp .offer-card__duration {
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-text);
  margin-bottom: 20px;
}

.slimea-hp .offer-card__image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(145deg, #E8E8E8 0%, #D8D8D8 100%);
  border-radius: 12px;
}

.slimea-hp .offer-card__image img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.slimea-hp .offer-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.slimea-hp .offer-card__amount {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--hp-text);
  line-height: 1;
}

.slimea-hp .offer-card__per {
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-text);
  text-align: left;
  line-height: 1.2;
}

.slimea-hp .offer-card__price--orange .offer-card__amount,
.slimea-hp .offer-card__price--orange .offer-card__per {
  color: #F5A623;
}

.slimea-hp .offer-card__total {
  font-size: 14px;
  color: var(--hp-muted);
  margin-bottom: 12px;
}

.slimea-hp .offer-card__savings {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #F5A623;
  margin-bottom: 12px;
}

.slimea-hp .offer-card__benefits {
  margin-bottom: 20px;
}

.slimea-hp .offer-card__benefits p {
  font-size: 14px;
  font-weight: 600;
  color: #2E9E47;
  line-height: 1.6;
}

.slimea-hp .offer-card__benefits--orange p {
  color: #F5A623;
}

.slimea-hp .offer-card__btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #2E9E47;
  color: var(--hp-white);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--hp-transition);
}

.slimea-hp .offer-card__btn:hover {
  background: #268A3D;
  transform: translateY(-2px);
}

/* Section Header - kept for other sections */
.slimea-hp .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.slimea-hp .section-header__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--hp-text);
}

.slimea-hp .section-header__subtitle {
  font-size: 18px;
  color: var(--hp-muted);
}

/* Pricing Responsive */
@media (min-width: 768px) {
  .slimea-hp .pricing__title {
    font-size: 40px;
  }

  .slimea-hp .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .slimea-hp .offer-card__content {
    padding: 40px 20px 28px;
  }

  .slimea-hp .offer-card--popular .offer-card__content,
  .slimea-hp .offer-card--best .offer-card__content {
    padding-top: 50px;
  }

  .slimea-hp .offer-card__name {
    font-size: 24px;
  }

  .slimea-hp .offer-card__amount {
    font-size: 36px;
  }

  .slimea-hp .offer-card__image {
    height: 140px;
  }
}

@media (min-width: 1024px) {
  .slimea-hp .pricing__grid {
    gap: 28px;
  }

  .slimea-hp .offer-card__content {
    padding: 40px 28px 32px;
  }

  .slimea-hp .offer-card--popular .offer-card__content,
  .slimea-hp .offer-card--best .offer-card__content {
    padding-top: 55px;
  }

  .slimea-hp .offer-card__name {
    font-size: 28px;
  }

  .slimea-hp .offer-card__amount {
    font-size: 42px;
  }

  .slimea-hp .offer-card__image {
    height: 160px;
  }
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.slimea-hp .results {
  padding: 80px 0;
  background: var(--hp-white);
  overflow: hidden;
}

.slimea-hp .results__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.slimea-hp .results__text {
  padding: 0 20px;
  max-width: 500px;
}

.slimea-hp .results__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--hp-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.slimea-hp .results__description {
  font-size: 15px;
  color: var(--hp-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.slimea-hp .results__description strong {
  text-decoration: underline;
}

.slimea-hp .results__btn {
  display: inline-block;
  padding: 16px 32px;
  background: #6B8E6B;
  color: var(--hp-white);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--hp-transition);
}

.slimea-hp .results__btn:hover {
  background: #5A7A5A;
  transform: translateY(-2px);
}

/* Carousel */
.slimea-hp .results__carousel {
  width: 100%;
  overflow: hidden;
}

.slimea-hp .carousel-track {
  display: flex;
  gap: 20px;
  animation: hp-scrollCarousel 30s linear infinite;
  width: max-content;
}

@keyframes hp-scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slimea-hp .carousel-track:hover {
  animation-play-state: paused;
}

/* Result Card */
.slimea-hp .result-card {
  flex: 0 0 280px;
  background: var(--hp-bg-cream);
  border-radius: 20px;
  padding: 16px;
  text-align: center;
}

.slimea-hp .result-card__photos {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.slimea-hp .result-card__photo {
  flex: 1;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #D4CEC7 0%, #C4BDB5 100%);
}

.slimea-hp .result-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slimea-hp .result-card__badge {
  display: inline-block;
  padding: 6px 16px;
  background: #6B8E6B;
  color: var(--hp-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 10px;
}

.slimea-hp .result-card__name {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: 4px;
}

.slimea-hp .result-card__stats {
  font-size: 14px;
  color: var(--hp-muted);
  margin-bottom: 12px;
}

.slimea-hp .result-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.slimea-hp .result-card__tags span {
  padding: 6px 12px;
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--hp-text-secondary);
}

/* Results Responsive */
@media (min-width: 768px) {
  .slimea-hp .results__title {
    font-size: 32px;
  }

  .slimea-hp .results__text {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .slimea-hp .results {
    padding: 100px 0;
  }

  .slimea-hp .results__inner {
    flex-direction: row;
    align-items: center;
  }

  .slimea-hp .results__text {
    flex: 0 0 400px;
    padding: 0 0 0 60px;
  }

  .slimea-hp .results__title {
    font-size: 36px;
  }

  .slimea-hp .results__description {
    font-size: 16px;
  }

  .slimea-hp .results__carousel {
    flex: 1;
  }

  .slimea-hp .result-card {
    flex: 0 0 320px;
  }

  .slimea-hp .result-card__photo {
    height: 220px;
  }
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.slimea-hp .social-proof {
  padding: 80px 0;
  background: var(--hp-white);
  overflow: hidden;
}

.slimea-hp .social-proof__header {
  text-align: center;
  margin-bottom: 40px;
}

.slimea-hp .social-proof__count {
  font-size: 14px;
  font-weight: 600;
  color: var(--hp-text);
  margin-bottom: 12px;
}

.slimea-hp .social-proof__stars {
  font-size: 32px;
  color: #F5A623;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.slimea-hp .social-proof__headline {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.slimea-hp .social-proof__headline span {
  color: #6B8E6B;
  font-style: italic;
}

.slimea-hp .social-proof__verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--hp-text-secondary);
}

.slimea-hp .social-proof__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #6B8E6B;
  color: var(--hp-white);
  border-radius: 50%;
  font-size: 12px;
}

/* Visual area with bottle and floating quotes */
.slimea-hp .social-proof__visual {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slimea-hp .social-proof__bottle-wrapper {
  position: relative;
  z-index: 2;
}

.slimea-hp .social-proof__bottle {
  max-height: 400px;
  width: auto;
  display: block;
}

/* Placeholder for missing bottle image */
.slimea-hp .social-proof__bottle-wrapper::before {
  content: '';
  display: block;
  width: 200px;
  height: 350px;
  background: linear-gradient(145deg, #E8E8E8 0%, #D0D0D0 100%);
  border-radius: 20px;
}

.slimea-hp .social-proof__bottle-wrapper img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Floating quotes */
.slimea-hp .floating-quote {
  position: absolute;
  max-width: 220px;
  text-align: center;
  z-index: 1;
  display: none;
}

.slimea-hp .floating-quote__text {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: #888888;
  line-height: 1.4;
  margin-bottom: 8px;
}

.slimea-hp .floating-quote__verified {
  font-size: 14px;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.slimea-hp .floating-quote__verified span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #888888;
  color: var(--hp-white);
  border-radius: 50%;
  font-size: 10px;
}

/* Quote positions - Desktop only */
@media (min-width: 1024px) {
  .slimea-hp .floating-quote {
    display: block;
  }

  .slimea-hp .floating-quote--1 {
    top: 10%;
    left: 5%;
  }

  .slimea-hp .floating-quote--2 {
    top: 40%;
    left: 0;
  }

  .slimea-hp .floating-quote--3 {
    top: 70%;
    left: 5%;
  }

  .slimea-hp .floating-quote--4 {
    top: 10%;
    right: 5%;
  }

  .slimea-hp .floating-quote--5 {
    top: 40%;
    right: 0;
  }

  .slimea-hp .floating-quote--6 {
    top: 70%;
    right: 5%;
  }
}

/* Social Proof Responsive */
@media (min-width: 768px) {
  .slimea-hp .social-proof__headline {
    font-size: 36px;
  }

  .slimea-hp .social-proof__stars {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .slimea-hp .social-proof {
    padding: 100px 0;
  }

  .slimea-hp .social-proof__headline {
    font-size: 42px;
  }

  .slimea-hp .social-proof__visual {
    min-height: 600px;
  }

  .slimea-hp .social-proof__bottle {
    max-height: 500px;
  }

  .slimea-hp .social-proof__bottle-wrapper::before {
    width: 250px;
    height: 450px;
  }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.slimea-hp .how-it-works {
  padding: 80px 0;
  background: var(--hp-bg);
}

.slimea-hp .steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

.slimea-hp .step {
  text-align: center;
  padding: 32px;
  background: var(--hp-bg-cream);
  border-radius: var(--hp-radius-xl);
  border: 1px solid var(--hp-border-light);
  position: relative;
}

.slimea-hp .step__number {
  width: 48px;
  height: 48px;
  background: var(--hp-primary);
  color: var(--hp-white);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.slimea-hp .step__icon {
  width: 80px;
  height: 80px;
  background: var(--hp-bg-warm);
  border-radius: var(--hp-radius-lg);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.slimea-hp .step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.slimea-hp .step__description {
  font-size: 15px;
  color: var(--hp-muted);
  line-height: 1.6;
}

/* ============================================
   INGREDIENTS
   ============================================ */
.slimea-hp .ingredients {
  padding: 80px 0;
  background: var(--hp-bg-cream);
}

.slimea-hp .ingredients__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

.slimea-hp .ingredient-card {
  background: var(--hp-white);
  border-radius: var(--hp-radius-lg);
  padding: 28px;
  border: 1px solid var(--hp-border);
  transition: var(--hp-transition);
}

.slimea-hp .ingredient-card:hover {
  box-shadow: var(--hp-shadow-md);
  transform: translateY(-2px);
}

.slimea-hp .ingredient-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--hp-primary-light), var(--hp-primary));
  border-radius: var(--hp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.slimea-hp .ingredient-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.slimea-hp .ingredient-card__description {
  font-size: 14px;
  color: var(--hp-muted);
  line-height: 1.6;
}

.slimea-hp .ingredients__note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--hp-white);
  border-radius: var(--hp-radius-lg);
  border-left: 4px solid var(--hp-primary);
  font-size: 14px;
  color: var(--hp-text-secondary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.slimea-hp .testimonials {
  padding: 80px 0;
  background: var(--hp-bg);
}

.slimea-hp .testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.slimea-hp .testimonials__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--hp-bg-cream);
  border-radius: var(--hp-radius-full);
  border: 1px solid var(--hp-border-light);
}

.slimea-hp .testimonials__rating .hp-stars {
  font-size: 24px;
}

.slimea-hp .testimonials__rating-text {
  font-size: 16px;
}

.slimea-hp .testimonials__rating-text strong {
  font-size: 24px;
  color: var(--hp-text);
}

.slimea-hp .testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.slimea-hp .testimonial-card {
  background: var(--hp-bg-cream);
  border-radius: var(--hp-radius-xl);
  padding: 28px;
  border: 1px solid var(--hp-border-light);
}

.slimea-hp .testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.slimea-hp .testimonial-card__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--hp-primary-light), var(--hp-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-white);
  font-weight: 700;
  font-size: 18px;
}

.slimea-hp .testimonial-card__info {
  flex: 1;
}

.slimea-hp .testimonial-card__name {
  font-weight: 700;
  font-size: 16px;
}

.slimea-hp .testimonial-card__location {
  font-size: 13px;
  color: var(--hp-muted);
}

.slimea-hp .testimonial-card__badge {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-full);
  color: var(--hp-muted);
}

.slimea-hp .testimonial-card__stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 12px;
}

.slimea-hp .testimonial-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hp-text-secondary);
}

/* ============================================
   QUIZ SECTION
   ============================================ */
.slimea-hp .quiz {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
  color: var(--hp-white);
}

.slimea-hp .quiz .section-header__title {
  color: var(--hp-white);
}

.slimea-hp .quiz .section-header__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.slimea-hp .quiz__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 32px;
}

.slimea-hp .quiz__option {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--hp-radius-lg);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--hp-transition);
}

.slimea-hp .quiz__option:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

.slimea-hp .quiz__option.selected {
  background: var(--hp-white);
  border-color: var(--hp-white);
  color: var(--hp-primary);
}

.slimea-hp .quiz__option-value {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.slimea-hp .quiz__option-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Qualification Form */
.slimea-hp .qualification-form {
  max-width: 500px;
  margin: 0 auto;
  display: none;
}

.slimea-hp .qualification-form.active {
  display: block;
}

.slimea-hp .form-step {
  background: var(--hp-white);
  border-radius: var(--hp-radius-xl);
  padding: 32px;
  color: var(--hp-text);
  display: none;
}

.slimea-hp .form-step.active {
  display: block;
}

.slimea-hp .form-step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.slimea-hp .form-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slimea-hp .form-option {
  padding: 16px 20px;
  background: var(--hp-bg-cream);
  border: 2px solid var(--hp-border);
  border-radius: var(--hp-radius-md);
  cursor: pointer;
  transition: var(--hp-transition);
  font-weight: 500;
  text-align: center;
}

.slimea-hp .form-option:hover {
  border-color: var(--hp-primary);
}

.slimea-hp .form-option.selected {
  background: var(--hp-primary);
  border-color: var(--hp-primary);
  color: var(--hp-white);
}

.slimea-hp .form-result {
  text-align: center;
  display: none;
}

.slimea-hp .form-result.active {
  display: block;
}

.slimea-hp .form-result__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.slimea-hp .form-result__recommendation {
  font-size: 18px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.slimea-hp .faq {
  padding: 80px 0;
  background: var(--hp-bg);
}

.slimea-hp .faq__list {
  max-width: 800px;
  margin: 48px auto 0;
}

.slimea-hp .faq__item {
  border-bottom: 1px solid var(--hp-border);
}

.slimea-hp .faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.slimea-hp .faq__item summary::-webkit-details-marker {
  display: none;
}

.slimea-hp .faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--hp-primary);
  font-weight: 400;
}

.slimea-hp .faq__item[open] summary::after {
  content: '-';
}

.slimea-hp .faq__content {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--hp-text-secondary);
  line-height: 1.7;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.slimea-hp .guarantee {
  padding: 80px 0;
  background: var(--hp-text);
  color: var(--hp-white);
}

.slimea-hp .guarantee__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.slimea-hp .guarantee__icon {
  width: 80px;
  height: 80px;
  background: rgba(198, 166, 115, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
}

.slimea-hp .guarantee__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.slimea-hp .guarantee__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.slimea-hp .guarantee__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.slimea-hp .guarantee__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hp-radius-lg);
}

.slimea-hp .guarantee__feature-icon {
  width: 40px;
  height: 40px;
  background: var(--hp-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.slimea-hp .guarantee__feature-text {
  text-align: left;
}

.slimea-hp .guarantee__feature-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.slimea-hp .guarantee__feature-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile Sticky CTA */
.slimea-hp .mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--hp-white);
  border-top: 1px solid var(--hp-border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.slimea-hp .mobile-cta__price {
  font-size: 12px;
  color: var(--hp-muted);
}

.slimea-hp .mobile-cta__price strong {
  display: block;
  font-size: 20px;
  color: var(--hp-text);
  font-weight: 800;
}

.slimea-hp .mobile-cta .hp-btn {
  flex: 1;
  max-width: 200px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 640px) {
  .slimea-hp .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .slimea-hp .stat-card__value {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .slimea-hp .hp-container {
    padding: 0 32px;
  }

  .slimea-hp .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .slimea-hp .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .slimea-hp .ingredients__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slimea-hp .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slimea-hp .guarantee__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .slimea-hp .section-header__title {
    font-size: 42px;
  }

  .slimea-hp .ingredients__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .slimea-hp .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .slimea-hp .quiz__options {
    grid-template-columns: repeat(4, 1fr);
  }

  .slimea-hp .mobile-cta {
    display: none;
  }
}

/* Animations */
@keyframes hp-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slimea-hp .animate-on-scroll {
  opacity: 0;
  animation: hp-fadeInUp 0.6s ease forwards;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .slimea-hp *,
  .slimea-hp *::before,
  .slimea-hp *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   INTAKE FORM MODAL
   ============================================ */

/* Modal Overlay */
.slimea-hp .intake-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.slimea-hp .intake-modal.active {
  display: flex;
}

.slimea-hp .intake-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

/* Modal Container */
.slimea-hp .intake-modal__container {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  background: var(--hp-white);
  border-radius: var(--hp-radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: hp-modalSlideIn 0.3s ease;
}

@keyframes hp-modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Modal Header */
.slimea-hp .intake-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--hp-border-light);
}

.slimea-hp .intake-modal__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--hp-text);
}

.slimea-hp .intake-modal__logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-dark));
  border-radius: var(--hp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-white);
  font-size: 14px;
  font-weight: 800;
}

.slimea-hp .intake-modal__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hp-bg-warm);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: var(--hp-muted);
  cursor: pointer;
  transition: var(--hp-transition);
}

.slimea-hp .intake-modal__close:hover {
  background: var(--hp-bg-soft);
  color: var(--hp-text);
}

/* Progress Bar */
.slimea-hp .intake-progress {
  padding: 16px 24px;
  background: var(--hp-bg-cream);
}

.slimea-hp .intake-progress__track {
  height: 6px;
  background: var(--hp-border);
  border-radius: 3px;
  overflow: hidden;
}

.slimea-hp .intake-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-dark));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.slimea-hp .intake-progress__text {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--hp-muted);
  text-align: center;
}

/* Form Steps Container */
.slimea-hp .intake-steps {
  flex: 1;
  overflow-y: auto;
  padding: 32px 24px;
}

/* Individual Step */
.slimea-hp .intake-step {
  display: none;
  animation: hp-stepFadeIn 0.3s ease;
}

.slimea-hp .intake-step.active {
  display: block;
}

@keyframes hp-stepFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slimea-hp .intake-step__question {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--hp-text);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}

.slimea-hp .intake-step__subtitle {
  font-size: 15px;
  color: var(--hp-muted);
  text-align: center;
  margin-bottom: 32px;
}

/* Option Cards */
.slimea-hp .intake-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slimea-hp .intake-options--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.slimea-hp .intake-option {
  padding: 20px;
  background: var(--hp-white);
  border: 2px solid var(--hp-border);
  border-radius: var(--hp-radius-md);
  cursor: pointer;
  transition: var(--hp-transition);
  text-align: center;
}

.slimea-hp .intake-option:hover {
  border-color: var(--hp-primary-light);
  background: var(--hp-bg-cream);
}

.slimea-hp .intake-option.selected {
  border-color: var(--hp-primary);
  background: var(--hp-bg-cream);
  box-shadow: 0 0 0 4px rgba(198, 166, 115, 0.15);
}

.slimea-hp .intake-option__value {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: 4px;
}

.slimea-hp .intake-option__label {
  font-size: 14px;
  color: var(--hp-muted);
}

.slimea-hp .intake-option__icon {
  font-size: 32px;
  margin-bottom: 8px;
}

/* Form Inputs */
.slimea-hp .intake-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slimea-hp .intake-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slimea-hp .intake-input-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--hp-text);
}

.slimea-hp .intake-input {
  padding: 16px 20px;
  font-family: inherit;
  font-size: 16px;
  border: 2px solid var(--hp-border);
  border-radius: var(--hp-radius-md);
  background: var(--hp-white);
  color: var(--hp-text);
  transition: var(--hp-transition);
}

.slimea-hp .intake-input:focus {
  outline: none;
  border-color: var(--hp-primary);
  box-shadow: 0 0 0 4px rgba(198, 166, 115, 0.15);
}

.slimea-hp .intake-input::placeholder {
  color: var(--hp-muted);
}

.slimea-hp .intake-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* BMI Display */
.slimea-hp .intake-bmi {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--hp-bg-cream);
  border-radius: var(--hp-radius-md);
  text-align: center;
}

.slimea-hp .intake-bmi__label {
  font-size: 13px;
  color: var(--hp-muted);
  margin-bottom: 4px;
}

.slimea-hp .intake-bmi__value {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--hp-primary);
}

.slimea-hp .intake-bmi__category {
  font-size: 14px;
  color: var(--hp-text-secondary);
  margin-top: 4px;
}

/* Checkbox */
.slimea-hp .intake-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.slimea-hp .intake-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--hp-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.slimea-hp .intake-checkbox span {
  font-size: 14px;
  color: var(--hp-text-secondary);
  line-height: 1.5;
}

.slimea-hp .intake-checkbox a {
  color: var(--hp-primary);
  text-decoration: underline;
}

/* Error State */
.slimea-hp .intake-error {
  display: none;
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--hp-radius-sm);
  color: #DC2626;
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
}

.slimea-hp .intake-error.visible {
  display: block;
}

/* Navigation */
.slimea-hp .intake-nav {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--hp-border-light);
  background: var(--hp-white);
}

.slimea-hp .intake-nav__back {
  flex: 0 0 auto;
  padding: 16px 24px;
  background: var(--hp-white);
  border: 2px solid var(--hp-border);
  border-radius: var(--hp-radius-full);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--hp-text-secondary);
  cursor: pointer;
  transition: var(--hp-transition);
}

.slimea-hp .intake-nav__back:hover {
  border-color: var(--hp-text);
  color: var(--hp-text);
}

.slimea-hp .intake-nav__back:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slimea-hp .intake-nav__next {
  flex: 1;
  padding: 16px 32px;
  background: var(--hp-primary);
  border: none;
  border-radius: var(--hp-radius-full);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--hp-white);
  cursor: pointer;
  transition: var(--hp-transition);
  box-shadow: var(--hp-shadow-md);
}

.slimea-hp .intake-nav__next:hover {
  background: var(--hp-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--hp-shadow-lg);
}

.slimea-hp .intake-nav__next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Results Screen */
.slimea-hp .intake-result {
  text-align: center;
  padding: 20px 0;
}

.slimea-hp .intake-result__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--hp-primary-light), var(--hp-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
}

.slimea-hp .intake-result__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--hp-text);
  margin-bottom: 16px;
}

.slimea-hp .intake-result__summary {
  font-size: 16px;
  color: var(--hp-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.slimea-hp .intake-result__recommendation {
  padding: 20px;
  background: var(--hp-bg-cream);
  border-radius: var(--hp-radius-lg);
  margin-bottom: 24px;
}

.slimea-hp .intake-result__recommendation-label {
  font-size: 13px;
  color: var(--hp-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.slimea-hp .intake-result__recommendation-pack {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--hp-primary-dark);
}

.slimea-hp .intake-result__trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hp-border-light);
}

.slimea-hp .intake-result__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--hp-muted);
}

.slimea-hp .intake-result__trust-icon {
  font-size: 18px;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .slimea-hp .intake-modal {
    padding: 0;
  }

  .slimea-hp .intake-modal__container {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .slimea-hp .intake-step__question {
    font-size: 20px;
  }

  .slimea-hp .intake-options--grid {
    grid-template-columns: 1fr;
  }

  .slimea-hp .intake-input-row {
    grid-template-columns: 1fr;
  }

  .slimea-hp .intake-nav {
    flex-direction: column-reverse;
  }

  .slimea-hp .intake-nav__back {
    width: 100%;
  }
}

/* Hide body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* ============================================
   WEIGHT CALCULATOR SECTION
   ============================================ */
.slimea-hp .calculator {
  padding: 80px 0;
  background: #F5F5F5;
}

.slimea-hp .calculator__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.slimea-hp .calculator__text {
  text-align: center;
}

.slimea-hp .calculator__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hp-text);
  line-height: 1.3;
  margin-bottom: 20px;
}

.slimea-hp .calculator__title span {
  color: #6B8E6B;
  font-style: italic;
}

.slimea-hp .calculator__description {
  font-size: 16px;
  color: var(--hp-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.slimea-hp .calculator__description u {
  text-decoration-color: #6B8E6B;
  text-underline-offset: 3px;
}

.slimea-hp .calculator__btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--hp-text);
  color: var(--hp-white);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--hp-transition);
}

.slimea-hp .calculator__btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Calculator Card */
.slimea-hp .calculator__card {
  background: #E8E4DF;
  border-radius: 24px;
  padding: 40px 32px;
}

.slimea-hp .calculator__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.slimea-hp .calculator__row:last-child {
  margin-bottom: 0;
  margin-top: 24px;
}

.slimea-hp .calculator__label {
  font-size: 16px;
  font-weight: 500;
  color: var(--hp-text);
}

.slimea-hp .calculator__value {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--hp-text);
  line-height: 1;
}

.slimea-hp .calculator__value small {
  font-size: 24px;
  font-weight: 600;
}

.slimea-hp .calculator__value--result {
  color: #6B8E6B;
}

/* Slider */
.slimea-hp .calculator__slider-wrapper {
  padding: 8px 0;
}

.slimea-hp .calculator__slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #D0CBC5;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.slimea-hp .calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hp-text);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.slimea-hp .calculator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.slimea-hp .calculator__slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hp-text);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Calculator Responsive */
@media (min-width: 768px) {
  .slimea-hp .calculator__title {
    font-size: 32px;
  }

  .slimea-hp .calculator__card {
    padding: 48px 40px;
  }
}

@media (min-width: 1024px) {
  .slimea-hp .calculator {
    padding: 100px 0;
  }

  .slimea-hp .calculator__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .slimea-hp .calculator__text {
    text-align: left;
  }

  .slimea-hp .calculator__title {
    font-size: 36px;
  }

  .slimea-hp .calculator__description {
    font-size: 17px;
  }

  .slimea-hp .calculator__value {
    font-size: 56px;
  }

  .slimea-hp .calculator__value small {
    font-size: 28px;
  }
}

/* ============================================
   CHANGE SECTION - PHOTO GRID
   ============================================ */
.slimea-hp .change {
  padding: 80px 0;
  background: var(--hp-white);
}

.slimea-hp .change__header {
  text-align: center;
  margin-bottom: 48px;
}

.slimea-hp .change__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: 12px;
}

.slimea-hp .change__subtitle {
  font-size: 15px;
  color: var(--hp-text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* Photo Grid - Mobile (2 columns) */
.slimea-hp .change__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.slimea-hp .change__photo {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #E8E4DF 0%, #D8D4CF 100%);
  aspect-ratio: 1;
}

.slimea-hp .change__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide 7th photo on mobile */
.slimea-hp .change__photo--7 {
  display: none;
}

/* Benefits Bar */
.slimea-hp .change__benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.slimea-hp .change__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--hp-text-secondary);
}

.slimea-hp .change__check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #6B8E6B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slimea-hp .change__check::after {
  content: '';
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Tablet */
@media (min-width: 768px) {
  .slimea-hp .change__title {
    font-size: 36px;
  }

  .slimea-hp .change__subtitle {
    font-size: 16px;
  }

  .slimea-hp .change__grid {
    gap: 16px;
  }

  .slimea-hp .change__photo {
    border-radius: 20px;
  }

  .slimea-hp .change__photo--7 {
    display: block;
  }

  .slimea-hp .change__benefits {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .slimea-hp .change__benefit {
    font-size: 15px;
  }
}

/* Desktop - Mosaic Layout */
@media (min-width: 1024px) {
  .slimea-hp .change {
    padding: 100px 0;
  }

  .slimea-hp .change__title {
    font-size: 42px;
  }

  .slimea-hp .change__grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
    margin-bottom: 60px;
  }

  .slimea-hp .change__photo {
    aspect-ratio: auto;
  }

  /* Row 1: 4 photos */
  .slimea-hp .change__photo--1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .slimea-hp .change__photo--2 {
    grid-column: 3 / 5;
    grid-row: 1;
  }

  .slimea-hp .change__photo--3 {
    grid-column: 5 / 7;
    grid-row: 1 / 3;
  }

  .slimea-hp .change__photo--4 {
    grid-column: 7 / 9;
    grid-row: 1 / 3;
  }

  /* Row 2: 3 photos */
  .slimea-hp .change__photo--5 {
    grid-column: 3 / 4;
    grid-row: 2;
  }

  .slimea-hp .change__photo--6 {
    grid-column: 4 / 5;
    grid-row: 2;
  }

  .slimea-hp .change__photo--7 {
    display: none;
  }

  .slimea-hp .change__benefits {
    gap: 48px;
  }
}

/* ============================================
   METABOLISM SECTION
   ============================================ */
.slimea-hp .metabolism {
  padding: 80px 0;
  background: var(--hp-bg-cream);
}

.slimea-hp .metabolism__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* Images - Overlapping Layout */
.slimea-hp .metabolism__images {
  position: relative;
  min-height: 400px;
  display: flex;
  justify-content: center;
}

.slimea-hp .metabolism__img {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #E8E4DF 0%, #D8D4CF 100%);
}

.slimea-hp .metabolism__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slimea-hp .metabolism__img--1 {
  width: 70%;
  max-width: 280px;
  height: 350px;
  position: absolute;
  left: 10%;
  top: 40px;
  z-index: 1;
}

.slimea-hp .metabolism__img--2 {
  width: 65%;
  max-width: 260px;
  height: 300px;
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 2;
}

/* Content */
.slimea-hp .metabolism__content {
  text-align: center;
}

.slimea-hp .metabolism__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hp-text);
  line-height: 1.25;
  margin-bottom: 20px;
}

.slimea-hp .metabolism__title span {
  font-style: italic;
}

.slimea-hp .metabolism__text {
  font-size: 16px;
  color: var(--hp-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.slimea-hp .metabolism__text u {
  text-decoration-color: var(--hp-primary);
  text-underline-offset: 3px;
}

.slimea-hp .metabolism__btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--hp-text);
  color: var(--hp-white);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--hp-transition);
}

.slimea-hp .metabolism__btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Tablet */
@media (min-width: 768px) {
  .slimea-hp .metabolism__title {
    font-size: 32px;
  }

  .slimea-hp .metabolism__images {
    min-height: 450px;
  }

  .slimea-hp .metabolism__img--1 {
    width: 55%;
    max-width: 320px;
    height: 400px;
    left: 5%;
  }

  .slimea-hp .metabolism__img--2 {
    width: 50%;
    max-width: 300px;
    height: 350px;
    right: 5%;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .slimea-hp .metabolism {
    padding: 100px 0;
  }

  .slimea-hp .metabolism__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .slimea-hp .metabolism__images {
    min-height: 500px;
  }

  .slimea-hp .metabolism__img--1 {
    width: 260px;
    height: 420px;
    left: 0;
    top: 60px;
  }

  .slimea-hp .metabolism__img--2 {
    width: 280px;
    height: 380px;
    right: 0;
    top: 0;
  }

  .slimea-hp .metabolism__content {
    text-align: left;
  }

  .slimea-hp .metabolism__title {
    font-size: 40px;
  }

  .slimea-hp .metabolism__text {
    font-size: 17px;
  }
}

/* ============================================
   WHY IT WORKS - METRICS SECTION
   ============================================ */
.slimea-hp .why-works {
  padding: 80px 0;
  background: var(--hp-white);
}

.slimea-hp .why-works__header {
  text-align: center;
  margin-bottom: 48px;
}

.slimea-hp .why-works__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: 16px;
  font-style: italic;
}

.slimea-hp .why-works__title span {
  color: #6B8E6B;
}

.slimea-hp .why-works__subtitle {
  font-size: 15px;
  color: var(--hp-text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* Metrics Grid */
.slimea-hp .why-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.slimea-hp .why-works__card {
  background: #E8E8E0;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
}

.slimea-hp .why-works__value {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--hp-text);
  line-height: 1;
  margin-bottom: 12px;
}

.slimea-hp .why-works__value small {
  font-size: 32px;
  font-weight: 400;
}

.slimea-hp .why-works__label {
  display: block;
  font-size: 14px;
  color: var(--hp-text-secondary);
  line-height: 1.5;
}

/* Tablet - 2x2 grid */
@media (min-width: 640px) {
  .slimea-hp .why-works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .slimea-hp .why-works__title {
    font-size: 32px;
  }
}

/* Desktop - 4 columns */
@media (min-width: 1024px) {
  .slimea-hp .why-works {
    padding: 100px 0;
  }

  .slimea-hp .why-works__title {
    font-size: 40px;
  }

  .slimea-hp .why-works__subtitle {
    font-size: 16px;
  }

  .slimea-hp .why-works__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .slimea-hp .why-works__card {
    padding: 48px 20px;
  }

  .slimea-hp .why-works__value {
    font-size: 64px;
  }

  .slimea-hp .why-works__value small {
    font-size: 36px;
  }

  .slimea-hp .why-works__label {
    font-size: 15px;
  }
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.slimea-hp .support {
  padding: 80px 0;
  background: #F5F5F5;
}

.slimea-hp .support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* Content */
.slimea-hp .support__content {
  text-align: center;
  order: 2;
}

.slimea-hp .support__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hp-text);
  line-height: 1.25;
  margin-bottom: 20px;
}

.slimea-hp .support__title span {
  color: #6B8E6B;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-style: italic;
}

.slimea-hp .support__text {
  font-size: 16px;
  color: var(--hp-text-secondary);
  line-height: 1.7;
}

.slimea-hp .support__text u {
  text-decoration-color: var(--hp-primary);
  text-underline-offset: 3px;
}

/* Images - Overlapping Layout */
.slimea-hp .support__images {
  position: relative;
  min-height: 350px;
  display: flex;
  justify-content: center;
  order: 1;
}

.slimea-hp .support__img {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #E8E4DF 0%, #D8D4CF 100%);
}

.slimea-hp .support__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slimea-hp .support__img--1 {
  width: 55%;
  max-width: 240px;
  height: 300px;
  position: absolute;
  left: 15%;
  top: 0;
  z-index: 1;
}

.slimea-hp .support__img--2 {
  width: 50%;
  max-width: 220px;
  height: 280px;
  position: absolute;
  right: 15%;
  top: 40px;
  z-index: 2;
}

/* Tablet */
@media (min-width: 768px) {
  .slimea-hp .support__title {
    font-size: 32px;
  }

  .slimea-hp .support__images {
    min-height: 400px;
  }

  .slimea-hp .support__img--1 {
    width: 50%;
    max-width: 280px;
    height: 350px;
    left: 10%;
  }

  .slimea-hp .support__img--2 {
    width: 45%;
    max-width: 260px;
    height: 320px;
    right: 10%;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .slimea-hp .support {
    padding: 100px 0;
  }

  .slimea-hp .support__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .slimea-hp .support__content {
    text-align: left;
    order: 1;
  }

  .slimea-hp .support__images {
    min-height: 450px;
    order: 2;
  }

  .slimea-hp .support__img--1 {
    width: 240px;
    height: 380px;
    left: 0;
    top: 0;
  }

  .slimea-hp .support__img--2 {
    width: 220px;
    height: 340px;
    right: 0;
    top: 60px;
  }

  .slimea-hp .support__title {
    font-size: 36px;
  }

  .slimea-hp .support__text {
    font-size: 17px;
  }
}

/* ============================================
   RAVING SECTION - CTA
   ============================================ */
.slimea-hp .raving {
  padding: 80px 0;
  background: var(--hp-white);
}

.slimea-hp .raving__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.slimea-hp .raving__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hp-text);
  line-height: 1.25;
  font-style: italic;
}

.slimea-hp .raving__title span {
  color: #6B8E6B;
}

.slimea-hp .raving__text {
  font-size: 16px;
  color: var(--hp-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.slimea-hp .raving__text span {
  color: #6B8E6B;
  font-weight: 500;
}

.slimea-hp .raving__btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--hp-text);
  color: var(--hp-white);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--hp-transition);
}

.slimea-hp .raving__btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Tablet */
@media (min-width: 768px) {
  .slimea-hp .raving__title {
    font-size: 32px;
  }

  .slimea-hp .raving__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .slimea-hp .raving {
    padding: 100px 0;
  }

  .slimea-hp .raving__title {
    font-size: 40px;
  }

  .slimea-hp .raving__text {
    font-size: 17px;
  }

  .slimea-hp .raving__grid {
    gap: 100px;
  }
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.slimea-hp .testi-carousel {
  padding: 60px 0;
  background: var(--hp-white);
  overflow: hidden;
}

.slimea-hp .testi-carousel__row {
  overflow: hidden;
  margin-bottom: 20px;
}

.slimea-hp .testi-carousel__row:last-child {
  margin-bottom: 0;
}

.slimea-hp .testi-carousel__track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Row 1: Left to Right */
.slimea-hp .testi-carousel__row--ltr .testi-carousel__track {
  animation: hp-scrollLTR 40s linear infinite;
}

/* Row 2: Right to Left */
.slimea-hp .testi-carousel__row--rtl .testi-carousel__track {
  animation: hp-scrollRTL 40s linear infinite;
}

@keyframes hp-scrollLTR {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes hp-scrollRTL {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Pause on hover */
.slimea-hp .testi-carousel__row:hover .testi-carousel__track {
  animation-play-state: paused;
}

/* Card Base */
.slimea-hp .testi-card {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

/* Hero Shot Card */
.slimea-hp .testi-card--hero {
  width: 200px;
  height: 260px;
  background: linear-gradient(145deg, #E8E4DF 0%, #D8D4CF 100%);
}

.slimea-hp .testi-card--hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quote Card */
.slimea-hp .testi-card--quote {
  width: 280px;
  padding: 24px;
  background: #F5F5F0;
}

.slimea-hp .testi-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.slimea-hp .testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(145deg, #D4CEC7 0%, #C4BDB5 100%);
}

.slimea-hp .testi-card__name {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--hp-text);
}

.slimea-hp .testi-card__stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 2px;
}

.slimea-hp .testi-card__text {
  font-size: 14px;
  color: var(--hp-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Tablet */
@media (min-width: 768px) {
  .slimea-hp .testi-carousel {
    padding: 80px 0;
  }

  .slimea-hp .testi-card--hero {
    width: 240px;
    height: 300px;
  }

  .slimea-hp .testi-card--quote {
    width: 320px;
    padding: 28px;
  }

  .slimea-hp .testi-card__text {
    font-size: 15px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .slimea-hp .testi-carousel {
    padding: 100px 0;
  }

  .slimea-hp .testi-carousel__row {
    margin-bottom: 24px;
  }

  .slimea-hp .testi-carousel__track {
    gap: 24px;
  }

  .slimea-hp .testi-card--hero {
    width: 260px;
    height: 340px;
  }

  .slimea-hp .testi-card--quote {
    width: 340px;
    padding: 32px;
  }

  .slimea-hp .testi-card__avatar {
    width: 44px;
    height: 44px;
  }

  .slimea-hp .testi-card__name {
    font-size: 16px;
  }

  .slimea-hp .testi-card__text {
    font-size: 15px;
  }
}

/* ============================================
   GUARANTEE BANNER SECTION
   ============================================ */
.slimea-hp .guarantee-banner {
  padding: 60px 0;
  background: var(--hp-white);
}

.slimea-hp .guarantee-banner__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 32px;
  background: #FAF8F2;
  border-radius: 24px;
  border: 1px solid #F0EBE0;
}

.slimea-hp .guarantee-banner__icon {
  display: flex;
  justify-content: center;
}

.slimea-hp .guarantee-banner__checkmark {
  width: 140px;
  height: 140px;
}

.slimea-hp .guarantee-banner__content {
  text-align: center;
}

.slimea-hp .guarantee-banner__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #D4920A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-style: italic;
}

.slimea-hp .guarantee-banner__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hp-text);
  line-height: 1.25;
  margin-bottom: 16px;
}

.slimea-hp .guarantee-banner__text {
  font-size: 16px;
  color: var(--hp-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.slimea-hp .guarantee-banner__btn {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, #F5A623 0%, #D4920A 100%);
  color: var(--hp-white);
  font-family: 'Red Hat Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--hp-transition);
  box-shadow: 0 4px 15px rgba(212, 146, 10, 0.3);
}

.slimea-hp .guarantee-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 146, 10, 0.4);
}

/* Tablet */
@media (min-width: 768px) {
  .slimea-hp .guarantee-banner__card {
    padding: 60px 48px;
  }

  .slimea-hp .guarantee-banner__title {
    font-size: 32px;
  }

  .slimea-hp .guarantee-banner__checkmark {
    width: 160px;
    height: 160px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .slimea-hp .guarantee-banner {
    padding: 80px 0;
  }

  .slimea-hp .guarantee-banner__card {
    grid-template-columns: auto 1fr;
    gap: 80px;
    padding: 80px;
    text-align: left;
  }

  .slimea-hp .guarantee-banner__content {
    text-align: left;
  }

  .slimea-hp .guarantee-banner__checkmark {
    width: 180px;
    height: 180px;
  }

  .slimea-hp .guarantee-banner__title {
    font-size: 40px;
  }

  .slimea-hp .guarantee-banner__text {
    font-size: 17px;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ============================================
   TRUST BAR (FOOTER)
   ============================================ */
.slimea-hp .trust-bar {
  padding: 40px 0;
  background: var(--hp-white);
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
}

.slimea-hp .trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.slimea-hp .trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
  text-align: center;
}

.slimea-hp .trust-bar__icon {
  width: 28px;
  height: 28px;
  color: var(--hp-muted);
  flex-shrink: 0;
}

.slimea-hp .trust-bar__item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--hp-text);
}

/* Tablet - 2x2 grid */
@media (min-width: 640px) {
  .slimea-hp .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .slimea-hp .trust-bar__item {
    padding: 20px;
    border-right: 1px solid var(--hp-border);
    border-bottom: 1px solid var(--hp-border);
  }

  .slimea-hp .trust-bar__item:nth-child(2),
  .slimea-hp .trust-bar__item:nth-child(4) {
    border-right: none;
  }

  .slimea-hp .trust-bar__item:nth-child(3),
  .slimea-hp .trust-bar__item:nth-child(4) {
    border-bottom: none;
  }
}

/* Desktop - 4 columns */
@media (min-width: 1024px) {
  .slimea-hp .trust-bar {
    padding: 32px 0;
  }

  .slimea-hp .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .slimea-hp .trust-bar__item {
    padding: 0 24px;
    border-right: 1px solid var(--hp-border);
    border-bottom: none;
  }

  .slimea-hp .trust-bar__item:last-child {
    border-right: none;
  }

  .slimea-hp .trust-bar__item:nth-child(2) {
    border-right: 1px solid var(--hp-border);
  }

  .slimea-hp .trust-bar__icon {
    width: 32px;
    height: 32px;
  }

  .slimea-hp .trust-bar__item span {
    font-size: 15px;
  }
}

/* ========================================================================
   FOOTER (outside .slimea-hp — in layout)
   ======================================================================== */
.hp-footer {
  --hpf-primary: #C6A673;
  --hpf-bg-cream: #FAF8F5;
  --hpf-border: #E5E0DB;
  --hpf-white: #FFFFFF;
  --hpf-text: #1A1A1A;
  --hpf-text-secondary: #4A4A4A;
  --hpf-muted: #6B6B6B;
  --hpf-radius-full: 9999px;

  padding: 60px 0 100px;
  background: var(--hpf-bg-cream);
  border-top: 1px solid var(--hpf-border);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--hpf-text);
}

.hp-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hp-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.hp-footer__brand {
  max-width: 340px;
}

.hp-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Red Hat Display', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--hpf-text);
  letter-spacing: 2px;
}

.hp-footer__tagline {
  font-size: 14px;
  color: var(--hpf-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hp-footer__contact {
  font-size: 14px;
  color: var(--hpf-muted);
  line-height: 1.8;
}

.hp-footer__contact p {
  margin: 0;
}

.hp-footer__contact a {
  color: var(--hpf-primary);
  text-decoration: none;
}

.hp-footer__contact a:hover {
  text-decoration: underline;
}

.hp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
}

.hp-footer__links a {
  padding: 10px 16px;
  background: var(--hpf-white);
  border: 1px solid var(--hpf-border);
  border-radius: var(--hpf-radius-full);
  font-size: 14px;
  color: var(--hpf-text-secondary);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.hp-footer__links a:hover {
  border-color: var(--hpf-primary);
  color: var(--hpf-primary);
}

.hp-footer__legal {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hpf-border);
  font-size: 12px;
  color: var(--hpf-muted);
  line-height: 1.7;
}

.hp-footer__legal p {
  margin-bottom: 12px;
}

/* Footer responsive: tablet */
@media (min-width: 768px) {
  .hp-footer__grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

/* Footer responsive: desktop */
@media (min-width: 1024px) {
  .hp-footer {
    padding-bottom: 60px;
  }

  .hp-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
