/* ============================================================
   COBVIE – Main Stylesheet
   Color Palette inspired by Cobvie logo
   Primary Blue: #1469A0 | Dark Navy: #1B3252 | Light Blue: #5BAED6
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --blue-primary: #1469A0;
  --blue-dark: #1B3252;
  --blue-light: #5BAED6;
  --blue-pale: #8BC8E8;
  --blue-xlight: #D0E9F5;
  --navy-deep: #0d1e35;
  --steel: #8899AA;
  --white: #FFFFFF;
  --off-white: #F4F8FB;
  --light-bg: #EEF5FA;
  --text-dark: #0F1E2E;
  --text-body: #2C3E50;
  --text-muted: #5A7080;
  --text-light: #9EB4C0;
  --border: rgba(20, 105, 160, 0.15);
  --border-light: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 2px 8px rgba(20, 105, 160, 0.08);
  --shadow-md: 0 8px 30px rgba(20, 105, 160, 0.15);
  --shadow-lg: 0 20px 60px rgba(20, 105, 160, 0.2);
  --shadow-glow: 0 0 40px rgba(91, 174, 214, 0.35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
  --max-w: 1200px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.center {
  text-align: center;
  display: flex;
  justify-content: center;
}

.mt-lg {
  margin-top: 3rem;
}

.section-header.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: rgba(20, 105, 160, 0.08);
  border: 1px solid rgba(20, 105, 160, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-tag.light {
  color: var(--blue-pale);
  background: rgba(91, 174, 214, 0.1);
  border-color: rgba(91, 174, 214, 0.2);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 1rem;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.75);
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, var(--blue-primary) 0%, #0d5a8a 50%, var(--blue-light) 100%);
  background-size: 200% auto;
  background-position: 0% center;
  color: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(20, 105, 160, 0.4);
}

.btn-primary:hover {
  background-position: 100% center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(20, 105, 160, 0.55);
}

.btn-ghost {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, var(--white) 50%, var(--white) 100%);
  background-size: 200% auto;
  background-position: 0% center;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background-position: 100% center;
  color: var(--blue-deep);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: linear-gradient(90deg, transparent 0%, transparent 50%, var(--blue-primary) 50%, var(--blue-primary) 100%);
  background-size: 200% auto;
  background-position: 0% center;
  color: var(--blue-primary);
  border: 1.5px solid var(--blue-primary);
}

.btn-ghost-dark:hover {
  background-position: 100% center;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: linear-gradient(90deg, transparent 0%, transparent 50%, var(--white) 50%, var(--white) 100%);
  background-size: 200% auto;
  background-position: 0% center;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background-position: 100% center;
  color: var(--blue-deep);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-lines span {
  display: block;
  border-radius: 2px;
  background: var(--blue-light);
}

.logo-lines span:nth-child(1) {
  width: 18px;
  height: 3px;
}

.logo-lines span:nth-child(2) {
  width: 14px;
  height: 3px;
  margin-left: 2px;
}

.logo-lines span:nth-child(3) {
  width: 10px;
  height: 3px;
  margin-left: 4px;
}

.logo-mark.small .logo-lines span {
  opacity: 0.8;
}

.logo-mark.small .logo-lines span:nth-child(1) {
  width: 14px;
  height: 2px;
}

.logo-mark.small .logo-lines span:nth-child(2) {
  width: 11px;
  height: 2px;
}

.logo-mark.small .logo-lines span:nth-child(3) {
  width: 8px;
  height: 2px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
}

.logo-mark.small .logo-text {
  font-size: 1.1rem;
  color: var(--off-white);
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--steel);
  letter-spacing: 0.05em;
  padding-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--light-bg);
  color: var(--blue-primary);
}

.nav-link.active {
  color: var(--blue-primary);
  font-weight: 600;
}

/* --- Navigation Dropdown --- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > .nav-link::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-dropdown:hover > .nav-link::after {
  transform: translateY(2px) rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(20, 105, 160, 0.15);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  position: relative;
  display: block;
}

.dropdown-link {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.dropdown-link:hover {
  background: var(--light-bg);
  color: var(--blue-primary);
  padding-left: 1.5rem;
}

/* Submenu inside Dropdown */
.submenu-content {
  position: absolute;
  top: -0.5rem;
  left: 100%;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(20, 105, 160, 0.15);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.dropdown-item.has-submenu:hover .submenu-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-item.has-submenu > .dropdown-link::after {
  content: "›";
  font-size: 1.2rem;
  line-height: 0.5;
  float: right;
  margin-top: 5px;
  color: var(--text-muted);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue-primary), #0d5a8a);
  color: var(--white) !important;
  margin-left: 0.5rem;
  box-shadow: 0 4px 16px rgba(20, 105, 160, 0.35);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #1778b5, var(--blue-primary));
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(20, 105, 160, 0.45);
}

.nav-cta.active {
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO (Home) ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--blue-dark) 45%, #0e4a78 100%);
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 174, 214, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 174, 214, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-light);
  animation: float linear infinite;
  opacity: 0;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
  animation: heroFadeIn 1s ease 0.2s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue-pale);
  background: rgba(91, 174, 214, 0.1);
  border: 1px solid rgba(91, 174, 214, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--blue-pale);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 20;
}

.scroll-indicator {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue-light);
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.hero-slide {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

/* --- Slide 1: Info (existing centred layout) --- */
.hero-slide-info {
  padding: 0 2rem;
}

/* --- Slide 2: Product Showcase --- */
.hero-slide-product {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
  justify-content: flex-start;
  /* override centered from .hero-slide */
  align-items: center;
}

/* Left-to-centre colour fade overlay */
.hero-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(13, 30, 53, 0.97) 0%,
      rgba(13, 30, 53, 0.88) 40%,
      rgba(13, 30, 53, 0.45) 62%,
      rgba(13, 30, 53, 0.08) 78%,
      transparent 92%);
  z-index: 2;
  pointer-events: none;
}

/* Collage container — lives on the right half */
.hero-collage {
  position: absolute;
  right: -2%;
  top: 0;
  bottom: 0;
  width: 62%;
  z-index: 1;
  pointer-events: none;
}

/* Main hero image — large, slightly rotated */
.hero-collage-main {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(6deg);
  width: 54%;
  z-index: 3;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  animation: collagePulse 8s ease-in-out infinite;
}

.hc-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

@keyframes collagePulse {

  0%,
  100% {
    transform: translateY(-50%) rotate(6deg) scale(1);
  }

  50% {
    transform: translateY(-52%) rotate(6deg) scale(1.03);
  }
}

/* Top-right supporting image */
.hero-collage-top {
  position: absolute;
  top: 8%;
  left: 2%;
  width: 40%;
  z-index: 2;
  transform: rotate(-5deg);
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
  animation: collagePulse2 9s ease-in-out 1.5s infinite;
}

.hero-collage-top img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

@keyframes collagePulse2 {

  0%,
  100% {
    transform: rotate(-5deg) translateY(0);
  }

  50% {
    transform: rotate(-5deg) translateY(-8px);
  }
}

/* Bottom-left supporting image */
.hero-collage-bottom {
  position: absolute;
  bottom: 6%;
  left: 8%;
  width: 38%;
  z-index: 2;
  transform: rotate(4deg);
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
  animation: collagePulse3 10s ease-in-out 3s infinite;
}

