/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Brand Palette */
  --first-color: #8C3A3A; /* Primary Color */
  --first-color-second: #5C2626; /* Darker Primary */
  --first-color-alt: #702E2E; /* Primary Alt */
  --secondary-color: #F2A516; /* Secondary Color */
  --title-color: #1E293B; /* Dark Title */
  --text-color: #2D3748; /* Text Color */
  --text-color-light: #64748B;
  --input-color: #F8FAFC;
  --body-bg-gradient: linear-gradient(135deg, #E6F4FE 0%, #BEE3F8 100%);
  --body-color: #E6F4FE;
  --container-color: #FFFFFF;
  --white-color: #FFFFFF;
  --brand-sky-blue: #E6F4FE;
  --brand-ocean-blue: #BEE3F8;
  --brand-gold: #F2A516;
  --scroll-bar-color: #CBD5E0;
  --scroll-thumb-color: #8C3A3A;

  /*========== Font and typography (Increased for Desktop & Mobile) ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 3.25rem;
  --h1-font-size: 2.15rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.35rem;
  --normal-font-size: 1.15rem;
  --small-font-size: 1rem;
  --smaller-font-size: 0.9rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1.25rem;
  --mb-1-25: 1.5rem;
  --mb-1-5: 1.75rem;
  --mb-2: 2.25rem;
  --mb-2-5: 2.75rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 2.35rem;
    --h3-font-size: 1.6rem;
    --normal-font-size: 1.25rem;
    --small-font-size: 1.1rem;
    --smaller-font-size: 1rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --container-color: hsl(var(--hue-color), 29%, 16%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 88px 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: linear-gradient(135deg, #E6F4FE 0%, #BEE3F8 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text-color);
}

sup {
  font-size: 0.6em;
  line-height: 0;
  vertical-align: super;
  position: relative;
  top: -0.35em;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title,
.discover__science-title,
.literature__section-title,
.cosm-balanced__title,
.contact__info-title,
.contact__pane-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--mb-2);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo, .nav__toggle {
  color: var(--white-color);
}

.nav__logo {
  font-weight: var(--font-semi-bold);
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home {
  position: relative;
  background: #8C3A3A;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.home__container.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.home__data {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2.5rem;
  background: #8C3A3A;
  color: #ffffff;
}

/* Logo Container */
.home__brand-logo-wrapper {
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 6px 20px rgba(242, 165, 22, 0.4);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #F2A516;
  backdrop-filter: blur(12px);
}

.home__brand-logo-wrapper img {
  height: 120px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.12));
}

/* Badge pill */
.home__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  background: rgba(242, 165, 22, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(242, 165, 22, 0.45);
  color: #F2A516;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(242, 165, 22, 0.15);
  text-align: center;
}

/* Hero headline — sized to fit on exactly 2 lines on desktop */
.home__headline {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* Tagline */
.home__tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* Primary CTA */
/* Primary CTA */
.home__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #8C3A3A 0%, #612525 100%);
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(140, 58, 58, 0.35);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home__cta-primary:hover {
  background: linear-gradient(135deg, #A54545 0%, #8C3A3A 100%);
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 40px rgba(140, 58, 58, 0.45);
}

.home__cta-primary i {
  transition: transform 0.3s ease;
}

.home__cta-primary:hover i {
  transform: translateX(4px);
}

/* Hero Image Column styling - full bleed wrapper, contain image on mobile */
.home__img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background-color: #061113;
}

.home__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s ease;
}

.home__img:hover {
  transform: scale(1.03);
}

