/* ============================================
   WIN LIFE PHARMA — Section Styles
   ============================================ */

/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: calc(var(--z-sticky) + 1);
  background: transparent;
  padding-block: var(--space-2);
  font-size: var(--fs-small);
  color: var(--color-text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: var(--transition-base);
}

.top-bar__item:hover {
  color: var(--color-text-white);
}

.top-bar__item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.top-bar__socials {
  display: flex;
  gap: var(--space-2);
}

.top-bar__social {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-text-white);
  font-size: var(--fs-small);
  transition: var(--transition-base);
}

.top-bar__social:hover {
  background: var(--color-cta);
  border-color: var(--color-cta);
  color: var(--color-text-white);
}

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

.header.scrolled,
.header.header--solid {
  top: 0;
  background: var(--color-surface);
  box-shadow: var(--shadow-header);
}

/* Force dark colors when header is scrolled (white background) */
.header.scrolled .header__nav-link,
.header.header--solid .header__nav-link,
.header.scrolled .header__phone-text,
.header.header--solid .header__phone-text,
.header.scrolled .header__phone-number,
.header.header--solid .header__phone-number,
.header.scrolled .header__phone-icon,
.header.header--solid .header__phone-icon {
  color: var(--color-text-primary) !important;
  text-shadow: none !important;
}

.header.scrolled .header__phone-icon,
.header.header--solid .header__phone-icon {
  background: rgba(15, 23, 42, 0.1) !important; /* light dark background for icon */
}

/* Logo styling */
.header.scrolled .header__logo img,
.header.header--solid .header__logo img {
  /* Logo displays in its native colors */
}

.header.scrolled .header__mobile-toggle svg,
.header.header--solid .header__mobile-toggle svg {
  stroke: var(--color-text-primary) !important;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

.header__logo img {
  height: 80px;
  width: auto;
}

.header__logo img {
  transition: filter 0.3s ease;
}

/* Logo styling in transparent mode */
.header:not(.scrolled) .header__logo img {
  /* Logo displays in its native colors */
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.header__nav-link {
  font-family: var(--font-sub);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  padding: var(--space-2) var(--space-4);
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  position: relative;
}

.header:not(.scrolled) .header__nav-link {
  color: var(--color-text-white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.header__nav-link:hover {
  color: var(--color-cta);
  background: var(--color-cta-light);
}

.header__nav-link.active {
  color: var(--color-cta);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-cta);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 70%;
}

/* Dropdown */
.header__nav-item {
  position: relative;
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  border: 1px solid var(--color-border);
  z-index: var(--z-dropdown);
}

.header__nav-item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  transition: var(--transition-base);
}

.header__dropdown-link:hover {
  background: var(--color-surface-alt);
  color: var(--color-cta);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header__phone-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta-light);
  border-radius: var(--radius-full);
  color: var(--color-cta);
  transition: var(--transition-base);
}

.header:not(.scrolled) .header__phone-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-text-white);
  backdrop-filter: blur(4px);
}

.header__phone-text {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  transition: var(--transition-base);
}

.header:not(.scrolled) .header__phone-text {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.header__phone-number {
  font-family: var(--font-sub);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-caption);
  color: var(--color-text-primary);
  transition: var(--transition-base);
}

.header:not(.scrolled) .header__phone-number {
  color: var(--color-text-white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--color-surface);
  z-index: var(--z-modal);
  transition: right var(--duration-slow) var(--ease-out);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  padding: var(--space-6);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.mobile-menu__overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  transition: var(--transition-base);
}

.mobile-menu__close:hover {
  background: var(--color-surface-alt);
  color: var(--color-cta);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-menu__link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-sub);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  background: var(--color-cta-light);
  color: var(--color-cta);
}

.mobile-menu__sub {
  display: none;
  flex-direction: column;
  padding-left: var(--space-4);
  margin-top: -var(--space-1);
  margin-bottom: var(--space-2);
  gap: 2px;
}

