/* ---------- Shared Utilities ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.chip span {
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  background: var(--color-primary);
}

.hd {
  font-family: var(--font-family);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--color-on-background);
}

.hd.xxl {
  font-size: clamp(32px, 6vw, 72px);
}

.hd.xl {
  font-size: clamp(26px, 4vw, 35px);
}

.sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-gray-500);
  font-weight: 400;
}

/* ---------- Scroll Reveal Animation ---------- */
[data-reveal],
[data-reveal-child]>* {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

[data-reveal].visible,
[data-reveal-child].visible>* {
  opacity: 1;
  transform: none;
}

/* stagger children */
[data-reveal-child].visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

[data-reveal-child].visible>*:nth-child(2) {
  transition-delay: 0.15s;
}

[data-reveal-child].visible>*:nth-child(3) {
  transition-delay: 0.25s;
}

[data-reveal-child].visible>*:nth-child(4) {
  transition-delay: 0.35s;
}

[data-reveal-child].visible>*:nth-child(5) {
  transition-delay: 0.45s;
}

[data-reveal-child].visible>*:nth-child(6) {
  transition-delay: 0.55s;
}

/* ============================================
   1 · HERO 
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-top: 60px;
  margin-bottom: 40px;
  min-height: 80vh;
  align-items: center;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 40px;
}

.hero-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  background: var(--color-surface-container-high);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(40px, 8vw, 60px) !important;
  line-height: 1.1 !important;
  margin-top: 10px;
}

.hero-title span {
  font-size: clamp(40px, 8vw, 65px) !important;
  color: var(--color-primary);
  font-weight: 800;
}

.hero-left-bottom {
  margin-top: 80px;
}

.hero-left-bottom .sub {
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 90%;
  color: #333;
}

.hero-action-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-hero-black {
  background: #111;
  color: #fff;
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s, transform 0.3s;
}

.btn-hero-black:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #f6f5f0;
  margin-left: -16px;
  object-fit: cover;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.avatar-count {
  margin-left: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #444;
}

/* Masonry Grid */
.masonry-grid {
  display: flex;
  gap: 16px;
  height: 100%;
}

.mg-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.mg-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-img-tall {
  height: 340px;
}

.mg-img-small {
  height: 200px;
}

.mg-box-purple,
.mg-box-green,
.mg-box-orange {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mg-box-purple {
  background: #dcd0ff;
  height: 200px;
}

.mg-box-green {
  background: #d8f5d8;
  height: 200px;
}

.mg-box-orange {
  background: #ffc999;
  flex-grow: 1;
}

.mg-item h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
  line-height: 1.2;
}

.mg-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.mg-box-orange p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* ============================================
   2 · PROBLEM 
   ============================================ */
.problem-section {
  padding: 40px 0;
}

.problem-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: center;
}

.problem-left {
  display: flex;
  flex-direction: column;
}

.problem-title h2 {
  margin-bottom: 40px;
}

.problem-title p {
  color: var(--color-outline);
  font-size: clamp(14px, 5vw, 16px);
}

.problem-img-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.problem-img-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/3;
  object-fit: cover;
  display: block;
}

.problem-right {
  display: flex;
  flex-direction: column;
}

.prob-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
}

.prob-list-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--color-surface-container-lowest);
  margin-left: -20px;
  padding: 28px;
  border-radius: 24px;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.prob-list-item-2 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--color-surface-container-lowest);
  margin-left: 17px;
  padding: 28px;
  border-radius: 24px;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.prob-list-item-2:hover {
  background: #fff;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.prob-list-item:hover {
  background: #fff;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pli-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-fixed);
  color: var(--color-primary-container);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pli-icon .material-symbols-outlined {
  font-size: 24px;
  font-variation-settings: 'FILL' 1;
}

.pli-text h3 {
  font-size: 19px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.pli-text p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Features Accordion Section */
.features-accordion {
  padding: 80px 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.fa-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fa-left .hd {
  line-height: 1.1;
  margin-bottom: 48px;
}

/* Carousel */
.fa-main-carousel-wrapper {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.fa-carousel-cell {
  width: 100%;
  height: 500px;
  position: relative;
}

.fa-main-carousel-wrapper {
  height: 500px;
}

.fa-carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* New Slide Content Styles */
.fa-slide-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fa-img-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 40px;
  overflow: hidden;
  background: #f0f0f0;
}

.fa-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fa-img-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  z-index: 10;
  width: 90%;
  justify-content: center;
}

.fa-img-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.fa-img-btn .material-symbols-outlined {
  font-size: 18px;
}

.fa-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fa-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.fa-info-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-on-background);
  margin-bottom: 20px;
}

