.hero {
  margin: 0 auto;
}

.hero img {
  width: 100%;
  margin: 0 auto;
}

/* Scroll Reveal Animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.3, 1),
              transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
}

[data-reveal="left"] {
  transform: translateX(-34px);
}

[data-reveal="right"] {
  transform: translateX(34px);
}

[data-reveal="zoom"] {
  transform: scale(0.93);
}

[data-reveal="fade"] {
  transform: translateY(0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hover-press {
  transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.hover-press:active {
  transform: translateY(-2px) scale(0.98);
}

.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.4s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.hover-zoom:hover img {
  transform: scale(1.06);
}

/* Button System */
.btn-red,
.btn-white,
.btn-brown,
.btn-ghost,
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 19px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
              color 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
              transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.btn-red {
  background-color: var(--primary);
  color: white;
}

.btn-red:hover {
  background-color: #ff1f66;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 0, 76, 0.3);
}

.btn-red:active {
  transform: translateY(-2px) scale(0.97);
}

.btn-white {
  background-color: white;
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--gold);
  color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 182, 7, 0.3);
}

.btn-brown {
  background-color: var(--brown);
  color: white;
}

.btn-brown:hover {
  background-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 53, 37, 0.3);
}

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

.btn-ghost:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Sheen Effect */
.btn-red::before,
.btn-white::before,
.btn-brown::before,
.btn-ghost::before,
.btn-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: sheen 0.55s ease-in-out;
}

@keyframes sheen {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.btn-red:hover::before,
.btn-white:hover::before,
.btn-brown:hover::before,
.btn-ghost:hover::before,
.btn-icon:hover::before {
  animation: sheen 0.55s ease-in-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .hover-lift,
  .hover-press,
  .hover-zoom img,
  .btn-red,
  .btn-white,
  .btn-brown,
  .btn-ghost,
  .btn-icon {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    padding: 0 80px;
  }
}

@media (max-width: 600px) {
  .btn-red,
  .btn-white,
  .btn-brown,
  .btn-ghost,
  .btn-icon {
    font-size: 16px;
    padding: 0 16px;
  }

  [data-reveal] {
    transform: translateY(16px);
  }

  [data-reveal="left"] {
    transform: translateX(-20px);
  }

  [data-reveal="right"] {
    transform: translateX(20px);
  }
}

/* ============================================================
   PROTEINA LANDING — SECTION STYLES
   ============================================================ */

/* Section 2: Drinks showcase */
.section-2 .container {
  max-width: 1728px;
}

.section-2-title {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: 86px;
  color: #2c6098;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 64px;
}

@media (max-width: 900px) {
  .section-2-title {
    white-space: normal;
  }
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.drink-card {
  text-align: left;
}

.drink-photo {
  width: 100%;
  border-radius: 0;
  margin-bottom: 24px;
}

.drink-card h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: #002e43;
  margin-bottom: 8px;
}

.drink-card p {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: #000;
  margin-bottom: 16px;
}

.drink-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.drink-disclaimer {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #000;
  margin-bottom: 16px;
  margin-top: 12px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  background: #2c6098;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 500;
}

.stat-pill--brown {
  background: var(--brown);
}

.protea-logo {
  display: block;
  margin-bottom: 8px;
  height: 115.2px;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: bottom left;
}

@media (max-width: 900px) {
  .drinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .drinks-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 3: Nutrition facts */
.section-3-heading {
  font-family: 'Gilroy', sans-serif;
  font-weight: 950;
  font-size: 73.5px;
  color: #000;
  line-height: 1.25;
  margin-bottom: 72px;
}

.highlight-underline {
  color: #2c6098;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.highlight-blue {
  color: #2c6098;
}

.section-3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-3-photo img {
  width: 100%;
  border-radius: 16px;
  height: 576px;
  object-fit: cover;
}

.section-3-scoop h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 950;
  font-size: 96px;
  color: #000;
  margin-bottom: 32px;
  position: relative;
}

.scoop-underline {
  position: absolute;
  left: 130px;
  bottom: -14px;
  width: 300px;
  height: auto;
}

.nutrition-card {
  background: #2c6098;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(44, 96, 152, 0.28);
}

.nutrition-header {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: 42.7px;
  color: white;
  margin-bottom: 16px;
}

.nutrition-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 16px;
  margin-bottom: 16px;
}