.mobile-menu__sub.open {
  display: flex;
}

.mobile-menu__sub-link {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.mobile-menu__sub-link:hover,
.mobile-menu__sub-link.active {
  color: var(--color-primary);
  background: var(--color-surface-alt);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-primary-dark);
}

.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  /* Ensures the background color slightly deepens the video if needed, but overlay handles most of it */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  /* Very light overlay for text readability */
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  animation: particleFloat 8s infinite ease-in-out;
}

.hero__particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.hero__particle:nth-child(2) {
  top: 60%;
  left: 25%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.hero__particle:nth-child(3) {
  top: 30%;
  left: 60%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.hero__particle:nth-child(4) {
  top: 70%;
  left: 80%;
  animation-delay: 3s;
  animation-duration: 9s;
}

.hero__particle:nth-child(5) {
  top: 40%;
  left: 45%;
  animation-delay: 4s;
  animation-duration: 6.5s;
}

.hero__particle:nth-child(6) {
  top: 80%;
  left: 15%;
  animation-delay: 5s;
  animation-duration: 7.5s;
}

.hero__particle:nth-child(7) {
  top: 10%;
  left: 75%;
  animation-delay: 1.5s;
  animation-duration: 8.5s;
}

.hero__particle:nth-child(8) {
  top: 50%;
  left: 90%;
  animation-delay: 2.5s;
  animation-duration: 6s;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translate(20px, -30px) scale(1.5);
    opacity: 0.7;
  }

  50% {
    transform: translate(-10px, -60px) scale(1);
    opacity: 0.5;
  }

  75% {
    transform: translate(15px, -20px) scale(1.3);
    opacity: 0.6;
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  margin-top: var(--space-20);
  /* Accommodate transparent header */
  text-align: center;
  padding: 3rem;
  /* Desktop */
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-text-white);
  margin: 0 auto var(--space-6);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  /* 60px+ desktop */
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__title span {
  color: var(--color-cta);
  /* highlight with brand green */
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-text-white);
  line-height: var(--lh-relaxed);
  margin: 0 auto var(--space-10);
  max-width: 700px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
  margin-top: var(--space-6);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero__trust-item svg {
  color: var(--color-cta);
}

.hero__stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding: var(--space-10) 0;
  margin-top: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--fs-caption);
  color: var(--color-text-on-dark);
  margin-top: var(--space-2);
  font-weight: var(--fw-medium);
}

/* ═══════════════════════════════════════════
   WELCOME / ABOUT INTRO
   ═══════════════════════════════════════════ */
.welcome {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.welcome__content {
  padding-right: var(--space-8);
}

.welcome__overline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sub);
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--color-cta);
  margin-bottom: var(--space-4);
}

.welcome__overline::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-cta);
  border-radius: var(--radius-full);
}

.welcome__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-6);
}

.welcome__text {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.welcome__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.highlight-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  transition: var(--transition-base);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-cta);
}

.highlight-card__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta-light);
  color: var(--color-cta);
  border-radius: var(--radius-sm);
  font-size: 1.125rem;
  transition: var(--transition-base);
}

.highlight-card:hover .highlight-card__icon {
  background: var(--color-cta);
  color: var(--color-text-white);
}

.highlight-card__title {
  font-family: var(--font-sub);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

/* Expertise Card */
.expertise-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  color: var(--color-text-white);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
  pointer-events: none;
}

.expertise-card__title {
  font-size: var(--fs-h3);
  color: var(--color-text-white);
  margin-bottom: var(--space-6);
}

.expertise-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.expertise-card__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-caption);
  color: var(--color-text-on-dark);
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.expertise-card__item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.expertise-card__item-icon {
  color: #22c55e;
  font-size: 1rem;
  min-width: 20px;
}

.expertise-card__cta {
  margin-top: var(--space-6);
}

/* ═══════════════════════════════════════════
   SERVICES (Tab-based)
   ═══════════════════════════════════════════ */