.fa-info-row {
  margin-bottom: 12px;
}

.fa-info-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #888;
  margin-bottom: 4px;
}

.fa-info-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-on-background);
}

.fa-info-text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.fa-nutri-item {
  margin-bottom: 20px;
}

.fa-nutri-item:last-child {
  margin-bottom: 0;
}

.fa-nutri-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-on-background);
  margin-bottom: 8px;
}

.fa-nutri-label strong {
  margin-left: auto;
}

.fa-nutri-label span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fa-nutri-label span.dot.protein {
  background: #5c6bc0;
}

.fa-nutri-label span.dot.carbs {
  background: #9ccc65;
}

.fa-nutri-bar {
  width: 100%;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.fa-nutri-fill {
  height: 100%;
  border-radius: 4px;
}

.fa-meal-item {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.fa-meal-item strong {
  color: var(--color-on-background);
}

.fa-img-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: 40px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fa-carousel-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.fa-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--color-outline-variant);
  background: #fff;
  color: var(--color-on-background);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.fa-nav-btn:hover {
  background: var(--color-on-background);
  color: #fff;
  border-color: var(--color-on-background);
}

/* Accordion */
.accordion-list {
  display: flex;
  flex-direction: column;
}

.acc-item {
  border-top: 0.5px solid var(--color-outline-variant);
  padding: 24px 0;
  transition: all 0.4s;
}

.acc-item:last-child {
  border-bottom: 1px solid var(--color-outline-variant);
}

.acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.acc-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-on-background);
  transition: color 0.3s;
}

.acc-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface-container-high);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.acc-toggle .material-symbols-outlined {
  font-size: 20px;
  color: var(--color-on-background);
  transition: transform 0.4s;
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item.active {
  padding: 32px 0;
}

.acc-item.active .acc-content {
  max-height: 500px;
}

.acc-item.active .acc-toggle {
  background: var(--color-on-background);
  color: #fff;
}

.acc-item.active .acc-toggle .material-symbols-outlined {
  color: #fff;
}

.acc-inner {
  padding: 32px 0 0;
}

.acc-inner p {
  color: var(--color-on-surface-variant);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.acc-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--color-on-background);
  transition: opacity 0.3s;
}

.btn-link:hover {
  opacity: 0.7;
}

/* Hero Partners New Section */
.hero-partners-new {
  padding: 60px 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  background: #fff;
  margin-bottom: 50px;
  border-radius: 20px;
}

.hp-header {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.hp-left .hd {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hp-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hp-avatars {
  display: flex;
}

.hp-avatars img,
.hp-avatar-plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -12px;
  object-fit: cover;
}

.hp-avatar-plus {
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.hp-rating {
  display: flex;
  flex-direction: column;
}

.hp-rating strong {
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}

.hp-rating span {
  font-size: 11px;
  color: #888;
}

.hp-center .asterisk {
  font-size: 120px;
  color: var(--color-primary);
  font-weight: 200;
  opacity: 0.8;
}

.hp-right p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 450px;
}

.hp-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.btn-black {
  background: #111;
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Slider */
.hp-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  border-top: 1px solid #eee;
}

/* Gradients on sides */
.hp-slider-container::before,
.hp-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.hp-slider-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.hp-slider-container::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.hp-slider-track {
  display: flex;
  width: calc(250px * 12);
  animation: scrollLogos 30s linear infinite;
}

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

.hp-logo {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #888;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

.hp-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.hp-logo img {
  height: 40px;
  width: auto;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 6));
  }
}