.nutrition-item {
  display: flex;
  flex-direction: column;
  color: white;
}

.nutrition-item strong {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 42.7px;
}

.nutrition-item span {
  font-size: 19.2px;
  font-weight: 500;
}

.nutrition-footnote {
  color: white;
  font-size: 20px;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .section-3-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 4: Ingredients + benefits */
.section-4 {
  background: #e9f4fd;
  padding: 0;
}

.section-4-inner {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.section-4-photo {
  position: relative;
  background: #cee2f7;
  border-radius: 0 92px 92px 0;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 400px;
}

.section-4-photo img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 38%;
  flex-shrink: 0;
  filter: drop-shadow(0 20px 30px rgba(44, 96, 152, 0.35));
}

.section-4-photo-copy {
  min-width: 0;
}

.section-4-photo-copy h2 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #2c6098;
  line-height: 1.15;
  margin-bottom: 12px;
  white-space: nowrap;
}

.section-4-photo-copy p {
  font-weight: 500;
  font-size: 24px;
  color: #000;
  line-height: 1.3;
}

.section-4-details {
  padding: 32px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ingredients-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ingredients-block .eyebrow {
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.ingredients-label {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  color: #000;
}

.ingredients-row {
  display: flex;
  gap: 20px;
}

.ingredient {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ingredient img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.ingredient span {
  font-weight: 700;
  font-size: 20px;
  color: #000;
}

.benefits-row {
  display: flex;
  gap: 32px;
  border-left: 1px solid #c1d9f4;
  padding-left: 32px;
  flex: 1;
}

.benefit-card {
  text-align: center;
  max-width: 140px;
}

.benefit-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2c6098;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-circle svg {
  width: 32px;
  height: 32px;
}

.benefit-label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.2;
  color: #000;
}

.benefit-card p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
}

@media (max-width: 900px) {
  .section-4-inner {
    grid-template-columns: 1fr;
  }

  .section-4-photo {
    border-radius: 24px;
    margin: 0 16px;
  }

  .benefits-row {
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .benefits-row {
    grid-template-columns: 1fr;
  }
}

/* Section 5: Routine + mayor saciedad */
.section-5 .container {
  max-width: 1636.16px;
}

.section-5b .container {
  max-width: 1734px;
}

section.section-5b {
  padding-top: 0;
}

.section-5-top {
  display: grid;
  grid-template-columns: 1041.34px 1fr;
  align-items: center;
  gap: 100px;
  max-width: 1636.16px;
  margin: 0 auto 88px;
}

.section-6-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.section-6-inline img {
  width: 1041.34px;
  max-width: 100%;
}

.section-6-inline .section-6-title {
  text-align: center;
  margin-bottom: 0;
}

.section-6-inline .section-6-title .bold {
  font-weight: 950;
}

.section-6-inline .section-6-title .normal {
  font-weight: 400;
}

.section-5-title {
  font-family: 'Gilroy', sans-serif;
  font-weight: 950;
  font-size: 96px;
  color: #000;
  line-height: 1.1;
}

.mayorsaciedad-block {
  text-align: center;
}

.mayorsaciedad-block img {
  max-width: 380px;
  margin: 0 auto;
}

.mayorsaciedad-block h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 950;
  font-size: 49.5px;
  color: #000;
  margin-top: 8px;
}

.routine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.routine-card {
  width: 411px;
  height: 330px;
  max-width: 100%;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 4px #2C609840;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.routine-card > img {
  border-radius: 20px 20px 0 0;
  width: 100%;
  aspect-ratio: 410 / 528;
  object-fit: cover;
  margin-bottom: -32px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.routine-icon-badge {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 23px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.routine-icon-badge svg {
  width: 91px;
  height: 91px;
  display: block;
}

.routine-card p {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #002e43;
}

@media (max-width: 900px) {
  .section-5-top {
    grid-template-columns: 1fr;
  }

  .routine-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .routine-card {
    width: 100%;
    height: 240px;
  }

  .routine-card p {
    font-size: 20px;
  }

  .routine-icon-badge {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .routine-icon-badge svg {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 600px) {
  .routine-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .routine-card {
    height: 220px;
  }

  .routine-card p {
    font-size: 18px;
  }

  .routine-icon-badge {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .routine-icon-badge svg {
    width: 48px;
    height: 48px;
  }
}

/* Section 6 heading (inlined into section-5-top) */
.section-6-title {
  font-family: 'Gilroy', sans-serif;
  font-size: 73px;
  color: #000;
  text-align: center;
  margin-bottom: 0;
}

/* Section 7: Conoce el frappé */
.section-7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.frappe-photo img {
  border-radius: 16px;
  width: 100%;
}

.frappe-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 41px;
  margin-top: 26px;
}

.conoce-protea-logo {
  width: 822px;
  max-width: 100%;
  margin-bottom: 16px;
}

.frappe-copy h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #000;
  margin-bottom: 16px;
}

.frappe-copy p {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: 27px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.frappe-badge {
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .section-7-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 8: FAQ */
.section-8 .container {
  max-width: 1728px;
}

.section-8-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.faq-list h2 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #2c6098;
  margin-bottom: 40px;
}

.faq-item {
  border: 1.5px solid #2c6098;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h4 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.faq-item p {
  font-weight: 500;
  font-size: 18px;
  color: #666;
}

.faq-photo {
  height: 100%;
}

.faq-photo img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .section-8-grid {
    grid-template-columns: 1fr;
  }

  .faq-photo {
    display: none;
  }
}

/* Legal disclaimer */
.legal-disclaimer {
  width: 100%;
  max-width: 1735px;
  margin: 0 auto;
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  color: #002e43;
  text-align: center;
}

@media (max-width: 600px) {
  .legal-disclaimer {
    font-size: 14px;
  }
}

/* Section 9: Final CTA */
.section-9-bg {
  background: #8db0c5 url('../images/optimized/anabel-frappe-photo.webp') center/cover no-repeat;
  min-height: 1080px;
  display: flex;
  align-items: center;
  padding: 92px 174px 70px 0;
}

.section-9-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  align-items: center;
  width: 100%;
}

.section-9-copy {
  text-align: center;
  width: 800px;
  max-width: 100%;
}

.section-9-heading-logo {
  max-width: 100%;
  width: 574.42px;
  height: auto;
  margin: 0 auto 35px;
  display: block;
}

.section-9-subhead {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #002e43;
  line-height: 1.2em;
  margin-bottom: 0;
}

.section-9-sumale {
  width: 788.19px;
  max-width: 100%;
  margin: 0 auto 32px;
}

.section-9-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.section-9-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 120px;
}

.umana-logo {
  width: 353px;
  height: auto;
  margin-right: 30px;
}

.section-9-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 690px;
  gap: 12px;
  flex-wrap: nowrap;
}

.section-9-collab {
  font-weight: 500;
  font-size: 24px;
  color: #002e43;
}

@media (max-width: 900px) {
  .section-9-bg {
    min-height: 0;
    background-position: right center;
    padding: 80px 24px;
  }

  .section-9-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .section-9-copy {
    width: 100%;
  }

  .section-9-heading-logo {
    width: 280px;
    max-width: 100%;
  }

  .section-9-subhead {
    font-size: 28px;
  }

  .section-9-sumale {
    width: calc(100% + 48px);
    max-width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
  }

  .section-9-stats,
  .section-9-badges {
    justify-content: center;
  }

  .section-9-footer {
    align-items: center;
    margin-top: 48px;
  }

  .section-9-badges {
    flex-direction: column;
    max-width: 100%;
  }

  .umana-logo {
    margin-right: 0;
  }

  .section-9-collab {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-9-bg {
    padding: 64px 16px;
  }

  .section-9-heading-logo {
    width: 220px;
  }

  .section-9-subhead {
    font-size: 22px;
  }

  .section-9-sumale {
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
}

/* ============================================================
   MEDIUM SCREENS (901px–1200px) — scale down desktop-fixed px
   ============================================================ */
@media (max-width: 1200px) {
  .section-2-title {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .drinks-grid {
    gap: 20px;
  }

  .drink-card h3 {
    font-size: 32px;
  }

  .drink-card p {
    font-size: 22px;
  }

  .stat-pill {
    font-size: 16px;
  }

  .protea-logo {
    height: 76px;
  }

  .section-3-heading {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .section-3-grid {
    gap: 32px;
  }

  .section-3-photo img {
    height: 380px;
  }

  .section-3-scoop h3 {
    font-size: 56px;
    margin-bottom: 20px;
  }

  .nutrition-card {
    padding: 24px;
  }

  .nutrition-header {
    font-size: 28px;
  }

  .nutrition-row {
    gap: 20px;
  }

  .nutrition-item strong {
    font-size: 28px;
  }

  .nutrition-item span {
    font-size: 15px;
  }

  .nutrition-footnote {
    font-size: 14px;
  }

  .section-4-inner {
    grid-template-columns: minmax(220px, 320px) 1fr;
  }

  .section-4-photo {
    padding: 24px 32px;
    min-height: 320px;
  }

  .section-4-photo-copy h2 {
    font-size: 32px;
    white-space: normal;
  }

  .section-4-photo-copy p {
    font-size: 18px;
  }

  .section-4-details {
    padding: 24px 32px;
    gap: 24px;
  }

  .ingredients-block .eyebrow {
    font-size: 16px;
  }

  .ingredients-label,
  .ingredient span {
    font-size: 15px;
  }

  .ingredient img {
    width: 52px;
    height: 52px;
  }

  .benefits-row {
    gap: 20px;
    padding-left: 20px;
  }

  .benefit-icon-circle {
    width: 48px;
    height: 48px;
  }

  .benefit-icon-circle svg {
    width: 24px;
    height: 24px;
  }

  .benefit-label,
  .benefit-card p {
    font-size: 13px;
  }

  .section-5-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .section-6-inline img {
    width: 100%;
  }

  .section-5-title {
    font-size: 56px;
  }

  .mayorsaciedad-block img {
    max-width: 260px;
  }

  .mayorsaciedad-block h3 {
    font-size: 32px;
  }

  .routine-grid {
    gap: 16px;
  }

  .routine-card {
    width: 100%;
    height: 260px;
  }

  .routine-card p {
    font-size: 22px;
  }

  .routine-icon-badge {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .routine-icon-badge svg {
    width: 64px;
    height: 64px;
  }

  .section-6-title {
    font-size: 32px;
  }

  .section-7-grid {
    gap: 32px;
  }

  .conoce-protea-logo {
    width: 320px;
  }

  .frappe-copy h3 {
    font-size: 22px;
  }

  .frappe-copy p {
    font-size: 20px;
  }

  .section-8-grid {
    gap: 32px;
  }

  .faq-list h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-item h4 {
    font-size: 22px;
  }

  .faq-item p {
    font-size: 16px;
  }

  .section-9-grid {
    gap: 32px;
  }

  .section-9-bg {
    min-height: 0;
    padding: 56px 64px 48px;
  }

  .section-9-heading-logo {
    width: 420px;
  }

  .section-9-subhead {
    font-size: 28px;
  }

  .section-9-sumale {
    width: 560px;
  }

  .section-9-footer {
    margin-top: 64px;
  }

  .section-9-badges {
    max-width: 500px;
  }

  .umana-logo {
    width: 220px;
    margin-right: 16px;
  }

  .section-9-collab {
    font-size: 16px;
  }
}