/* Animated scroll hint at bottom */
.home__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8C3A3A 0%, #612525 100%);
  color: #ffffff !important;
  padding: 1.15rem 2.5rem;
  font-weight: var(--font-semi-bold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(140, 58, 58, 0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover {
  background: linear-gradient(135deg, #A54545 0%, #8C3A3A 100%);
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 35px rgba(140, 58, 58, 0.4);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  width: 180px;
}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}

/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 200px;
  overflow: var(--img-hidden);
}

.discover__data {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
}

.discover__title, 
.discover__description {
  color: var(--white-color);
}

.discover__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.discover__description {
  display: block;
  font-size: var(--smaller-font-size);
}

.discover__img {
  transition: var(--img-transition);
}

.discover__img:hover {
  transform: var(--img-scale);
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one, 
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover, 
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

/*=============== PLACES ===============*/
.place__card, .place__img {
  height: 230px;
}

.place__container {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
}

.place__card {
  position: relative;
  overflow: var(--img-hidden);
}

.place__card:hover .place__img {
  transform: var(--img-scale);
}

.place__img {
  transition: var(--img-transition);
}

.place__content, .place__title {
  color: var(--white-color);
}

.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1rem;
}

.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.place__rating-icon {
  font-size: .75rem;
  margin-right: var(--mb-0-25);
}

.place__rating-number {
  font-size: var(--small-font-size);
}

.place__subtitle, .place__price {
  display: block;
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}

/*=============== SUBSCRIBE ===============*/
.subscribe__bg {
  background-color: transparent;
  padding: 4rem 0;
}

.subscribe__container {
  background-color: var(--first-color-second);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 0 !important;
}

.contact__split {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 968px) {
  .contact__split {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

.contact__info-pane {
  background-color: var(--first-color-alt);
  padding: 3.5rem 2.5rem;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact__form-pane {
  padding: 3.5rem 2.5rem;
  background-color: var(--container-color);
}

.contact__info-title {
  font-size: 1.75rem;
  color: var(--white-color);
  margin-bottom: 1rem;
  font-weight: var(--font-semi-bold);
}

.contact__info-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  row-gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.contact__detail-item {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
}

.contact__detail-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white-color);
  flex-shrink: 0;
}

.contact__detail-text {
  font-size: 0.9rem;
  color: var(--white-color);
}

.contact__detail-text strong {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact__info-social {
  display: flex;
  column-gap: 1.5rem;
}

.contact__info-social-link {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.contact__info-social-link:hover {
  color: var(--white-color);
  transform: translateY(-3px);
}

.contact__pane-title {
  font-size: 1.75rem;
  color: var(--title-color);
  margin-bottom: 1.5rem;
  font-weight: var(--font-semi-bold);
}

/*=============== CONTACT FORM ===============*/
.contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

@media screen and (min-width: 568px) {
  .contact__form {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__full-width {
    grid-column: span 2;
  }
}

.contact__input, 
.contact__textarea {
  width: 100%;
  background-color: var(--input-color);
  color: var(--text-color);
  border: 1px solid rgba(0, 120, 150, 0.15);
  border-radius: 8px;
  padding: 0.9rem 1.25rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: all 0.3s ease;
  outline: none;
}

body.dark-theme .contact__input,
body.dark-theme .contact__textarea {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: var(--input-color);
}

.contact__input:focus, 
.contact__textarea:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px rgba(0, 120, 150, 0.15);
  background-color: var(--white-color);
}

body.dark-theme .contact__input:focus,
body.dark-theme .contact__textarea:focus {
  border-color: var(--title-color);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
  background-color: var(--input-color);
}

.contact__button {
  grid-column: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

.contact__button:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px);
}

.contact__button:active {
  transform: translateY(0);
}

/*=============== SPONSORS ===============*/
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 2.5rem;
}

.sponsor__content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.sponsor__img {
  max-width: 100px;
  height: auto;
  filter: grayscale(1) opacity(0.6);
  transition: all 0.3s ease;
}

.sponsor__img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

body.dark-theme .sponsor__img {
  filter: invert(1) grayscale(1) opacity(0.6);
}

body.dark-theme .sponsor__img:hover {
  filter: invert(1) grayscale(0) opacity(1);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: #8C3A3A;
  color: var(--white-color);
  padding: 5rem 0 2.5rem;
}

.footer__container {
  row-gap: 3.5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem 2rem;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__title {
  font-size: 1.25rem;
  color: var(--white-color);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: var(--font-semi-bold);
}

.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--white-color);
  opacity: 0.3;
}

.footer__description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__subtitle {
  font-size: 1rem;
  color: var(--white-color);
  margin-bottom: 1.25rem;
  font-weight: var(--font-semi-bold);
}

.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
}

.footer__link i {
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(-4px);
}

.footer__link:hover {
  color: var(--white-color);
  padding-left: 6px;
}

.footer__link:hover i {
  opacity: 1;
  transform: translateX(0);
}