/* About NutriNesia Section */
.about-nutrinesia {
  padding: 65px 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Typography Focus Header */
.about-editorial-header {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 26px;
}

.about-editorial-header .chip {
  margin: 0 auto 24px;
  display: inline-flex;
}

.about-editorial-header .hd {
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Editorial Split Layout */
.about-editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 30px;
}

/* Left Collage */
.editorial-left-collage {
  position: relative;
  height: 600px;
}

.ed-img-main {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 40px;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.ed-img-sub {
  width: 60%;
  height: 60%;
  object-fit: cover;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 8px solid #f8fafc;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.ed-floating-card {
  position: absolute;
  top: 40px;
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  z-index: 5;
}

.efc-icon {
  width: 48px;
  height: 48px;
  background: #fef08a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.efc-icon .material-symbols-outlined {
  color: #eab308;
  font-variation-settings: 'FILL' 1;
}

.efc-text strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.efc-text span {
  font-size: 13px;
  color: #666;
}

/* Right Content */
.editorial-right-content {
  display: flex;
  flex-direction: column;
}

.ed-desc {
  color: rgb(85, 83, 83);
  margin-bottom: 40px;
  font-size: 16px;
  margin-bottom: 28px;
}

.ed-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ed-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ed-check {
  width: 32px;
  height: 32px;
  background: var(--color-primary-fixed);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ed-check .material-symbols-outlined {
  font-size: 22px;
  font-weight: 800;
}

.ed-list-item span:not(.material-symbols-outlined) {
  font-size: 16px;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
  padding-top: 4px;
}

.about-stats-row {
  display: flex;
  justify-content: center;
  gap: 100px;
  text-align: center;
}

.stat-item h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: #777;
}

/* Testimonials */
.testi-new-sec {
  margin-top: 50px;
  padding: 70px 40px;
  background: #fff;
  border-radius: 2rem;
}

.tn-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}

.tn-left .hd {
  margin-bottom: 24px;
  line-height: 1.1;
}

.tn-left {
  position: relative;
}

.tn-sub {
  color: #888;
  margin-bottom: 60px;
}

.tn-video-box {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 130px;
}

.tn-video-preview {
  width: 200px;
  height: 200px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.tn-video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tn-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tn-play-btn .material-symbols-outlined {
  font-size: 32px;
  color: #000;
}

.tn-video-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 7px;
}

.fa-quote-left {
  color: var(--color-primary);
  font-size: 40px;
  margin-bottom: 24px;
  display: block;
  opacity: 0.8;
}

.tn-right {
  position: relative;
  min-width: 0;
}

.tn-carousel-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: flex-end;
}

.tn-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tn-carousel {
  min-height: 360px;
}

.tn-card {
  width: 450px;
  height: 440px;
  margin-right: 30px;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
}

.tn-text {
  font-size: 18px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 24px;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.tn-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.tn-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tn-quote {
  font-size: 40px;
  color: var(--color-primary);
  margin-bottom: 24px;
  display: block;
  opacity: 0.5;
}

.tn-author strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.tn-author span {
  font-size: 13px;
  color: #888;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.faq-left .hd {
  margin-bottom: 100px;
}

.faq-contact-box {
  padding: 22px;
  background: var(--color-surface-container-lowest);
  border-radius: 40px;
  max-width: 300px;
}

.faq-cb-icon {
  font-size: 32px;
  margin-bottom: 24px;
}

.faq-contact-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-contact-box p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn-faq-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  font-size: 16px;
}