.hero-collage-bottom img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

@keyframes collagePulse3 {

  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }

  50% {
    transform: rotate(4deg) translateY(7px);
  }
}

/* Glowing accent behind the collage */
.hero-collage::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(91, 174, 214, 0.25) 0%, transparent 70%);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -52%) scale(1.15);
  }
}

/* Product text — left side */
.hero-product-text {
  position: relative;
  z-index: 3;
  max-width: 520px;
  padding: 0 2rem 0 clamp(2rem, 6vw, 6rem);
  margin-left: 0;
  margin-right: auto;
  animation: heroFadeIn 0.9s ease 0.1s both;
}

.hero-product-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-pale);
  background: rgba(91, 174, 214, 0.12);
  border: 1px solid rgba(91, 174, 214, 0.28);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-product-name {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.hero-product-name em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 110%;
}

.hero-product-sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue-pale);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-product-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 420px;
}

.hero-product-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero arrow buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) scale(1.08);
}

/* Hero navigation dots */
.hero-slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 20;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--white);
  width: 26px;
  border-radius: 4px;
}

/* Melact slide — cooler silver overlay variant */
.hero-slide-melact .hero-product-overlay {
  background: linear-gradient(100deg,
      rgba(10, 18, 38, 0.97) 0%,
      rgba(10, 18, 38, 0.90) 38%,
      rgba(20, 30, 58, 0.50) 60%,
      rgba(20, 30, 58, 0.10) 78%,
      transparent 92%);
}

.hero-slide-melact .hero-collage::before {
  background: radial-gradient(circle, rgba(180, 195, 220, 0.18) 0%, transparent 70%);
}


.page-hero {
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--blue-dark) 50%, #0e4a78 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  opacity: 0.4;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.75;
}

/* ---------- INTRO STRIP ---------- */
.intro-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: var(--shadow-sm);
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.strip-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.strip-item:last-child {
  border-right: none;
}

.strip-item:hover {
  background: var(--off-white);
}

.strip-icon {
  width: 44px;
  height: 44px;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.strip-icon svg {
  width: 100%;
  height: 100%;
}

.strip-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.strip-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- DARK SECTION ---------- */
.dark-section {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--blue-dark) 60%, #0e3a60 100%);
  position: relative;
  overflow: hidden;
}

.science-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 174, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 174, 214, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ---------- TWO COLUMN GRID ---------- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ---------- ABOUT PREVIEW ---------- */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-content .section-title {
  margin-bottom: 1.5rem;
}

.about-values-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0;
}

.value-chip {
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background: rgba(20, 105, 160, 0.08);
  border: 1px solid rgba(20, 105, 160, 0.18);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-primary);
  transition: var(--transition);
}

.value-chip:hover {
  background: var(--blue-primary);
  color: var(--white);
}

.about-preview-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── TECH SHOWCASE CARDS ── */
.tech-showcase-card {
  position: relative;
  border-radius: 20px;
  padding: 1.75rem 2rem;
  overflow: hidden;
  border: 1px solid rgba(91, 174, 214, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(20, 105, 160, 0.10), 0 2px 8px rgba(20, 105, 160, 0.06);
  transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.35s ease;
  backdrop-filter: blur(12px);
  cursor: default;
}

.tech-showcase-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 50px rgba(20, 105, 160, 0.18), 0 4px 16px rgba(20, 105, 160, 0.08);
}

/* Glowing orb behind each card */
.tech-card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -60px;
  top: -80px;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(50px);
  animation: glowOrb 6s ease-in-out infinite;
}

.tech-card-hydro .tech-card-glow {
  background: radial-gradient(circle, #5BAED6, #1469A0, transparent);
  animation-delay: 0s;
}

.tech-card-epigen .tech-card-glow {
  background: radial-gradient(circle, #7dd3f0, #0d5a8a, transparent);
  animation-delay: 3s;
}

@keyframes glowOrb {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.12);
  }
}

/* Shimmer sweep */
.tech-card-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  border-radius: inherit;
  pointer-events: none;
  animation: shimmerSweep 4s ease-in-out infinite;
}

.tech-card-epigen .tech-card-shimmer {
  animation-delay: 2s;
}

@keyframes shimmerSweep {

  0%,
  70%,
  100% {
    background-position: 200% 0;
  }

  40% {
    background-position: -50% 0;
  }
}

/* Left accent bar */
.tech-card-hydro::before,
.tech-card-epigen::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #5BAED6, #1469A0);
}

/* Header row */
.tech-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Icon circle */
.tech-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f4fc, #cce7f4);
  border: 1px solid rgba(91, 174, 214, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  box-sizing: border-box;
}

.tech-card-icon svg {
  width: 100%;
  height: 100%;
}

/* Label */
.tech-card-label {
  flex: 1;
}

.tech-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: rgba(20, 105, 160, 0.09);
  border: 1px solid rgba(20, 105, 160, 0.18);
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.3rem;
}

.tech-card-label h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0;
}

/* Description */
.tech-card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  padding-left: 0.25rem;
}

/* Stats row */
.tech-card-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(20, 105, 160, 0.04), rgba(91, 174, 214, 0.07));
  border: 1px solid rgba(91, 174, 214, 0.15);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  position: relative;
  z-index: 1;
}

.tcs-item {
  flex: 1;
  text-align: center;
}

.tcs-val {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.tcs-lbl {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

.tcs-divider {
  width: 1px;
  height: 28px;
  background: rgba(91, 174, 214, 0.25);
  flex-shrink: 0;
}

/* ---------- INNOVATION VIDEO SECTION ---------- */
.innovation-vid-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ivid-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.ivid-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Cinematic gradient overlay */
.ivid-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 18, 38, 0.82) 0%, rgba(10, 18, 38, 0.55) 50%, rgba(10, 18, 38, 0.30) 100%),
    linear-gradient(to top, rgba(10, 18, 38, 0.5) 0%, transparent 40%);
  z-index: 1;
}

/* Text content */
.ivid-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(2rem, 8vw, 7rem);
  max-width: 640px;
}

.ivid-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-pale);
  background: rgba(91, 174, 214, 0.15);
  border: 1px solid rgba(91, 174, 214, 0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.ivid-title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.ivid-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ivid-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}

.ivid-cta {
  width: fit-content;
}

/* Play / Pause toggle button */
.ivid-play-btn {
  position: absolute;
  bottom: 1.75rem;
  right: 2rem;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.ivid-play-btn svg {
  width: 16px;
  height: 16px;
}

.ivid-play-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

/* ---------- SCIENCE PREVIEW ---------- */
.science-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.science-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  animation-delay: var(--delay);
}

.science-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(91, 174, 214, 0.25);
  transform: translateY(-4px);
}