.footer__rights {
  grid-column: 1 / -1;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.footer__copy {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
}

.footer__terms-link {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer__terms-link:hover {
  color: var(--white-color);
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .home {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
  }
  .home__container.container {
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .home__data {
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 3rem 4rem max(2rem, calc((100vw - 960px) / 2));
    text-align: left;
  }
  .home__img-wrapper {
    height: 100%;
    min-height: 100vh;
  }
  .home__img {
    object-fit: cover;
  }
  .about__container {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 0;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container.container {
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    max-width: 100%;
    width: 100%;
  }
  .home__data {
    padding-left: max(2rem, calc((100vw - 1100px) / 2));
    padding-right: 3rem;
  }
  .home__img {
    max-width: 100%;
  }
  .about__leaflet-container {
    max-width: 100%;
    margin: 0 auto;
  }
  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
    gap: 3rem 2rem;
  }
  .place__card, .place__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
  .home__data {
    padding-left: max(2rem, calc((100vw - 1200px) / 2));
    padding-right: 3rem;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container {
    min-height: 600px;
  }
}

/*=============== FAQ ACCORDION ===============*/
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 0 1rem;
}

.faq__card {
  background-color: var(--container-color);
  border: 1px solid rgba(0, 120, 150, 0.08);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

body.dark-theme .faq__card {
  border-color: rgba(255, 255, 255, 0.05);
}

.faq__question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq__title-wrapper {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}

.faq__question-icon {
  font-size: 1.25rem;
  color: var(--first-color);
  flex-shrink: 0;
}

body.dark-theme .faq__question-icon {
  color: var(--title-color);
}

.faq__question-text {
  font-size: var(--h3-font-size);
  font-weight: 700;
  color: var(--title-color);
  font-family: var(--body-font);
  transition: color 0.3s ease;
}

.faq__toggle-icon {
  font-size: 1.4rem;
  color: var(--text-color-light);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
}

.faq__answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq__answer-text {
  padding: 0 1.5rem 1.5rem 3.5rem;
  color: var(--text-color);
  line-height: 1.65;
  font-size: var(--normal-font-size);
}

/* Active State */
.faq__card--active {
  border-color: var(--first-color);
  box-shadow: 0 10px 20px rgba(0, 120, 150, 0.06);
}

body.dark-theme .faq__card--active {
  border-color: var(--title-color);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.02);
}

.faq__card--active .faq__question-text {
  color: var(--first-color);
}

body.dark-theme .faq__card--active .faq__question-text {
  color: var(--title-color);
}

.faq__card--active .faq__toggle-icon {
  transform: rotate(180deg);
  color: var(--first-color);
}

body.dark-theme .faq__card--active .faq__toggle-icon {
  color: var(--title-color);
}

.faq__card--active .faq__answer-wrapper {
  max-height: 250px;
  opacity: 1;
}

/*=============== NEWS & CAMPAIGNS ===============*/
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.news__card {
  background-color: var(--body-color);
  border: 1px solid rgba(0, 120, 150, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

body.dark-theme .news__card {
  background-color: var(--container-color);
  border-color: rgba(255, 255, 255, 0.05);
}

.news__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 120, 150, 0.08);
  border-color: var(--first-color);
}

body.dark-theme .news__card:hover {
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.03);
  border-color: var(--title-color);
}

.news__img-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news__card:hover .news__img {
  transform: scale(1.08);
}

.news__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

body.dark-theme .news__badge {
  background-color: var(--first-color-alt);
}

.news__badge--event {
  background-color: #e28743;
}

.news__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news__meta {
  font-size: 0.95rem;
  color: var(--text-color-light);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  font-weight: var(--font-medium);
}

.news__title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 0.85rem;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.news__card:hover .news__title {
  color: var(--first-color);
}

body.dark-theme .news__card:hover .news__title {
  color: var(--title-color);
}

.news__description {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news__read-more {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--first-color);
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  transition: color 0.3s ease;
}

body.dark-theme .news__read-more {
  color: var(--title-color);
}

.news__read-more i {
  transition: transform 0.3s ease;
}

.news__card:hover .news__read-more i {
  transform: translateX(4px);
}

/*==================== HOW TO USE (GLOW TIMELINE) ====================*/
.use-schedule__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
  padding: 0 1.5rem;
}

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

.use-schedule__card {
  background: var(--container-color);
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 120, 150, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



.use-schedule__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 120, 150, 0.08);
}

.use-schedule__icon-wrapper {
  background: rgba(0, 120, 150, 0.08);
  color: var(--first-color);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 120, 150, 0.08);
}

.use-schedule__card--maintenance .use-schedule__icon-wrapper {
  background: rgba(0, 120, 150, 0.08);
  color: var(--first-color);
  box-shadow: 0 4px 10px rgba(0, 120, 150, 0.08);
}