.services-tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.services-tab-content__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.services-tab-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-tab-content__info h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-4);
}

.services-tab-content__info p {
  margin-bottom: var(--space-6);
  line-height: var(--lh-relaxed);
}

.services-tab-content__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
}

.benefit-item__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  min-width: 20px;
}

/* ═══════════════════════════════════════════
   WHY THAILAND
   ═══════════════════════════════════════════ */
.thailand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.thailand-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.thailand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out);
}

.thailand-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.thailand-card:hover::before {
  transform: scaleX(1);
}

.thailand-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--color-cta-light);
  color: var(--color-cta);
  font-size: 1.75rem;
  margin: 0 auto var(--space-5);
  transition: var(--transition-base);
}

.thailand-card:hover .thailand-card__icon {
  background: var(--color-cta);
  color: var(--color-text-white);
  transform: scale(1.1) rotate(-5deg);
}

.thailand-card__title {
  font-family: var(--font-sub);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
}

.thailand-card__text {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════
   REGULATORY SOLUTIONS
   ═══════════════════════════════════════════ */
.regulatory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* ═══════════════════════════════════════════
   DIGITAL SOLUTIONS
   ═══════════════════════════════════════════ */
.digital-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.digital-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.digital-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform var(--duration-slow) var(--ease-out);
}

.digital-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.digital-card:hover::after {
  transform: scaleX(1);
}

.digital-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.16));
  color: var(--color-accent-blue);
  font-size: 2rem;
  margin: 0 auto var(--space-5);
  transition: var(--transition-base);
}

.digital-card:hover .digital-card__badge {
  background: var(--gradient-blue);
  color: var(--color-text-white);
  transform: scale(1.08);
}

.digital-card__title {
  font-family: var(--font-sub);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
}

.digital-card__text {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
}

/* ═══════════════════════════════════════════
   ABOUT PARALLAX
   ═══════════════════════════════════════════ */
.about-parallax {
  position: relative;
  padding-block: var(--section-py-lg);
  overflow: hidden;
}

.about-parallax__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-parallax__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(-10%);
}

.about-parallax__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-parallax);
  z-index: 1;
}

.about-parallax .container {
  position: relative;
  z-index: 2;
}

.about-parallax__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-parallax__content h2 {
  color: var(--color-text-white);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-6);
}

.about-parallax__content p {
  color: var(--color-text-on-dark);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.about-parallax__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-item__icon {
  color: #60a5fa;
  font-size: 1.125rem;
}

.value-item__text {
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--color-text-white);
}

.about-parallax__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.about-parallax__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.industry-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 2;
  cursor: pointer;
}

.industry-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.industry-card:hover .industry-card__img {
  transform: scale(1.1);
}

.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 30, 61, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  transition: var(--transition-base);
}

.industry-card:hover .industry-card__overlay {
  background: linear-gradient(180deg, rgba(10, 30, 61, 0.2) 0%, rgba(10, 30, 61, 0.95) 100%);
}

.industry-card__icon {
  font-size: 1.5rem;
  color: #60a5fa;
  margin-bottom: var(--space-2);
}

.industry-card__title {
  font-family: var(--font-sub);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--color-text-white);
}