.science-card-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(91, 174, 214, 0.2);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.science-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.science-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ---------- PRODUCTS PREVIEW ---------- */
.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-cat-img {
  height: 160px;
  background: var(--cat-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-icon {
  width: 64px;
  height: 64px;
}

.cat-icon svg {
  width: 100%;
  height: 100%;
}

.product-cat-info {
  padding: 1.75rem;
}

.product-cat-info h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-cat-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-cat-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-primary);
  background: rgba(20, 105, 160, 0.08);
  border: 1px solid rgba(20, 105, 160, 0.18);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ---------- PRODUCTS SLIDER ---------- */
.prod-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-bg) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prod-slider {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.prod-slide {
  min-width: 100%;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Slide 1 – Info slide */
.prod-slide-info {
  background: linear-gradient(135deg, rgba(20, 105, 160, 0.04) 0%, rgba(91, 174, 214, 0.07) 100%);
}

.prod-slide-info-inner {
  max-width: 620px;
  text-align: center;
}

.prod-slide-info-inner .section-tag {
  margin-bottom: 1rem;
}

.prod-slide-info-inner .section-title {
  margin-bottom: 1rem;
}

.prod-slide-info-inner .section-desc {
  margin: 0 auto 2rem;
}

/* Slide 2 & 3 – Product card slides */
.prod-slide-card {
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
}

.prod-slide-card .product-cat-img {
  height: 200px;
}

/* Arrow buttons */
.prod-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  z-index: 10;
  transition: var(--transition);
  cursor: pointer;
}

.prod-slider-btn svg {
  width: 18px;
  height: 18px;
}

.prod-slider-prev {
  left: 1.25rem;
}

.prod-slider-next {
  right: 1.25rem;
}

.prod-slider-btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

/* Dot indicators */
.prod-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.prod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(20, 105, 160, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.prod-dot.active {
  background: var(--blue-primary);
  width: 24px;
  border-radius: 4px;
}

/* ---------- PARTNERSHIPS PREVIEW ---------- */
.partnerships-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.regions-list {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}

.region-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-primary);
  flex-shrink: 0;
}

/* MAP VISUAL */
.map-visual {
  position: relative;
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--light-bg), var(--blue-xlight));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: 0 0 30px rgba(20, 105, 160, 0.45);
}

.map-center-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

.map-center-sub {
  font-size: 0.7rem;
  color: var(--blue-pale);
}

.map-node {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 105, 160, 0.12);
  border: 1.5px solid rgba(20, 105, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-primary);
  animation: mapPulse 3s ease infinite;
}

.node-europe {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.node-gcc {
  top: 25%;
  right: 15%;
  animation-delay: 0.7s;
}

.node-mena {
  bottom: 25%;
  right: 20%;
  animation-delay: 1.4s;
}

.node-global {
  bottom: 20%;
  left: 20%;
  animation-delay: 2.1s;
}

@keyframes mapPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* ---------- WHY COBVIE – REDESIGN ---------- */

/* Two-column layout */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* LEFT column */
.why-left {
  position: sticky;
  top: 6rem;
}

/* Stat accent block */
.why-accent-block {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(91, 174, 214, 0.08);
  border: 1px solid rgba(91, 174, 214, 0.25);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.why-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: 0.04em;
  line-height: 1;
}

.why-stat-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-align: center;
}

.why-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(91, 174, 214, 0.25);
  flex-shrink: 0;
}

/* RIGHT column – feature rows */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.25rem;
  border-bottom: 1px solid rgba(91, 174, 214, 0.12);
  border-radius: 0;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
  animation-delay: var(--wr-delay, 0ms);
}

.why-row:first-child {
  border-top: 1px solid rgba(91, 174, 214, 0.12);
}

/* Hover: highlight + left accent bar */
.why-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-primary));
  border-radius: 2px;
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.why-row:hover {
  background: rgba(91, 174, 214, 0.06);
  border-color: rgba(91, 174, 214, 0.28);
}

.why-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Icon circle */
.why-row-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(91, 174, 214, 0.12);
  border: 1px solid rgba(91, 174, 214, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.why-row-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-light);
}

.why-row:hover .why-row-icon {
  background: rgba(91, 174, 214, 0.22);
  border-color: rgba(91, 174, 214, 0.5);
  transform: scale(1.05);
}

/* Body text */
.why-row-body {
  flex: 1;
}

.why-row-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.why-row:hover .why-row-body h4 {
  color: var(--blue-light);
}

.why-row-body p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.5;
}

/* Row number */
.why-row-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(91, 174, 214, 0.35);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.why-row:hover .why-row-num {
  color: rgba(91, 174, 214, 0.75);
}

/* Responsive */
@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-left {
    position: static;
  }
}

/* ---------- CTA SECTION ---------- */
.cta-card {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-circle.c1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -80px;
}

.cta-circle.c2 {
  width: 200px;
  height: 200px;
  top: -40px;
  right: -20px;
}

.cta-circle.c3 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -100px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.footer-sub {
  color: var(--steel) !important;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem !important;
}

.footer-location {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.82rem !important;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- CHATBOT WIDGET ---------- */
.chatbot-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(20, 105, 160, 0.5);
  transition: var(--transition);
  position: relative;
}

.chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(20, 105, 160, 0.65);
}

.chatbot-toggle .chat-icon {
  width: 24px;
  transition: var(--transition);
}

.chatbot-toggle .close-icon {
  width: 20px;
  position: absolute;
  opacity: 0;
  transition: var(--transition);
}

.chatbot-widget.open .chatbot-toggle .chat-icon {
  opacity: 0;
}

.chatbot-widget.open .chatbot-toggle .close-icon {
  opacity: 1;
}

.chatbot-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.chatbot-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: chatOpen 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes chatOpen {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    transform-origin: bottom right;
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.chatbot-widget.open .chatbot-panel {
  display: flex;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.chatbot-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chatbot-info strong {
  color: var(--white);
  font-size: 0.9rem;
}

.chatbot-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.chatbot-close-btn {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 4px;
  transition: var(--transition);
}

.chatbot-close-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--off-white);
}

.chat-message {
  max-width: 85%;
}

.bot-message {
  align-self: flex-start;
}

.bot-message p {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.user-message {
  align-self: flex-end;
}

.user-message p {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--white);
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.quick-reply {
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: rgba(20, 105, 160, 0.08);
  border: 1px solid rgba(20, 105, 160, 0.2);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-primary);
  transition: var(--transition);
}

.quick-reply:hover {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}

.chatbot-input-area {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.chatbot-input-area input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.chatbot-input-area input:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(20, 105, 160, 0.1);
}

.chatbot-input-area button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.chatbot-input-area button:hover {
  background: var(--blue-dark);
  transform: scale(1.08);
}

.chatbot-input-area button svg {
  width: 16px;
  height: 16px;
}

/* ---------- FEATURE CARDS (About) ---------- */
.feature-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-mini-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-mini-card:hover {
  transform: translateX(6px);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}

.fmc-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.feature-mini-card h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.feature-mini-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- PILLARS GRID ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ---------- PROCESS TIMELINE ---------- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(20, 105, 160, 0.3);
}

.process-connector {
  position: absolute;
  top: calc(2rem + 28px);
  right: -50%;
  left: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary), transparent);
  z-index: 1;
}

.process-step:last-child .process-connector {
  display: none;
}

.process-content h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- VALUES GRID ---------- */
.values-section {
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-primary);
}

.value-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- SCIENCE PAGE ---------- */
.sci-visual {
  position: relative;
}

.sci-dna-card {
  padding: 2.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
}