.btn-faq-contact:hover {
  color: var(--color-primary);
  transform: translateX(5px);
  transition: all 0.3s;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid #eee;
  padding: 32px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #eee;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}

.faq-num {
  font-size: 14px;
  font-weight: 600;
  color: #888;
}

.faq-header h3 {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.faq-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-item.active .faq-content {
  max-height: 300px;
}

.faq-item.active .faq-toggle {
  background: #111;
  color: #fff;
  transform: rotate(180deg);
}

.faq-inner {
  padding: 24px 0 0 74px;
}

.faq-inner p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- DESKTOP ≤ 1280px ---------- */
@media (max-width: 1280px) {
  .hero {
    gap: 40px;
    margin-top: 40px;
  }

  .hero-title {
    font-size: clamp(34px, 6vw, 52px) !important;
  }

  .about-editorial-split {
    gap: 60px;
  }

  .editorial-left-collage {
    height: 520px;
  }

  .problem-container {
    gap: 60px;
  }

  .fa-container {
    gap: 60px;
  }

  .tn-container {
    gap: 60px;
  }

  .faq-container {
    gap: 60px;
  }

  .hp-header {
    gap: 40px;
  }

  .hp-left .hd {
    font-size: 40px;
  }

  .hp-center .asterisk {
    font-size: 96px;
  }
}

/* ---------- TABLET 768px - 1023px ---------- */
@media (max-width: 1023px) {

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 32px;
  }

  .hero-left {
    padding-bottom: 0;
  }

  .hero-title {
    font-size: clamp(36px, 6vw, 56px) !important;
  }

  .hero-left-bottom {
    margin-top: 40px;
  }

  .masonry-grid {
    max-height: 520px;
  }

  .mg-img-tall {
    height: 280px;
  }

  .mg-img-small {
    height: 180px;
  }

  .mg-box-purple,
  .mg-box-green {
    height: 180px;
    padding: 24px;
  }

  /* About Editorial */
  .about-nutrinesia {
    padding: 80px 0;
  }

  .about-editorial-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .editorial-left-collage {
    height: 480px;
  }

  .about-stats-row {
    gap: 48px;
    flex-wrap: wrap;
  }

  /* Problem */
  .problem-section {
    padding: 60px 0;
  }

  .problem-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .prob-list {
    margin-top: 0;
  }

  .prob-list-item,
  .prob-list-item-2 {
    margin-left: 0;
  }

  /* Features Accordion */
  .features-accordion {
    padding: 60px 0;
  }

  .fa-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fa-left .hd {
    margin-bottom: 32px;
  }

  .fa-main-carousel-wrapper {
    width: 100%;
    height: 100%;
  }

  .fa-carousel-cell {
    height: 420px;
  }

  /* Testimonials */
  .testi-new-sec {
    padding: 60px 32px;
  }

  .tn-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tn-left {
    min-height: auto;
  }

  .tn-video-box {
    display: none;
  }

  .tn-video-preview {
    width: 160px;
    height: 160px;
  }

  .tn-card {
    width: 380px;
    height: 400px;
    padding: 32px;
  }

  /* FAQ */
  .faq-section {
    padding: 80px 0;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-left .hd {
    margin-bottom: 40px;
  }

  .faq-contact-box {
    max-width: 100%;
  }

  /* Partners */
  .hero-partners-new {
    padding: 48px 32px;
  }

  .hp-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
    text-align: center;
  }

  .hp-trust {
    justify-content: center;
  }

  .hp-center {
    display: none;
  }

  .hp-right p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hp-actions {
    justify-content: center;
  }
}

/* ---------- MOBILE LARGE 480px - 767px ---------- */
@media (max-width: 767px) {

  /* Container */
  .container {
    padding: 0 20px;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 44px) !important;
  }

  .hero-left-bottom {
    margin-top: 32px;
  }

  .hero-left-bottom .sub {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-action-row {
    gap: 20px;
  }

  .btn-hero-black {
    padding: 14px 24px;
    font-size: 14px;
  }

  /* Masonry - Hide column 3, 2 columns remaining */
  .masonry-grid {
    gap: 12px;
  }

  .mg-col:nth-child(3) {
    display: none;
  }

  .mg-img-tall {
    height: 220px;
  }

  .mg-img-small {
    height: 140px;
  }

  .mg-box-purple,
  .mg-box-green {
    height: 140px;
    padding: 20px;
  }

  .mg-box-orange {
    padding: 20px;
  }

  .mg-item h4 {
    font-size: 16px;
  }

  .mg-item p,
  .mg-box-orange p {
    font-size: 13px;
  }

  /* About Editorial */
  .about-nutrinesia {
    padding: 64px 0;
  }

  .about-editorial-split {
    gap: 40px;
    margin-bottom: 24px;
  }

  .editorial-left-collage {
    height: 380px;
  }

  .ed-floating-card {
    top: 20px;
    left: 0;
    padding: 12px 16px;
  }

  .efc-text strong {
    font-size: 16px;
  }


  .ed-list {
    gap: 18px;
  }

  .ed-list-item span:not(.material-symbols-outlined) {
    font-size: 14px;
  }

  .about-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .stat-item h3 {
    font-size: 30px;
  }

  /* Problem */
  .problem-section {
    padding: 48px 0;
  }

  .problem-container {
    gap: 40px;
  }

  .prob-list-item,
  .prob-list-item-2 {
    padding: 20px;
    gap: 16px;
  }

  .prob-list-item:hover,
  .prob-list-item-2:hover {
    transform: none;
    background: var(--color-surface-container-lowest);
  }

  .pli-text h3 {
    font-size: 17px;
  }

  .pli-text p {
    font-size: 14px;
  }

  /* Features Accordion */
  .features-accordion {
    padding: 48px 0;
  }

  .fa-container {
    gap: 40px;
  }

  .fa-main-carousel-wrapper {
    border-radius: 24px;
  }

  .fa-carousel-cell {
    height: 320px;
  }

  .fa-img-badge {
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    font-size: 12px;
  }

  .fa-nav-btn {
    width: 44px;
    height: 44px;
  }

  .acc-header h3 {
    font-size: 16px;
  }

  .acc-toggle {
    width: 32px;
    height: 32px;
  }

  .acc-toggle .material-symbols-outlined {
    font-size: 18px;
  }

  .acc-inner {
    padding: 20px 0 0;
  }

  .acc-inner p {
    font-size: 14px;
    margin-bottom: 20px;
  }
    .fa-main-carousel-wrapper {
    width: 100%;
    height: 100%;
  }

  /* Testimonials */
  .testi-new-sec {
    padding: 48px 20px;
    border-radius: 20px;
  }

  .tn-container {
    gap: 32px;
  }

  .tn-video-box {
    display: hidden;
  }

  .tn-video-preview {
    width: 100%;
    max-width: 280px;
    height: 200px;
    border-radius: 24px;
  }

  .tn-carousel-nav {
    justify-content: flex-start;
    margin-bottom: 24px;
  }

  .tn-card {
    width: calc(100vw - 64px);
    max-width: 360px;
    height: auto;
    min-height: 360px;
    padding: 28px 24px;
    border-radius: 24px;
    margin-right: 16px;
  }

  .tn-card-header {
    margin-bottom: 20px;
  }

  .tn-quote {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .tn-text {
    font-size: 15px;
    margin-bottom: 16px;
  }

  /* FAQ */
  .faq-section {
    padding: 48px 0;
  }

  .faq-container {
    gap: 32px;
  }

  .faq-left .hd {
    margin-bottom: 24px;
  }

  .faq-contact-box {
    padding: 20px;
    border-radius: 28px;
  }

  .faq-item {
    padding: 24px 0;
  }

  .faq-header {
    gap: 16px;
  }

  .faq-header h3 {
    font-size: 15px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .faq-toggle .material-symbols-outlined {
    font-size: 18px;
  }

  .faq-inner {
    padding: 16px 0 0 0;
  }

  .faq-inner p {
    font-size: 14px;
  }

  /* Partners */
  .hero-partners-new {
    padding: 40px 20px;
    border-radius: 16px;
    margin-bottom: 32px;
  }

  .hp-header {
    margin-bottom: 40px;
  }

  .hp-left .hd {
    font-size: 32px;
  }

  .hp-right p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hp-actions {
    flex-direction: column;
    gap: 16px;
  }

  .btn-black {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .hp-slider-container::before,
  .hp-slider-container::after {
    width: 60px;
  }

  .hp-slider-track {
    width: calc(180px * 12);
  }

  .hp-logo {
    flex: 0 0 180px;
  }

  .hp-logo img {
    height: 30px;
  }

  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-180px * 6));
    }
  }
}