.industry-card__desc {
  font-size: var(--fs-caption);
  color: var(--color-text-on-dark);
  margin-top: var(--space-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.industry-card:hover .industry-card__desc {
  max-height: 60px;
}

/* ═══════════════════════════════════════════
   GLOBAL PRESENCE SLIDER
   ═══════════════════════════════════════════ */
.presence-slider {
  position: relative;
  overflow: hidden;
}

.presence-slider__track {
  display: flex;
  gap: var(--space-6);
  transition: transform var(--duration-slow) var(--ease-out);
}

.presence-card {
  min-width: calc((100% - var(--space-6) * 3) / 4);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.presence-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.presence-card__flag {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.presence-card__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.presence-card:hover .presence-card__flag img {
  transform: scale(1.08);
}

.presence-card__info {
  padding: var(--space-5);
  text-align: center;
}

.presence-card__name {
  font-family: var(--font-sub);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.slider-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: var(--transition-base);
  background: var(--color-surface);
}

.slider-btn:hover {
  background: var(--color-cta);
  border-color: var(--color-cta);
  color: var(--color-text-white);
}

.slider-dots {
  display: flex;
  gap: var(--space-2);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.slider-dot.active {
  background: var(--color-cta);
  width: 28px;
}

/* ═══════════════════════════════════════════
   SUCCESS METRICS
   ═══════════════════════════════════════════ */
.metrics {
  position: relative;
  overflow: hidden;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.metric {
  text-align: center;
  padding: var(--space-8);
  position: relative;
}

.metric::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--color-divider);
}

.metric:last-child::after {
  display: none;
}

.metric__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #60a5fa;
  font-size: 1.5rem;
  margin: 0 auto var(--space-5);
}

.metric__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  line-height: 1;
}

.metric__label {
  font-size: var(--fs-caption);
  color: var(--color-text-on-dark);
  margin-top: var(--space-2);
  font-weight: var(--fw-medium);
}

/* ═══════════════════════════════════════════
   BLOG / INSIGHTS
   ═══════════════════════════════════════════ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}

.blog-card__content {
  padding: var(--space-6);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.blog-card__category {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-cta);
}

.blog-card__date {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.blog-card__title {
  font-family: var(--font-sub);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
  line-height: var(--lh-heading);
}

.blog-card__excerpt {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info {
  padding-right: var(--space-8);
}

.contact-info h2 {
  color: var(--color-text-white);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-4);
}

.contact-info p {
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: #60a5fa;
  font-size: 1.125rem;
  min-width: 44px;
}

.contact-detail__label {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-detail__value {
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--color-text-white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.contact-form h3 {
  color: var(--color-text-white);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-6);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--color-primary-dark);
  color: var(--color-text-on-dark);
  padding-top: var(--space-20);
  padding-bottom: var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__desc {
  color: #ffffff !important;
  font-size: var(--fs-caption);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.footer__brand-logo img {
  height: 56px;
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-on-dark);
  transition: var(--transition-base);
}

.footer__social:hover {
  background: var(--color-cta);
  color: var(--color-text-white);
}

.footer__title {
  font-family: var(--font-sub);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--color-text-white);
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  list-style: none;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-caption);
  color: var(--color-text-on-dark);
}

.footer__contact li svg {
  flex-shrink: 0;
}

.footer__links a {
  font-size: var(--fs-caption);
  color: var(--color-text-on-dark);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__links a:hover {
  color: var(--color-text-white);
  transform: translateX(4px);
}

.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  transition: var(--transition-base);
}

.footer__legal a:hover {
  color: var(--color-text-white);
}

/* ═══════════════════════════════════════════
   FLOATING ELEMENTS
   ═══════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: var(--z-floating);
  transition: var(--transition-base);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

.scroll-top {
  position: fixed;
  bottom: var(--space-6);
  right: calc(var(--space-6) + 72px);
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  z-index: var(--z-floating);
  transition: var(--transition-base);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-cta);
  transform: translateY(-3px);
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-cta);
  padding: var(--space-12) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--color-text-white);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  font-size: var(--fs-body-lg);
}
/* ═══════════════════════════════════════════
   VITABLEND HP SPECIFIC STYLES
   ═══════════════════════════════════════════ */

.vitablend-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 180px 20px 80px;
}

.vitablend-hero .hero__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.vitablend-hero .hero__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 58, 138, 0.6) 100%);
  z-index: 2;
}

.vitablend-hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 992px) {
  .vitablend-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-card h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card .subheadline {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vitablend-hero-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.3));
  transform: scale(1.05);
}

.vitablend-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}