.sci-dna-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.sci-dna-icon svg {
  width: 100%;
  height: 100%;
}

.sci-dna-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.sci-dna-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* TECH PLATFORMS */
.tech-platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.tech-platform-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.tech-platform-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  border-color: rgba(91, 174, 214, 0.3);
}

.tech-platform-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-pale);
  background: rgba(91, 174, 214, 0.1);
  border: 1px solid rgba(91, 174, 214, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.tech-platform-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.tech-platform-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.tech-platform-tagline {
  font-size: 0.9rem;
  color: var(--blue-pale);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.tech-platform-card>p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tech-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-features li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-features li::before {
  content: '→';
  color: var(--blue-light);
  font-weight: 700;
}

/* R&D STAGES */
.rd-stages {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.rd-stage {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.rd-stage:hover {
  border-color: var(--blue-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rd-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-primary);
  font-size: 1.5rem;
  padding: 0 0.5rem;
  padding-top: 1.5rem;
}

.rd-stage-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.rd-stage h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.rd-stage p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* QUALITY STANDARDS */
.quality-standards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.quality-item:hover {
  border-color: var(--blue-primary);
  transform: translateX(4px);
}

.quality-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-item h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.quality-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* PRIORITIES GRID */
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.priority-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.priority-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.priority-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(91, 174, 214, 0.25);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.75rem;
}

.priority-item h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.priority-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ---------- PRODUCTS PAGE ---------- */
.product-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.6rem 1.35rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.filter-tab:hover {
  background: var(--light-bg);
  color: var(--blue-primary);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(20, 105, 160, 0.35);
}

.collection-section {
  background: var(--white);
}

.collection-alt {
  background: var(--off-white);
}

.collection-header {
  margin-bottom: 3rem;
}

.collection-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 0.5rem;
}

.collection-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.skin-boosters-tag {
  background: rgba(20, 105, 160, 0.1);
  color: var(--blue-primary);
  border: 1px solid rgba(20, 105, 160, 0.2);
}

.peelings-tag {
  background: rgba(27, 50, 82, 0.1);
  color: var(--blue-dark);
  border: 1px solid rgba(27, 50, 82, 0.2);
}

.home-care-tag {
  background: rgba(91, 174, 214, 0.12);
  color: #1469A0;
  border: 1px solid rgba(91, 174, 214, 0.25);
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Product Vial */
.product-vial {
  position: relative;
  width: 60px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vial-body {
  width: 100%;
  height: 100%;
  border-radius: 4px 4px 12px 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.vial-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(91, 174, 214, 0.7), rgba(91, 174, 214, 0.2));
  border-radius: 0 0 10px 10px;
  animation: vialLiquid 3s ease infinite;
}

@keyframes vialLiquid {

  0%,
  100% {
    height: 70%;
  }

  50% {
    height: 75%;
  }
}

.vial-label {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}

/* Product Tube */
.product-tube {
  position: relative;
  width: 100px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tube-body {
  flex: 1;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.tube-cap {
  width: 16px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
}

.tube-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
}

.product-card-info {
  padding: 1.75rem;
}

.product-card-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  background: rgba(20, 105, 160, 0.08);
  color: var(--blue-primary);
  border: 1px solid rgba(20, 105, 160, 0.18);
}

.product-badge.peeling {
  background: rgba(27, 50, 82, 0.08);
  color: var(--blue-dark);
  border-color: rgba(27, 50, 82, 0.18);
}

.product-badge.home {
  background: rgba(91, 174, 214, 0.12);
  color: #0d5a8a;
  border-color: rgba(91, 174, 214, 0.25);
}

.product-card-info h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-card-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.product-benefits span {
  font-size: 0.8rem;
  color: var(--blue-dark);
  font-weight: 500;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.product-use {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.professions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.profession-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.profession-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.profession-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.profession-card h4 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.profession-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ---------- PARTNERSHIPS PAGE ---------- */
.global-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.global-stat-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(20, 105, 160, 0.05), rgba(91, 174, 214, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.global-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gsc-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.gsc-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.regions-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.region-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.region-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  border-color: rgba(91, 174, 214, 0.25);
}

.region-flag {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.region-card h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.region-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.region-opp {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-light);
  background: rgba(91, 174, 214, 0.1);
  border: 1px solid rgba(91, 174, 214, 0.2);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

.partnership-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.partnership-type-card {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.partnership-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-primary);
}

.partnership-type-card.featured {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}

.ptc-featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

.ptc-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.partnership-type-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.partnership-type-card>p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.ptc-includes {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ptc-includes li {
  font-size: 0.85rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ptc-includes li::before {
  content: '✓';
  color: var(--blue-primary);
  font-weight: 700;
}

.partner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.partner-benefit {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.partner-benefit:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.pb-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.partner-benefit h4 {
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.partner-benefit p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ---------- NEWS PAGE ---------- */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.news-featured-visual {
  position: relative;
}

.news-cat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

.innovation-badge {
  background: rgba(20, 105, 160, 0.15);
  color: var(--blue-primary);
  border: 1px solid rgba(20, 105, 160, 0.25);
}

.partnerships-badge {
  background: rgba(27, 50, 82, 0.12);
  color: var(--blue-dark);
  border: 1px solid rgba(27, 50, 82, 0.2);
}

.science-badge {
  background: rgba(91, 174, 214, 0.15);
  color: #0d6ea0;
  border: 1px solid rgba(91, 174, 214, 0.25);
}

.company-badge {
  background: rgba(139, 153, 170, 0.12);
  color: #445566;
  border: 1px solid rgba(139, 153, 170, 0.25);
}

.news-featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.news-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nip-icon {
  font-size: 4rem;
  opacity: 0.6;
}

.news-featured-content .news-date {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-featured-content h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.news-featured-content>p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.news-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}

.news-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: var(--light-bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.news-grid-section {
  background: var(--off-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.news-cat {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.news-date-small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.news-card-body h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-read-more {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue-primary);
  transition: var(--transition);
}

.news-read-more:hover {
  padding-left: 4px;
}

/* NEWSLETTER */
.newsletter-section {
  padding: 5rem 0;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
}

.newsletter-content h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.newsletter-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-input-group input {
  flex: 1;
  min-width: 180px;
  padding: 0.75rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-group input:focus {
  border-color: var(--blue-light);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- CONTACT PAGE ---------- */

.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-card-header {
  margin-bottom: 2rem;
}

.form-card-header h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-card-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(20, 105, 160, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox */
.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: var(--transition);
  background: var(--off-white);
}

.checkbox-label input:checked+.checkbox-custom {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
}

.checkbox-label a {
  color: var(--blue-primary);
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 32px rgba(20, 105, 160, 0.35);
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Contact Info Cards */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.contact-info-card>p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.ci-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-info-item a:hover {
  color: var(--blue-primary);
}

.partnership-quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pql-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pql-item:hover {
  background: var(--off-white);
  border-color: var(--blue-primary);
  transform: translateX(4px);
}

.pql-item>span {
  font-size: 1.25rem;
}

.pql-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.pql-item small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.response-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rs-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rs-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rs-step strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.rs-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-regions-card {
  background: linear-gradient(135deg, rgba(20, 105, 160, 0.05), rgba(91, 174, 214, 0.08));
  border: 1px solid rgba(20, 105, 160, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.contact-regions-card h4 {
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.regions-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.region-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-body);
}

/* Chat Promo */
.chat-promo-section {
  padding: 4rem 0;
}

.chat-promo {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
}

.chat-promo-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}

.chat-promo-content {
  flex: 1;
}

.chat-promo-content h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.chat-promo-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

/* ---------- ANIMATIONS (scroll-triggered) ---------- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="slide-right"] {
  transform: translateX(-40px);
}

[data-animate="slide-left"] {
  transform: translateX(40px);
}

[data-animate].animated {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0ms);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .intro-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview-grid,
  .partnerships-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .science-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .regions-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .professions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-platforms-grid {
    grid-template-columns: 1fr;
  }

  .priorities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-h: 64px;
  }

  .nav-container {
    justify-content: flex-start;
    align-items: center;
  }

  /* 1 — Hamburger on the left */
  .nav-hamburger {
    display: flex;
    position: static;
    order: 1;
    margin-left: 0;
  }

  /* 2 — Logo centered via auto margins */
  .nav-logo {
    order: 2;
    margin-left: auto;
    margin-right: auto;
  }

  /* Hide the logo subtext on mobile to save space */
  .logo-sub {
    display: none;
  }

  /* 3 — Flags on the right */
  .lang-switcher {
    position: static;
    margin-left: 0;
    margin-right: 0;
    order: 3;
  }

  /* Mobile dropdown — hidden by default */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: auto;
    height: auto;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    background: #ffffff;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0.25rem 0 1rem;
    z-index: 9998;
    animation: mobileNavIn 0.25s ease forwards;
  }

  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open {
    display: flex;
  }

  /* Mobile Dropdown Overrides */
  .nav-dropdown {
    display: block;
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    background: #f4f9fc;
    margin-top: 0;
    min-width: auto;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  
  .nav-dropdown.expanded > .dropdown-menu {
    display: block;
  }
  
  .submenu-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    min-width: auto;
    background: #eef5f9;
  }
  
  .dropdown-item.has-submenu.expanded > .submenu-content {
    display: block;
  }
  
  .dropdown-link {
    display: block;
    padding: 0.9rem 1.5rem 0.9rem 3rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  
  .submenu-content .dropdown-link {
    padding: 0.8rem 1.5rem 0.8rem 4.5rem;
    font-size: 0.9rem;
    color: var(--text-body);
  }
  
  /* Position arrows to the far right like Mesoestetic */
  .nav-dropdown > .nav-link,
  .dropdown-item.has-submenu > .dropdown-link {
    position: relative;
    padding-right: 3rem; /* Leave room for arrow */
  }

  .nav-dropdown > .nav-link::after,
  .dropdown-item.has-submenu > .dropdown-link::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    margin: -4px 0 0 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .nav-dropdown.expanded > .nav-link::after,
  .dropdown-item.has-submenu.expanded > .dropdown-link::after {
    transform: rotate(225deg);
    margin-top: 0px;
  }

  /* Plain nav links */
  .nav-link {
    display: block;
    position: relative;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 1.1rem 1.5rem;
    width: 100%;
    text-align: left;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: transparent;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(0, 0, 0, 0.02);
    color: var(--blue-primary);
  }

  /* Contact Now CTA button at the bottom — blue with white text */
  .nav-cta {
    margin: 1rem 1.25rem 0.5rem !important;
    width: calc(100% - 2.5rem) !important;
    text-align: center;
    border-radius: 10px;
    padding: 0.9rem 1.5rem;
    border-bottom: none;
    background: linear-gradient(135deg, var(--blue-primary), #0d5a8a) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(20, 105, 160, 0.35);
  }

  .nav-cta:hover,
  .nav-cta.active {
    background: linear-gradient(135deg, #1778b5, var(--blue-primary)) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(20, 105, 160, 0.45);
  }

  .intro-strip-inner {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .strip-item:last-child {
    border-bottom: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  /* ── Hero product slide mobile: structured layout ── */
  .hero-slide-product {
    width: 100vw;
    height: 100svh;
    max-height: 100svh;
    overflow: hidden;
    flex-direction: row;
    /* side-by-side: text left, image right */
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }

  /* Gradient: dark on left for text, fade to transparent on right */
  .hero-product-overlay {
    background: linear-gradient(105deg,
        rgba(13, 30, 53, 1.0) 0%,
        rgba(13, 30, 53, 0.92) 40%,
        rgba(13, 30, 53, 0.55) 65%,
        rgba(13, 30, 53, 0.10) 100%);
  }

  /* Hero image collage — covers the full slide so images can fill gaps anywhere */
  .hero-collage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }

  /* Main hero image — large, on the RIGHT side */
  .hero-collage-main {
    position: absolute;
    width: 55%;
    /* Right column occupies ~52% of screen */
    right: -4%;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(5deg);
    filter: drop-shadow(-16px 24px 48px rgba(0, 0, 0, 0.7));
  }

  /* Top supporting image — fills the top-left gap (above text content) */
  .hero-collage-top {
    display: block;
    position: absolute;
    width: 34%;
    top: calc(var(--nav-h) + 0.25rem);
    left: 3%;
    opacity: 0.45;
    transform: rotate(-6deg);
    z-index: 2;
  }

  /* Bottom supporting image — fills the bottom-left gap (above CTA area) */
  .hero-collage-bottom {
    display: block;
    position: absolute;
    width: 34%;
    bottom: 7.5rem;
    /* Just above the pinned CTA buttons */
    left: 6%;
    opacity: 0.45;
    transform: rotate(5deg);
    z-index: 2;
  }

  /* Text column — left 55% of screen, vertically centered */
  .hero-product-text {
    position: relative;
    z-index: 3;
    width: 58%;
    max-width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    padding: calc(var(--nav-h) + 0.5rem) 0.75rem 4rem 1.25rem;
    /* 4rem bottom padding leaves room for the repositioned arrows */
    margin: 0;
    height: 100%;
  }

  .hero-product-eyebrow {
    font-size: 0.6rem;
    margin-bottom: 0.6rem;
    white-space: normal;
  }

  .hero-product-name {
    font-size: 2rem;
    line-height: 0.95;
    margin-bottom: 0.35rem;
  }

  .hero-product-sub {
    font-size: 0.68rem;
    margin-bottom: 0.65rem;
  }

  .hero-product-desc {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .hero-product-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 0;
  }

  .hero-product-cta .btn {
    text-align: center;
    padding: 0.65rem 0.85rem;
    font-size: 0.78rem;
  }

  /* ── Arrows: hidden on mobile ── */
  .hero-arrow {
    display: none !important;
  }

  .science-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 0;
    padding: 1rem 0 2rem;
  }
  .science-card {
    min-width: auto;
  }

  .product-categories {
    grid-template-columns: 1fr;
  }

  .prod-slide {
    padding: 2.5rem 1.5rem;
  }

  .prod-slider-btn {
    width: 36px;
    height: 36px;
  }

  .prod-slider-prev {
    left: 0.5rem;
  }

  .prod-slider-next {
    right: 0.5rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-connector {
    display: none;
  }

  .rd-stages {
    flex-direction: column;
  }

  .rd-arrow {
    transform: rotate(90deg);
    align-self: center;
    padding: 1rem 0; /* Override desktop padding-top to fix horizontal shifting */
  }

  .products-showcase {
    grid-template-columns: 1fr;
  }

  .partnership-types {
    grid-template-columns: 1fr;
  }

  .regions-cards {
    grid-template-columns: 1fr 1fr;
  }

  .partner-benefits-grid {
    grid-template-columns: 1fr;
  }

  .professions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-featured {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-card {
    padding: 2.5rem 1.75rem;
  }

  .cta-card h2 {
    font-size: 1.65rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .chat-promo {
    flex-direction: column;
    text-align: center;
  }

  .global-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .priorities-grid {
    grid-template-columns: 1fr;
  }

  .float-badge-1,
  .float-badge-2 {
    display: none;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .regions-cards {
    grid-template-columns: 1fr;
  }

  .professions-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- LANGUAGE SWITCHER ---------- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.4rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.lang-btn {
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-btn:hover {
  color: var(--blue-primary);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 2px 8px rgba(20, 105, 160, 0.35);
}

.lang-divider {
  color: var(--border);
  font-size: 0.8rem;
  user-select: none;
}

.lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  /* Flags-only: tighter padding */
  .lang-switcher {
    order: 3;
    margin-left: 0;
  }

  .lang-btn {
    padding: 0.3rem 0.4rem;
  }
}

/* ============================================================
   SCROLL TO TOP BUTTON — progress ring
   ============================================================ */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;

  /* Dark glass background */
  background: rgba(13, 30, 53, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(20, 105, 160, 0.3);

  /* Hidden by default */
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: rgba(20, 50, 82, 0.95);
  box-shadow: 0 8px 28px rgba(20, 105, 160, 0.5);
}

.scroll-to-top:active {
  transform: scale(0.93);
}

/* ---- SVG ring overlay ---- */
.stt-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* rotate so progress starts from the top */
  transform: rotate(-90deg);
  pointer-events: none;
}

.stt-track {
  fill: none;
  stroke: rgba(91, 174, 214, 0.18);
}

.stt-progress {
  fill: none;
  stroke: url(#sttGradient);
  /* fallback colour if gradient not supported */
  stroke: var(--blue-light);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.15s linear;
  filter: drop-shadow(0 0 4px rgba(91, 174, 214, 0.7));
}

/* ---- Arrow icon ---- */
.stt-arrow {
  position: relative;
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  z-index: 1;
}

.scroll-to-top:hover .stt-arrow {
  transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 44px;
    height: 44px;
  }

  .stt-arrow {
    width: 17px;
    height: 17px;
  }

  .chatbot-widget {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .chatbot-toggle {
    width: 44px;
    height: 44px;
  }

  .chatbot-toggle .chat-icon {
    width: 18px;
  }
}

/* ============================================================
   PARTNERSHIPS HERO IMAGE
   ============================================================ */
.partnerships-img-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  /* layered shadow for depth */
  box-shadow:
    0 2px 8px rgba(20, 105, 160, 0.06),
    0 12px 40px rgba(20, 105, 160, 0.14),
    0 32px 80px rgba(20, 105, 160, 0.10);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partnerships-img-wrap:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 16px rgba(20, 105, 160, 0.08),
    0 20px 56px rgba(20, 105, 160, 0.20),
    0 48px 100px rgba(20, 105, 160, 0.14);
}

.partnerships-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg, 24px);
  /* very slight desaturate on load, full colour on hover */
  filter: saturate(0.95);
  transition: filter 0.4s ease;
}

.partnerships-img-wrap:hover .partnerships-hero-img {
  filter: saturate(1.08) brightness(1.02);
}

@media (max-width: 1024px) {
  .partnerships-img-wrap {
    margin-top: 2rem;
    border-radius: var(--radius-md, 16px);
  }
}

/* ============================================================
   GLOBAL PARTNERSHIPS — ORBIT VISUAL
   ============================================================ */

/* Two-column section grid */
.partnerships-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Orbit visual outer container */
.orbit-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
}

/* ---- Ambient glow orbs ---- */
.ov-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
  z-index: 0;
}

.ov-orb--a {
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(91, 174, 214, 0.38) 0%, transparent 70%);
  top: -10%;
  left: 10%;
}

.ov-orb--b {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(20, 105, 160, 0.22) 0%, transparent 70%);
  bottom: 4%;
  right: 6%;
}

/* ---- SVG layer ---- */
.ov-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

/* Rotating dashed orbit rings */
.ov-ring {
  fill: none;
  stroke-width: 1;
}

.ov-ring--inner {
  stroke: rgba(91, 174, 214, 0.28);
  stroke-dasharray: 7 6;
  animation: ov-spin 28s linear infinite;
  transform-origin: 240px 240px;
}

.ov-ring--outer {
  stroke: rgba(91, 174, 214, 0.14);
  stroke-dasharray: 4 8;
  animation: ov-spin 42s linear infinite reverse;
  transform-origin: 240px 240px;
}

@keyframes ov-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Dashed connection lines */
.ov-line {
  fill: none;
  stroke: rgba(91, 174, 214, 0.5);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  stroke-linecap: round;
}

/* Animated particles */
.ov-particle {
  fill: #5BAED6;
  filter: drop-shadow(0 0 5px rgba(91, 174, 214, 0.95));
  opacity: 0.92;
}

/* ---- Center glassmorphism logo card ---- */
.ov-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

  width: 112px;
  height: 112px;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(91, 174, 214, 0.55);

  box-shadow:
    0 0 0 18px rgba(91, 174, 214, 0.07),
    0 0 0 38px rgba(91, 174, 214, 0.035),
    0 10px 36px rgba(20, 105, 160, 0.22);

  animation: ov-breathe 4s ease-in-out infinite;
}

@keyframes ov-breathe {

  0%,
  100% {
    box-shadow:
      0 0 0 18px rgba(91, 174, 214, 0.07),
      0 0 0 38px rgba(91, 174, 214, 0.035),
      0 10px 36px rgba(20, 105, 160, 0.22);
  }

  50% {
    box-shadow:
      0 0 0 25px rgba(91, 174, 214, 0.10),
      0 0 0 50px rgba(91, 174, 214, 0.05),
      0 14px 44px rgba(20, 105, 160, 0.30);
  }
}

.ov-logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ov-logo-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5px;
}

.ov-logo-lines span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--blue-primary);
}

.ov-logo-lines span:nth-child(1) {
  width: 22px;
}

.ov-logo-lines span:nth-child(2) {
  width: 15px;
}

.ov-logo-lines span:nth-child(3) {
  width: 9px;
}

.ov-logo-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--blue-dark);
  line-height: 1;
}

.ov-logo-city {
  font-size: 0.56rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ---- Region node badges ---- */
.ov-node {
  position: absolute;
  /* all nodes are centered on their coordinate */
  transform: translate(-50%, -50%);
  z-index: 10;

  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 20px 12px 14px;

  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(91, 174, 214, 0.42);
  border-radius: 50px;

  box-shadow:
    0 2px 8px rgba(20, 105, 160, 0.08),
    0 6px 20px rgba(20, 105, 160, 0.13);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.ov-node:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 4px 14px rgba(20, 105, 160, 0.12),
    0 10px 30px rgba(20, 105, 160, 0.20);
}

/* Glowing dot indicator */
.ov-node-dot {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-primary) 100%);
  animation: ov-dot-glow 2.5s ease-in-out infinite;
}

@keyframes ov-dot-glow {

  0%,
  100% {
    box-shadow: 0 0 7px rgba(91, 174, 214, 0.7);
  }

  50% {
    box-shadow: 0 0 14px rgba(91, 174, 214, 1.0);
  }
}

.ov-node--gcc .ov-node-dot {
  animation-delay: 0.6s;
}

.ov-node--mena .ov-node-dot {
  animation-delay: 1.2s;
}

.ov-node--em .ov-node-dot {
  animation-delay: 1.8s;
}

.ov-node-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: left;
  white-space: nowrap;
}

/* ---- Node positions — exactly 90° apart, radius 170px from center (240,240) ----
   Europe   : SVG (240,  70) → top: 14.6%, left: 50%
   GCC      : SVG (410, 240) → top: 50%,   left: 85.4%
   MENA     : SVG (240, 410) → top: 85.4%, left: 50%
   Emerging : SVG ( 70, 240) → top: 50%,   left: 14.6%
   ------------------------------------------------ */
.ov-node--eu {
  top: 14.6%;
  left: 50%;
}

.ov-node--gcc {
  top: 50%;
  left: 85.4%;
}

.ov-node--mena {
  top: 85.4%;
  left: 50%;
}

.ov-node--em {
  top: 50%;
  left: 14.6%;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .partnerships-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .orbit-visual {
    max-width: 420px;
  }
}

@media (max-width: 640px) {

  /* On very small screens, scale the orbit down significantly */
  .orbit-visual {
    max-width: 280px;
  }

  .ov-center {
    width: 96px;
    height: 96px;
    gap: 3px;
  }

  .ov-logo-text {
    font-size: 0.55rem;
  }

  .ov-logo-city {
    display: none;
  }

  /* Scale the node badges down */
  .ov-node {
    padding: 6px 10px 6px 8px;
    gap: 5px;
    border-radius: 30px;
  }

  .ov-node-label {
    font-size: 0.6rem;
  }

  .ov-node-dot {
    width: 7px;
    height: 7px;
    margin-top: 2px;
  }

  /* Prevent nodes clipping outside container */
  .ov-node--eu {
    top: 8%;
  }

  .ov-node--gcc {
    left: 92%;
  }

  .ov-node--mena {
    top: 92%;
  }

  .ov-node--em {
    left: 8%;
  }
}

/* ============================================================
   SCIENCE + VIDEO — Merged Section
   ============================================================ */

.sci-vid-section {
  position: relative;
  overflow: hidden;
  /* extra padding to give the section real presence */
  padding: 7rem 0;
}

/* ---------- Ambient video background ---------- */
.sci-vid-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* very slight saturation drop so it reads as atmosphere, not distraction */
  filter: saturate(0.8) brightness(0.85);
}

/* ---------- Dark gradient overlay (deep, layered) ---------- */
.sci-vid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Vignette corners */
    radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.4) 0%, transparent 70%),
    /* Deep dark base */
    linear-gradient(180deg,
      rgba(13, 22, 40, 0.55) 0%,
      rgba(9, 18, 35, 0.45) 40%,
      rgba(13, 22, 40, 0.6) 100%);
}

/* Pattern keeps the dot grid but toned down over video */
.sci-vid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.25;
}

/* ============================================================
   WATCH THE FILM — Premium Play Button
   ============================================================ */

.watch-film-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

/* Pulsing ring behind the play circle */
.wfb-ring {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid rgba(91, 174, 214, 0.45);
  animation: wfbRingPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wfbRingPulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.55;
  }

  50% {
    transform: translateY(-50%) scale(1.22);
    opacity: 0;
  }
}