/* ---------- MOBILE SMALL < 480px ---------- */
@media (max-width: 479px) {
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero {
    gap: 24px;
    margin-top: 16px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 38px) !important;
  }

  .hero-tag {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-action-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .btn-hero-black {
    width: 100%;
    justify-content: center;
  }

  .hero-avatars {
    justify-content: center;
  }

  .avatar-count {
    font-size: 13px;
  }

  /* Masonry - Hide on tiny screens, save space */
  .hero-right {
    display: none;
  }

  /* About Editorial */
  .editorial-left-collage {
    height: 320px;
  }

  .ed-img-sub {
    border-width: 4px;
  }

  .about-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-item h3 {
    font-size: 26px;
  }

  .stat-item p {
    font-size: 13px;
  }

  /* Problem */
  .prob-list {
    gap: 16px;
  }

  .prob-list-item,
  .prob-list-item-2 {
    padding: 18px;
    border-radius: 20px;
  }

  /* Features */
  .fa-carousel-cell {
    height: 260px;
  }

  .fa-img-badge {
    top: 16px;
    left: 16px;
  }

  .fa-nav-btn {
    width: 40px;
    height: 40px;
  }

  .acc-bottom {
    justify-content: flex-start;
  }

  /* Testimonials */
  .testi-new-sec {
    padding: 40px 16px;
  }

  .tn-card {
    width: calc(100vw - 48px);
    max-width: 100%;
    padding: 24px 20px;
  }

  .tn-video-preview {
    height: 180px;
  }

  /* FAQ */
  .faq-num {
    font-size: 12px;
  }

  .faq-header h3 {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Partners */
  .hero-partners-new {
    padding: 32px 16px;
  }

  .hp-left .hd {
    font-size: 28px;
    line-height: 1.2;
  }

  .hp-avatars img,
  .hp-avatar-plus {
    width: 32px;
    height: 32px;
  }

  .hp-slider-track {
    width: calc(140px * 12);
  }

  .hp-logo {
    flex: 0 0 140px;
  }

  .hp-logo img {
    height: 24px;
  }

  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-140px * 6));
    }
  }
}

/* ============================================
   CREATIVE FOOTER (REDESIGN)
   ============================================ */
.footer-new {
  margin-top: 50px;
  position: relative;
  /* background: var(--color-surface-container-lowest); */
  border-top: 1px solid rgba(57, 57, 57, 0.2);
  overflow: hidden;
  font-family: var(--font-family);
}

/* Footer CTA Box */
.footer-cta-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 2;
  transform: translateY(50px);
}

.footer-cta-box {
  background: var(--color-primary);
  border-radius: 40px;
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 30px 60px rgba(53, 37, 205, 0.2);
  background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
  text-align: center;
}

.footer-cta-box.centered {
  flex-direction: column;
  justify-content: center;
}

.footer-cta-box.centered .p-footer {
  margin: 0 auto 32px;
}

.footer-cta-box.centered .footer-cta-actions {
  justify-content: center;
}

.footer-cta-content {
  flex: 1;
}

.chip.white {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hd-footer {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.p-footer {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 500px;
}

.footer-cta-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary-footer {
  background: #fff;
  color: var(--color-primary);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-base);
}

.btn-primary-footer:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-footer {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition-base);
}

.btn-outline-footer:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