.vitablend-formula {
  background: #f8fafc;
  padding: 100px 0;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

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

.formula-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.formula-item__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formula-item__content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.formula-item__content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.vitablend-contact {
  background: var(--color-text-primary);
  color: #fff;
  padding: 100px 0;
}

.vitablend-contact .section-header__title,
.vitablend-contact .section-header__subtitle {
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

@media (max-width: 992px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 20px;
}

.contact-info-card h3 {
  color: #ffffff;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: rgba(255,255,255,0.9);
}

.contact-info-text p, .contact-info-text a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 1.5;
}

.contact-info-text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-form-premium {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  color: var(--color-text-primary);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.contact-form-premium .form-group {
  margin-bottom: 20px;
}

.contact-form-premium label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form-premium input,
.contact-form-premium textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.contact-form-premium input:focus,
.contact-form-premium textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--color-primary-light);
}

.contact-form-premium button {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.vitablend-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .vitablend-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vitablend-about-grid .reveal-right {
    text-align: center;
  }
  .vitablend-about-grid .section-header__title {
    text-align: center !important;
  }
  .vitablend-about-grid .benefit-item {
    text-align: left;
  }
}

.vitablend-hero .hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-primary);
  background: var(--color-surface-grey);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}


/* Premium Benefit Cards */
.vitablend-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

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

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

.benefit-card-premium {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cta), var(--color-primary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.08);
}

.benefit-card-premium:hover::before {
  opacity: 1;
}

.benefit-card-premium .icon-img-wrapper {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: inset 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.4s ease;
}

.benefit-card-premium:hover .icon-img-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card-premium .icon-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.benefit-card-premium h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.benefit-card-premium p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════ */
.partners-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--space-8) 0;
}

.partners-marquee-wrapper::before,
.partners-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.partners-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.partners-marquee {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content; 
  animation: marquee-scroll 40s linear infinite;
}

.partners-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  flex: 0 0 auto;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .partner-logo {
    width: 150px;
  }
}

.partner-logo img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 125px;
  mix-blend-mode: multiply;
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   TESTIMONIAL SECTION
   ═══════════════════════════════════════════ */