/* Play icon circle */
.wfb-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
}

.wfb-icon svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
  /* optical centering of triangle */
}

.wfb-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.watch-film-btn:hover .wfb-icon {
  background: rgba(91, 174, 214, 0.25);
  border-color: var(--blue-light);
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(91, 174, 214, 0.5);
}

.watch-film-btn:hover .wfb-label {
  color: var(--white);
}

/* ============================================================
   FILM MODAL LIGHTBOX
   ============================================================ */

.film-modal {
  display: none;
  /* toggled to flex by .is-open */
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.film-modal.is-open {
  display: flex;
}

/* Backdrop */
.film-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.film-modal.is-visible .film-modal-backdrop {
  opacity: 1;
}

/* Inner wrapper — the "cinematic frame" */
.film-modal-inner {
  position: relative;
  z-index: 2;
  width: min(90vw, 1100px);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(91, 174, 214, 0.2),
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(91, 174, 214, 0.12);

  /* Entrance: scale up + fade in from slightly below */
  opacity: 0;
  transform: scale(0.88) translateY(32px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.film-modal.is-visible .film-modal-inner {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Video fills the entire modal frame */
.film-modal-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* Close button */
.film-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.film-modal-close svg {
  width: 18px;
  height: 18px;
}

.film-modal-close:hover {
  background: rgba(91, 174, 214, 0.35);
  transform: scale(1.1) rotate(90deg);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .sci-vid-section {
    padding: 4rem 0 2rem;
  }

  .wfb-icon {
    width: 50px;
    height: 50px;
  }

  .wfb-ring {
    width: 60px;
    height: 60px;
  }

  .wfb-label {
    font-size: 0.82rem;
  }

  .film-modal-inner {
    width: 96vw;
  }
}

/* ============================================================
   PORTFOLIO CATEGORIES
   ============================================================ */
.portfolio-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(91, 174, 214, 0.2);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 174, 214, 0.5);
  box-shadow: 0 15px 40px rgba(91, 174, 214, 0.15);
}

.card-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
}

.category-card:hover .card-bg-image {
  transform: scale(1.08);
}

.card-content-overlay {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(9, 18, 35, 0.95) 0%, rgba(9, 18, 35, 0.4) 60%, transparent 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.category-card:hover .card-content-overlay {
  opacity: 1;
}

.category-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
}

.category-card:hover h3 {
  color: var(--blue-light);
  transform: translateY(0);
}

.category-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(15px);
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), max-height 0.4s ease, margin-top 0.4s ease;
}