.use-schedule__title {
  font-size: var(--h3-font-size);
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.use-schedule__text {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/* Timeline/Steps train styling */
.use-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

@media (min-width: 576px) {
  .use-steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .use-steps__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Pulse Glowing nodes */
.use-step__card {
  background: var(--container-color);
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
  border: 1px solid rgba(0, 120, 150, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-step__card:hover {
  transform: translateY(-8px);
  border-color: var(--first-color);
  box-shadow: 0 20px 40px rgba(0, 120, 150, 0.12);
}

.use-step__number-bubble {
  position: absolute;
  top: -16px;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 3px solid var(--body-color);
  box-shadow: 0 4px 10px rgba(0, 120, 150, 0.25);
}

.use-step__icon-wrapper {
  background: rgba(0, 120, 150, 0.05);
  color: var(--first-color);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 0 rgba(0, 120, 150, 0.15);
  animation: pulse-glow-first 3s infinite;
}

@keyframes pulse-glow-first {
  0% { box-shadow: 0 0 0 0 rgba(0, 120, 150, 0.25); }
  70% { box-shadow: 0 0 0 12px rgba(0, 120, 150, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 120, 150, 0); }
}

.use-step__card:hover .use-step__icon-wrapper {
  background: var(--first-color);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  animation: none;
  box-shadow: 0 10px 25px rgba(0, 120, 150, 0.3);
}

.use-step__text {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: var(--font-medium);
}


/*==================== MYTHS VS FACTS (VS BATTLE CAPSULES) ====================*/
.myths__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 950px;
  margin: 3rem auto 0 auto;
  padding: 0 1.5rem;
}

/*=============== COSMETICALLY BALANCED ===============*/
.cosm-balanced {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.75rem;
  margin-top: 4rem;
  padding: 3rem 2.5rem;
  background: #FFFFFF;
  border-radius: 28px;
  border: 1.5px solid rgba(140, 58, 58, 0.18);
  box-shadow: 0 20px 45px rgba(140, 58, 58, 0.12), 0 6px 18px rgba(0, 0, 0, 0.04);
}

.cosm-balanced__left {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.cosm-balanced__title {
  font-size: var(--h2-font-size);
  font-weight: 800;
  color: var(--title-color);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  text-align: center;
}

.cosm-balanced__sub {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  opacity: 0.85;
  text-align: center;
}

.cosm-balanced__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.cosm-balanced__list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.85rem;
  font-size: var(--normal-font-size);
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
}

.cosm-balanced__list li i {
  font-size: 1.35rem;
  color: var(--first-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/*=============== MANUFACTURED BY STRIP ===============*/
.mfr-strip {
  width: 100%;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color, rgba(0,0,0,0.08));
  text-align: center;
}

.mfr-strip__label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--title-color);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.mfr-strip__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
}

.mfr-strip__img {
  width: 100%;
  height: 220px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.95;
  transition: all 0.3s ease;
  background: #ffffff;
  padding: 1.25rem 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.mfr-strip__img:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

.myth-fact__card {
  background: #FFFFFF;
  border-radius: 28px;
  border: 1.5px solid rgba(140, 58, 58, 0.18);
  box-shadow: 0 20px 45px rgba(140, 58, 58, 0.12), 0 6px 18px rgba(0, 0, 0, 0.04);
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .myth-fact__card {
    grid-template-columns: 1fr 1fr;
  }
}

.myth-fact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(140, 58, 58, 0.18);
  border-color: #8C3A3A;
}

.myth-fact__vs {
  display: none;
}

@media (min-width: 768px) {
  .myth-fact__vs {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: 4px solid var(--body-color);
    box-shadow: 0 4px 10px rgba(0, 120, 150, 0.25);
    z-index: 10;
  }
}

.myth__side, .fact__side {
  padding: 2.25rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.myth__side {
  background: rgba(239, 83, 80, 0.015);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: 1px dashed rgba(239, 83, 80, 0.15);
}

@media (min-width: 768px) {
  .myth__side {
    border-top-right-radius: 0;
    border-bottom-left-radius: 24px;
    border-bottom: none;
    border-right: 1px dashed rgba(0, 120, 150, 0.1);
    padding-right: 2.5rem;
  }
}

.fact__side {
  background: rgba(76, 175, 80, 0.015);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

@media (min-width: 768px) {
  .fact__side {
    border-bottom-left-radius: 0;
    border-top-right-radius: 24px;
    padding-left: 2.5rem;
  }
}

.myth__icon {
  color: #ef5350;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: rgba(239, 83, 80, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact__icon {
  color: #4caf50;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: rgba(76, 175, 80, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.myth__label, .fact__label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.myth__label {
  background: rgba(239, 83, 80, 0.08);
  color: #ef5350;
}

.fact__label {
  background: rgba(76, 175, 80, 0.08);
  color: #4caf50;
}

.myth__text {
  font-size: var(--normal-font-size);
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.6;
}

.fact__text {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/*==================== ABOUT DANDRUFF (TABS & 3D MOCKUP) ====================*/
.about__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: rgba(0, 120, 150, 0.05);
  padding: 0.35rem;
  border-radius: 50px;
  max-width: fit-content;
}

body.dark-theme .about__tabs {
  background: rgba(255, 255, 255, 0.04);
}

.about__tab-btn {
  background: transparent;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-color-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.about__tab-btn:hover {
  color: var(--title-color);
}

.about__tab-btn--active {
  background: var(--first-color);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 120, 150, 0.25);
}

.about__tab-content {
  animation: tabFadeIn 0.5s ease forwards;
  min-height: 280px;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

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

.about__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

.about__list-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about__list-icon--symptom {
  color: var(--first-color);
}

.about__list-icon--cause {
  color: #e28743;
}

.about__summary-box {
  background: rgba(0, 120, 150, 0.04);
  border-left: 4px solid var(--first-color);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-top: 1.5rem;
}

body.dark-theme .about__summary-box {
  background: rgba(255, 255, 255, 0.02);
}

.about__summary-text {
  font-size: var(--normal-font-size);
  font-style: italic;
  color: var(--text-color);
  line-height: 1.6;
}

/* Leaflet Image - Full Width & Fixed */
.about__leaflet-container {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 120, 150, 0.1);
  background: #fff;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.dark-theme .about__leaflet-container {
  background: #111e29;
  border-color: rgba(255,255,255,0.06);
}

.about__leaflet-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 120, 150, 0.15);
}

.about__leaflet-img {
  width: 100%;
  display: block;
  height: auto;
  max-height: none;
  object-fit: cover;
}

/*==================== HOW IT WORKS REDESIGN ====================*/
.discover__grid-layout {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  .discover__grid-layout {
    flex-direction: column;
  }
}

.discover__science-card {
  padding-right: 0;
}

@media (min-width: 992px) {
  .discover__science-card {
    padding-right: 2rem;
  }
}

.discover__tagline-badge {
  display: inline-block;
  font-size: var(--small-font-size);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--first-color);
  background: rgba(0, 120, 150, 0.08);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.discover__science-title {
  font-size: var(--h2-font-size);
  font-weight: 800;
  color: var(--title-color);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.discover__science-subtitle {
  display: block;
  font-size: var(--h3-font-size);
  font-weight: 600;
  color: var(--text-color);
  margin-top: 0.5rem;
}

.discover__science-description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.discover__benefits-capsules {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  width: 100%;
}

.discover__benefit-tag {
  background: rgba(140, 58, 58, 0.05);
  border: 1.5px solid rgba(140, 58, 58, 0.15);
  padding: 0.85rem 1.5rem;
  border-radius: 16px;
  font-size: var(--normal-font-size);
  font-weight: 600;
  color: var(--title-color);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(140, 58, 58, 0.04);
}

.discover__benefit-tag:hover {
  background: var(--first-color);
  color: #fff;
  border-color: var(--first-color);
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(140, 58, 58, 0.2);
}

.discover__benefit-tag i {
  color: var(--first-color);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.discover__benefit-tag:hover i {
  color: #fff !important;
}

/* Features 2x2 Grid */
.discover__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.discover__feature-card {
  background: var(--container-color);
  border: 1px solid rgba(0, 120, 150, 0.08);
  padding: 2rem 1.75rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.discover__feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 120, 150, 0.08);
  border-color: rgba(0, 120, 150, 0.2);
}

.discover__feature-icon-wrapper {
  background: rgba(0, 120, 150, 0.06);
  color: var(--first-color);
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.discover__feature-card:hover .discover__feature-icon-wrapper {
  background: var(--first-color);
  color: #fff;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 20px rgba(0, 120, 150, 0.25);
}

.discover__feature-title {
  font-size: var(--h3-font-size);
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.discover__feature-text {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/*==================== MEDICATED LITERATURE REDESIGN ====================*/
.literature__showcase {
  width: 100%;
  margin-top: 3rem;
  padding: 0 1rem;
}

.literature__section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: var(--h2-font-size);
  font-weight: 800;
  color: var(--title-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.literature__flex-deck {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .literature__flex-deck {
    flex-direction: row;
    align-items: stretch;
    height: 480px;
  }
}

.literature__card {
  background: var(--container-color);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 120, 150, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

@media (min-width: 768px) {
  .literature__card {
    flex: 1;
  }
  
  .literature__card:hover {
    flex: 1.4;
    border-color: rgba(0, 120, 150, 0.25);
    box-shadow: 0 20px 40px rgba(0, 120, 150, 0.1);
  }
}

.literature__img-container {
  flex: 1;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  transition: background 0.4s ease;
}

body.dark-theme .literature__img-container {
  background: #ffffff;
}

.literature__img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.literature__card:hover .literature__img {
  transform: scale(1.05) translateY(-5px);
}

.literature__overlay-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0, 120, 150, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.literature__card:hover .literature__overlay-zoom {
  opacity: 1;
}

.literature__zoom-btn {
  background: #fff;
  color: var(--first-color);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.literature__card:hover .literature__zoom-btn {
  transform: scale(1);
}

.literature__info {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(0, 120, 150, 0.08);
  background: var(--container-color);
  transition: background 0.4s ease;
  z-index: 10;
}

.literature__title {
  font-size: var(--h3-font-size);
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.literature__card:hover .literature__title {
  color: var(--first-color);
}

.literature__description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.5;
}

/* Lightbox Modal Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*=============== ROOT CAUSE & CONTACT INFO CARDS ===============*/
.root-cause__card,
.contact-info__card {
  background: #FFFFFF;
  border: 1.5px solid rgba(140, 58, 58, 0.18);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 45px rgba(140, 58, 58, 0.12), 0 6px 18px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/*=============== WHY CHOOSE SECTION ===============*/
.why-choose {
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.why-choose__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.why-choose__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--first-color);
  background: rgba(140, 58, 58, 0.08);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(140, 58, 58, 0.15);
}

.why-choose__badge i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.why-choose__title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  font-weight: 800;
  color: var(--title-color);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.why-choose__subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.7;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-choose__card {
  background: var(--container-color);
  border: 1px solid rgba(140, 58, 58, 0.12);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-choose__card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 165, 22, 0.45);
  box-shadow: 0 20px 45px rgba(140, 58, 58, 0.12), 0 8px 20px rgba(0, 0, 0, 0.04);
}

.why-choose__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.why-choose__icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(140, 58, 58, 0.1) 0%, rgba(242, 165, 22, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--first-color);
  font-size: 1.6rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.why-choose__card:hover .why-choose__icon-box {
  background: linear-gradient(135deg, var(--first-color) 0%, #a84747 100%);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(140, 58, 58, 0.3);
}

.why-choose__card-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.why-choose__check-icon {
  color: #10B981;
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Dark Theme Adjustments for Why Choose */
body.dark-theme .why-choose__card {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .why-choose__card:hover {
  background: rgba(30, 41, 59, 0.92);
  border-color: rgba(242, 165, 22, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

body.dark-theme .why-choose__badge {
  background: rgba(140, 58, 58, 0.25);
  border-color: rgba(140, 58, 58, 0.4);
  color: #F87171;
}

body.dark-theme .why-choose__icon-box {
  background: rgba(140, 58, 58, 0.25);
  color: #FCA5A5;
}

body.dark-theme .why-choose__highlight-text {
  color: #F87171;
}

/* Responsive Breakpoints for Why Choose */
@media screen and (max-width: 992px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 640px) {
  .why-choose {
    padding: 3rem 0;
  }

  .why-choose__header {
    margin-bottom: 2.25rem;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-choose__card {
    padding: 1.5rem 1.25rem;
  }
}


/*=============== MOBILE RESPONSIVENESS FIXES ===============*/
@media screen and (max-width: 767px) {

  /* ===== GLOBAL MOBILE BASE ===== */
  body {
    margin: 60px 0 0 0;
  }

  .section {
    padding: 3.5rem 0 2rem;
  }

  .section__title {
    font-size: 1.45rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  /* ===== 1. HOME / HERO SECTION — MOBILE REDESIGN ===== */
  /*
   * New mobile layout:
   * - Product image fills top 55% of viewport
   * - Content card rises from the bottom (center-aligned)
   * - Headline is large and punchy
   * - Trust stat strip at bottom
   */

  .home {
    min-height: 100vh;
    height: auto;
    align-items: stretch;
    background: #061113;
    padding: 0;
  }

  .home__container.container {
    grid-template-columns: 1fr;
    row-gap: 0;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
  }

  .home__data {
    align-items: center;
    padding: 7rem 1.5rem 3rem;
  }

  .home__img-wrapper {
    height: 380px;
  }

  .home__badge {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.1rem;
    background: rgba(0, 160, 190, 0.18);
    border-color: rgba(0, 200, 230, 0.3);
    color: rgba(180, 240, 255, 0.95);
    align-self: center;
  }

  .home__headline {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 100%;
    color: #ffffff;
    text-align: center;
  }

  /* Scroll hint position */
  .home__scroll-hint {
    bottom: 1.75rem;
    font-size: 1.25rem;
  }

  /* ===== 2. ABOUT DANDRUFF ===== */
  .about {
    padding-bottom: 3rem;
  }

  .about__container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .about__data {
    text-align: left;
  }

  .about__title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }

  /* Tabs — wrap into a 3-pill row */
  .about__tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
    border-radius: 20px;
    padding: 0.4rem;
    gap: 0.35rem;
    max-width: 100%;
  }

  .about__tab-btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
  }

  .about__tab-content {
    min-height: auto;
  }

  .about__description {
    font-size: var(--normal-font-size);
    line-height: 1.65;
  }

  /* About list — single column on mobile */
  .about__list {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .about__list-item {
    font-size: var(--normal-font-size);
  }

  .about__summary-text {
    font-size: var(--normal-font-size);
  }

  /* Leaflet image — full width, no 3D tilt */
  .about__img {
    padding-top: 0;
  }

  .about__leaflet-container {
    width: 100%;
    max-width: 100%;
    transform: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 12px;
  }

  .about__leaflet-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
  }

  /* ===== 3. HOW IT WORKS (Discover) ===== */
  .discover {
    padding-bottom: 2rem;
  }

  .discover__grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .discover__science-card {
    padding-right: 0;
  }

  .discover__tagline-badge {
    font-size: var(--small-font-size);
  }

  .discover__science-title {
    font-size: var(--h2-font-size);
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .discover__science-subtitle {
    font-size: var(--h3-font-size);
  }

  .discover__science-description {
    font-size: var(--normal-font-size);
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .discover__benefit-tag {
    font-size: var(--normal-font-size);
    padding: 0.5rem 1rem;
  }

  /* Features grid — single column */
  .discover__features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .discover__feature-card {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .discover__feature-title {
    font-size: var(--h3-font-size);
  }

  .discover__feature-text {
    font-size: var(--normal-font-size);
    line-height: 1.6;
  }

  .discover__feature-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* ===== 4. EXPERIENCE / STATS ===== */
  .experience__stats {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .experience__number {
    font-size: 2.25rem !important;
  }

  .experience__description {
    font-size: var(--normal-font-size) !important;
  }

  /* Literature section */
  .literature__showcase {
    padding: 0 0.5rem;
    margin-top: 2rem;
  }

  .literature__section-title {
    font-size: var(--h2-font-size);
    gap: 6px;
    letter-spacing: 0.5px;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .literature__flex-deck {
    flex-direction: column;
    gap: 1.25rem;
    height: auto !important;
  }

  .literature__card {
    border-radius: 16px;
  }

  .literature__img {
    max-height: 220px;
  }

  .literature__title {
    font-size: var(--h3-font-size);
  }

  .literature__description {
    font-size: var(--normal-font-size);
  }

  /* ===== 5. HOW TO USE SECTION ===== */
  .use-schedule__container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
    margin-bottom: 2.5rem;
  }

  .use-schedule__card {
    padding: 1.35rem 1.25rem;
    border-radius: 14px;
    gap: 1rem;
  }

  .use-schedule__title {
    font-size: var(--h3-font-size);
  }

  .use-schedule__text {
    font-size: var(--normal-font-size);
    line-height: 1.55;
  }

  .use-schedule__icon-wrapper {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }

  /* Interactive Stepper — fix icon/label overlap on mobile */
  .interactive-stepper {
    padding: 0 0.75rem !important;
  }

  .stepper__track-wrapper {
    margin-bottom: 3.5rem !important;
    padding-bottom: 1.5rem !important;
    overflow: visible !important;
  }

  /* Shrink step circle buttons so all 5 fit without crowding */
  .stepper__track-wrapper button {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.95rem !important;
    border-width: 2px !important;
  }

  /* Reposition the STEP label further below the smaller circles */
  .stepper__track-wrapper button span {
    font-size: 0.55rem !important;
    letter-spacing: 0.3px !important;
    bottom: -20px !important;
    white-space: nowrap !important;
  }

  /* Step card panel */
  .stepper__card-panel {
    padding: 2rem 1.25rem !important;
    border-radius: 18px !important;
    min-height: auto !important;
  }

  .stepper__card-panel h3 {
    font-size: var(--h3-font-size) !important;
    letter-spacing: 0.5px !important;
  }

  .stepper__card-panel p {
    font-size: var(--normal-font-size) !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem !important;
  }

  /* Cosmetically Balanced block */
  .cosm-balanced {
    flex-direction: column;
    padding: 1.75rem 1.25rem;
    gap: 1.5rem;
    margin-top: 2.5rem;
    border-radius: 16px;
  }

  .cosm-balanced__left {
    max-width: 100%;
  }

  .cosm-balanced__title {
    font-size: var(--h2-font-size);
  }

  .cosm-balanced__sub {
    font-size: var(--normal-font-size);
  }

  .cosm-balanced__list li {
    font-size: var(--normal-font-size);
  }

  /* Manufactured By strip */
  .mfr-strip {
    margin-top: 2.5rem;
    padding-top: 2rem;
    width: 100%;
  }

  .mfr-strip__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
  }

  .mfr-strip__img {
    height: 160px;
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1.25rem;
  }

  /* ===== 6. MYTHS VS FACTS ===== */
  .myths__grid {
    padding: 0 1rem;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .myth-fact__card {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .myth-fact__vs {
    display: none !important;
  }

  .myth__side {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 1.5rem;
    border-right: none;
    border-bottom: 1px dashed rgba(239, 83, 80, 0.2);
  }

  .fact__side {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 1.5rem;
  }

  .myth__text {
    font-size: var(--normal-font-size);
    line-height: 1.55;
  }

  .fact__text {
    font-size: var(--normal-font-size);
    line-height: 1.55;
  }

  .myth__label,
  .fact__label {
    font-size: 0.75rem;
  }

  /* ===== 7. FAQ SECTION ===== */
  .faq__list {
    padding: 0 1rem;
    row-gap: 0.85rem;
  }

  .faq__card {
    border-radius: 10px;
  }

  .faq__question-btn {
    padding: 1.1rem 1.25rem;
  }

  .faq__question-text {
    font-size: var(--h3-font-size);
    line-height: 1.45;
  }

  .faq__answer-text {
    font-size: var(--normal-font-size);
    line-height: 1.65;
    padding: 0 1.25rem 1.25rem 3rem;
  }

  .faq__question-icon {
    font-size: 1.2rem;
  }

  /* ===== 8. NEWS & CAMPAIGNS ===== */
  .news__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1rem;
  }

  .news__card {
    border-radius: 14px;
  }

  .news__img-wrapper {
    height: 180px;
  }

  .news__content {
    padding: 1.25rem;
  }

  .news__title {
    font-size: var(--h3-font-size);
    line-height: 1.45;
  }

  .news__description {
    font-size: var(--normal-font-size);
    line-height: 1.6;
  }

  .news__read-more {
    font-size: var(--normal-font-size);
  }

  .news__meta {
    font-size: var(--small-font-size);
  }

  /* ===== 9. CONTACT & ROOT CAUSE SECTIONS ===== */
  .root-cause,
  .contact-info {
    padding: 2.5rem 0 !important;
  }

  .root-cause__container,
  .contact-info__container {
    padding: 0 1rem !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .root-cause__card,
  .contact-info__card {
    padding: 2.25rem 1.25rem !important;
    border-radius: 20px !important;
  }

  .subscribe__bg {
    padding: 2rem 0;
  }

  .subscribe__container {
    border-radius: 14px;
    margin: 0 1rem;
  }

  .contact__split {
    grid-template-columns: 1fr;
  }

  .contact__info-pane {
    padding: 2rem 1.5rem;
  }

  .contact__info-title {
    font-size: var(--h2-font-size);
  }

  .contact__info-description {
    font-size: var(--normal-font-size);
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .contact__details {
    row-gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .contact__detail-text {
    font-size: var(--normal-font-size);
  }

  .contact__detail-text strong {
    font-size: var(--small-font-size);
  }

  .contact__form-pane {
    padding: 2rem 1.5rem;
  }

  .contact__pane-title {
    font-size: var(--h2-font-size);
    margin-bottom: 1.25rem;
  }

  .contact__form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact__full-width {
    grid-column: span 1;
  }

  .contact__input,
  .contact__textarea {
    font-size: var(--normal-font-size);
    padding: 0.85rem 1rem;
  }

  .contact__button {
    font-size: var(--normal-font-size);
    padding: 0.95rem;
  }

  /* ===== 10. FOOTER ===== */
  .footer {
    padding: 3.5rem 0 2rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }

  .footer__title {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
  }

  .footer__description {
    font-size: var(--normal-font-size);
    line-height: 1.65;
  }

  .footer__link {
    font-size: var(--normal-font-size);
  }

  .footer__links {
    row-gap: 0.65rem;
  }

  .footer__rights {
    margin-top: 2rem;
    padding-top: 1.5rem;
    flex-direction: column;
    text-align: center;
    row-gap: 0.75rem;
  }

  .footer__copy {
    font-size: var(--small-font-size);
  }

  /* ===== SCROLL UP BUTTON ===== */
  .scrollup {
    right: 0.75rem;
  }

  .show-scroll {
    bottom: 4rem;
  }
}

/* Extra-small devices (phones ≤ 400px) */
@media screen and (max-width: 400px) {
  /* Hero on very small phones */
  .home__headline {
    font-size: clamp(2.2rem, 12vw, 2.8rem);
    letter-spacing: -1.2px;
  }

  .home__tagline {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .home__cta-primary {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .home__inner {
    padding-bottom: 4rem;
  }

  .about__tab-btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.6rem;
  }

  .section__title {
    font-size: 1.3rem;
  }

  .discover__science-title {
    font-size: 1.35rem;
  }

  .contact__info-title,
  .contact__pane-title {
    font-size: 1.3rem;
  }

  .myth__text,
  .fact__text {
    font-size: 0.95rem;
  }

  .faq__question-text {
    font-size: 0.95rem;
  }

  .stepper__track-wrapper button {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.85rem !important;
  }

  .stepper__track-wrapper button span {
    font-size: 0.5rem !important;
    bottom: -18px !important;
  }
}