.testimonial-section {
  background: var(--color-bg-alt, #f8fafc);
  padding: 5rem 0;
}

.testimonial-card {
  background: var(--color-surface, #ffffff);
  border-radius: 24px;
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.testimonial-text {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 500;
  font-style: italic;
  margin: 0 0 2.5rem 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   VITA BLEND HP — PAGE REDESIGN
   ═══════════════════════════════════════════ */

/* Hero Carousel Section */
.vbhp-hero-carousel-section {
  width: 100%;
  background: #fde8e8;
  padding-top: 110px; /* Top offset for fixed solid header */
  position: relative;
  overflow: hidden;
}

.vbhp-carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.vbhp-carousel-slides {
  position: relative;
  width: 100%;
  min-height: 350px;
}

.vbhp-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vbhp-carousel-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.vbhp-banner-img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Carousel Navigation Buttons */
.vbhp-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a365d;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.vbhp-carousel-nav:hover {
  background: #c53030;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(197, 48, 48, 0.35);
}

.vbhp-carousel-nav.prev {
  left: 20px;
}

.vbhp-carousel-nav.next {
  right: 20px;
}

/* Indicators / Dots */
.vbhp-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.vbhp-carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(26, 54, 93, 0.3);
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.vbhp-carousel-dots .dot.active {
  background: #c53030;
  width: 28px;
  border-radius: 12px;
}

/* Product Showcase */
.vbhp-product-showcase {
  background: #fde8e8;
  padding: 4rem 0;
}

.vbhp-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.vbhp-showcase-text {
  text-align: left;
}

.vbhp-showcase-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.vbhp-showcase-sub {
  color: #c53030;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
}

.vbhp-showcase-img-wrap {
  display: flex;
  justify-content: center;
}

.vbhp-product-showcase .vbhp-product-img {
  max-width: 440px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
  transition: transform 0.5s ease;
}

.vbhp-product-showcase .vbhp-product-img:hover {
  transform: scale(1.03);
}

/* Full-width image sections */
.vbhp-fullwidth-section {
  width: 100%;
  overflow: hidden;
  background: #fde8e8;
  max-height: 100vh;
}

.vbhp-fullwidth-section img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: contain;
  display: block;
}

/* Side-by-side Image Section */
.vbhp-side-by-side-section {
  background: #fde8e8;
  padding: 3rem 0;
  width: 100%;
  overflow: hidden;
}

.vbhp-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.vbhp-side-col {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: #fde8e8;
}

.vbhp-side-col img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vbhp-side-col img:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Section heading for VBHP */
.vbhp-section-heading {
  text-align: center;
  padding: 4rem 2rem 0;
  background: #fde8e8;
}

.vbhp-section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #c53030;
  margin: 0;
}

/* CTA Section */
.vbhp-cta {
  background: #fde8e8;
  padding: 5rem 2rem;
  text-align: center;
  color: #1a365d;
}

.vbhp-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.vbhp-cta p {
  font-size: 1.15rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.vbhp-cta .vbhp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #c53030;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(197, 48, 48, 0.4);
}

.vbhp-cta .vbhp-cta-btn:hover {
  background: #e53e3e;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(197, 48, 48, 0.5);
}

/* Branding block */
.vbhp-branding {
  background: #fde8e8;
  padding: 3rem 2rem;
  text-align: center;
}

.vbhp-branding img {
  max-width: 200px;
  margin-bottom: 0.5rem;
}

.vbhp-branding p {
  color: #1a365d;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Feature Cards Grid */
.vbhp-features-grid-section {
  background: #fde8e8;
  padding: 5rem 0;
}

.vbhp-features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vbhp-feature-card {
  background: linear-gradient(135deg, #e8536a 0%, #d94460 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.vbhp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 0 20px 0 0;
}

.vbhp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(217, 68, 96, 0.35);
}

.vbhp-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f5d060 0%, #c9a030 50%, #f5d060 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  color: #1a365d;
}

.vbhp-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.vbhp-feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .vbhp-features-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vbhp-product-showcase {
    padding: 3rem 1rem;
  }

  .vbhp-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vbhp-showcase-text {
    text-align: center;
  }

  .vbhp-product-showcase .vbhp-product-img {
    max-width: 320px;
  }

  .vbhp-cta {
    padding: 3rem 1.5rem;
  }

  .vbhp-features-cards {
    grid-template-columns: 1fr;
  }

  .vbhp-side-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 1023px) {
  .vbhp-hero-carousel-section {
    padding-top: 68px;
  }
}

/* ═══════════════════════════════════════════
   VITA BLEND (PRE-DIALYSIS) — PAGE REDESIGN
   ═══════════════════════════════════════════ */

/* Hero Carousel Section (Blue Theme) */
.vb-hero-carousel-section {
  width: 100%;
  background: #dbeafe;
  padding-top: 110px;
  position: relative;
  overflow: hidden;
}

.vb-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.vb-carousel-slides {
  position: relative;
  width: 100%;
}

.vb-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
}

.vb-carousel-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.vb-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.vb-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0369a1;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.vb-carousel-nav:hover {
  background: #0284c7;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.4);
}

.vb-carousel-nav.prev { left: 24px; }
.vb-carousel-nav.next { right: 24px; }

.vb-carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.vb-carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.vb-carousel-dots .dot.active {
  background: #0284c7;
  border-color: #0284c7;
  width: 32px;
  border-radius: 12px;
}

/* ── Overline Badge ── */
.vb-overline {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0284c7;
  background: rgba(2, 132, 199, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

/* ── Product Showcase ── */
.vb-product-showcase {
  background: linear-gradient(180deg, #dbeafe 0%, #e0f2fe 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.vb-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.vb-showcase-text {
  text-align: left;
}

.vb-showcase-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.vb-showcase-sub {
  color: #0284c7;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.vb-showcase-desc {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 2rem;
}

.vb-showcase-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vb-product-showcase .vb-product-img {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(3, 105, 161, 0.18));
  transition: transform 0.5s ease;
}

.vb-product-showcase .vb-product-img:hover {
  transform: scale(1.04) translateY(-6px);
}

/* ── Stats Row ── */
.vb-stats-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(2, 132, 199, 0.15);
}

.vb-stat-item {
  display: flex;
  flex-direction: column;
}

.vb-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #0369a1;
  line-height: 1;
}