.category-card:hover p {
  opacity: 1;
  transform: translateY(0);
  max-height: 150px;
  margin-top: 0.85rem;
}

.category-card .btn {
  opacity: 0;
  transform: translateY(15px);
  max-height: 0;
  margin: 0 auto;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), max-height 0.4s ease, margin-top 0.4s ease;
  pointer-events: none;
  /* so it doesn't block hover when hidden */
}

.category-card:hover .btn {
  opacity: 1;
  transform: translateY(0);
  max-height: 50px;
  margin-top: 1.5rem;
  pointer-events: auto;
}

@media (max-width: 960px) {
  .portfolio-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* On mobile there is no hover — always show full card content */
  .category-card {
    height: 320px;
  }

  .card-content-overlay {
    opacity: 1;
    padding: 1.5rem 1.25rem;
  }

  .category-card h3 {
    transform: translateY(0);
    color: var(--white);
    font-size: 1.25rem;
  }

  .category-card p {
    opacity: 1;
    transform: translateY(0);
    max-height: 150px;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .category-card .btn {
    opacity: 1;
    transform: translateY(0);
    max-height: 40px;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    pointer-events: auto;
  }
}

/* ============================================================
   PARTNERSHIP OPPORTUNITIES
   ============================================================ */
.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.partner-type-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(91, 174, 214, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.partner-type-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(91, 174, 214, 0.4);
}

/* Subtle glow inside card */
.partner-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(91, 174, 214, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.partner-type-card:hover::before {
  opacity: 1;
}

.pt-featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(91, 174, 214, 0.3);
}

.pt-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, #ffffff, var(--blue-pale));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.partner-type-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.partner-type-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pt-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pt-features li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.4;
}