.vb-stat-number small {
  font-size: 0.65em;
  color: #0284c7;
}

.vb-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Protein Benefits Section ── */
.vb-protein-section {
  background: #e0f2fe;
  padding: 5rem 0;
  overflow: hidden;
}

.vb-protein-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vb-protein-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(2, 132, 199, 0.1);
  box-shadow: 0 4px 20px rgba(3, 105, 161, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vb-protein-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(3, 105, 161, 0.12);
  border-color: rgba(2, 132, 199, 0.25);
}

.vb-protein-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.vb-protein-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 0.75rem;
}

.vb-protein-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ── Full-width Image Section ── */
.vb-fullwidth-section {
  width: 100%;
  overflow: hidden;
  background: #e0f2fe;
  padding: 2rem 0 3rem;
}

.vb-fullwidth-img-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vb-fullwidth-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

/* ── Side-by-side Image Section ── */
.vb-side-by-side-section {
  background: #e0f2fe;
  padding: 2rem 0 4rem;
  overflow: hidden;
}

.vb-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.vb-side-col {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
}

.vb-side-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vb-side-col img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* ── Section Heading ── */
.vb-section-heading {
  text-align: center;
  padding: 4rem 2rem 0;
  background: #e0f2fe;
}

.vb-section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0369a1;
  margin: 0;
}

/* ── Feature Cards Grid ── */
.vb-features-grid-section {
  background: #e0f2fe;
  padding: 5rem 0;
  overflow: hidden;
}

.vb-features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vb-feature-card {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.vb-feature-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.vb-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.35);
}

.vb-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f5d060 0%, #c9a030 50%, #f5d060 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: #0f172a;
}

.vb-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.vb-feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* ── Proven Benefits Section ── */
.vb-benefits-section {
  background: linear-gradient(180deg, #e0f2fe 0%, #dbeafe 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.vb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vb-benefits-grid > :last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.vb-benefit-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(2, 132, 199, 0.08);
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.vb-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(3, 105, 161, 0.12);
  border-color: rgba(2, 132, 199, 0.2);
}

.vb-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bae6fd 0%, #7dd3fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #0369a1;
}

.vb-benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 0.6rem;
}

.vb-benefit-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* ── Testimonials ── */
.vb-testimonials-section {
  background: #e0f2fe;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.vb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vb-testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.06);
  border: 1px solid rgba(2, 132, 199, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vb-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(2, 132, 199, 0.13);
}

.vb-testimonial-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.vb-testimonial-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.vb-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vb-avatar-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.vb-author-info h5 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0369a1;
}

.vb-author-info p {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}

/* ── CTA Section ── */
.vb-cta {
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.vb-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.vb-cta-overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 1rem;
}

.vb-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.vb-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.vb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #0369a1;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.vb-cta-btn:hover {
  background: #e0f2fe;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .vb-hero-carousel-section {
    padding-top: 68px;
  }
  .vb-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vb-showcase-text {
    text-align: center;
  }
  .vb-stats-row {
    justify-content: center;
  }
  .vb-side-grid,
  .vb-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .vb-features-cards,
  .vb-protein-grid,
  .vb-benefits-grid {
    grid-template-columns: 1fr;
  }
  .vb-benefits-grid > :last-child:nth-child(3n + 1) {
    grid-column: auto;
  }
  .vb-carousel-nav.prev { left: 12px; }
  .vb-carousel-nav.next { right: 12px; }
  .vb-carousel-nav {
    width: 40px;
    height: 40px;
  }
}