.pt-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-light);
  font-weight: 700;
  font-size: 0.9rem;
}

.partner-type-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(91, 174, 214, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.partner-type-card .btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
}

.partner-type-card.featured {
  border-color: rgba(91, 174, 214, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.partner-type-card.featured:hover {
  border-color: var(--blue-light);
}

.partner-type-card.featured .btn {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
}

.partner-type-card.featured .btn:hover {
  background: var(--blue-dark);
}

/* ============================================================
   REGIONS CARDS (Priority Markets)
   ============================================================ */
.regions-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.region-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(91, 174, 214, 0.12);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
}

.region-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 174, 214, 0.3);
}

.region-flag {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.region-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.region-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.region-opp {
  display: inline-block;
  align-self: center;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.region-opp.priority {
  background: rgba(91, 174, 214, 0.15);
  color: var(--blue-pale);
  border: 1px solid rgba(91, 174, 214, 0.3);
}

/* ============================================================
   CONTACT SECTION — Premium Redesign
   ============================================================ */

/* Two-column grid: form left, sidebar right */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
}

/* ── Form wrapper card ── */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(91, 174, 214, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.contact-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(91, 174, 214, 0.12);
}

.contact-form-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.contact-form-header p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Form layout ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* All inputs, selects, textareas */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(91, 174, 214, 0.18);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* Phone input group */
.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.contact-form .country-code-select {
  width: 95px;
  padding-left: 0.75rem;
  padding-right: 1.75rem;
  background-position: right 0.6rem center;
}

.phone-input-group input {
  flex: 1;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(91, 174, 214, 0.55);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(91, 174, 214, 0.12);
}

/* Select dropdown arrow */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(91,174,214,0.6)' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form select option {
  background: #0d1e35;
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* Checkbox row */
.form-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--blue-light);
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

/* Submit button override */
#submitContactBtn {
  margin-top: 0.25rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
  color: var(--white);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 30px rgba(91, 174, 214, 0.4);
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ── Sidebar ── */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(91, 174, 214, 0.15);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(91, 174, 214, 0.3);
}

.contact-info-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-pale);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(91, 174, 214, 0.12);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.ci-icon {
  font-size: 1.15rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.contact-info-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin: 0;
}

/* Partnership card */
.partnership-card>p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.partner-quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pql-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(91, 174, 214, 0.1);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.pql-item:hover {
  background: rgba(91, 174, 214, 0.1);
  border-color: rgba(91, 174, 214, 0.3);
  transform: translateX(4px);
}

.pql-icon {
  font-size: 1.15rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.pql-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.pql-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Regions strip card */
.contact-regions-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(91, 174, 214, 0.12);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.contact-regions-card h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.85rem;
}

.contact-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-regions span {
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  background: rgba(91, 174, 214, 0.08);
  border: 1px solid rgba(91, 174, 214, 0.2);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-regions-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .contact-form-wrapper {
    padding: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   COMING SOON ANIMATIONS
   ============================================================ */
.coming-soon-title {
  opacity: 0;
  animation: fadeInUpCinematic 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
  will-change: transform, opacity, filter;
}

.coming-soon-btn {
  opacity: 0;
  animation: fadeInPop 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s forwards;
  will-change: transform, opacity;
}

@keyframes fadeInUpCinematic {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes fadeInPop {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ============================================================
   INTERACTIVE PRODUCT CARD (SKIN BOOSTERS)
   ============================================================ */
.interactive-product-card {
  position: relative;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 580px;
}

.interactive-product-card .prod-title-default {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.interactive-product-card:hover .prod-title-default {
  opacity: 0;
  transform: translateY(20px);
}

.interactive-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.interactive-product-card:hover {
  border-color: rgba(91, 174, 214, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.interactive-product-card:hover::before {
  opacity: 1;
}

.interactive-product-card .prod-img-wrapper {
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interactive-product-card:hover .prod-img-wrapper {
  transform: rotate(4deg) scale(1.08) translateY(-40px);
}

.interactive-product-card img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  transition: filter 0.5s ease;
}

.interactive-product-card .prod-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to top, rgba(9, 18, 35, 0.95) 0%, rgba(9, 18, 35, 0.8) 50%, transparent 100%);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  pointer-events: none;
}

.interactive-product-card:hover .prod-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.interactive-product-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.interactive-product-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE DESIGN (MOBILE & TABLET FIXES)
   ============================================================ */
@media (max-width: 900px) {

  /* Dedicated Product Pages Split Layout */
  .product-split-layout {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem !important;
  }

  .product-split-specs {
    margin: 0 auto 3rem auto !important;
  }

  .product-split-actions {
    justify-content: center;
  }
}

@media (max-width: 1024px) {

  /* Interactive Product Cards (Skin Boosters) */
  .interactive-product-card {
    min-height: 450px;
    padding: 1rem;
  }

  .interactive-product-card img {
    max-height: 280px;
  }

  .interactive-product-card .prod-title-default {
    margin-top: 1rem;
  }

  .interactive-product-card .prod-title-default h3 {
    font-size: 1.4rem;
  }

  .interactive-product-card .prod-info {
    padding: 2rem 1rem 1rem;
  }

  .interactive-product-card .prod-info h3 {
    font-size: 1.4rem;
  }

  .interactive-product-card .prod-specs>div>span {
    font-size: 0.75rem !important;
  }

  /* Fallback for touch devices (optional, ensures tap-to-hover works smoothly) */
  @media (hover: none) {

    .interactive-product-card:active .prod-info,
    .interactive-product-card:focus-within .prod-info {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .interactive-product-card:active .prod-title-default,
    .interactive-product-card:focus-within .prod-title-default {
      opacity: 0;
      transform: translateY(20px);
    }
  }
}

@media (max-width: 480px) {
  .product-split-actions {
    flex-direction: column;
    width: 100%;
  }

  .product-split-actions .btn {
    width: 100%;
  }
}

/* Brand Logo */
.brand-logo { max-height: 34px; width: auto; object-fit: contain; }
.brand-logo-ov { max-width: 84px; height: auto; object-fit: contain; width: 100%; }

@media (max-width: 640px) {
  .brand-logo-ov { max-width: 68px; }
}

@media (max-width: 480px) {
  .brand-logo { max-height: 28px; }
  .brand-logo-ov { max-width: 64px; }
}
