/* ============================================================
   ROOT VARIABLES
   index_2 vars + index_1 extras for later sections
   ============================================================ */
:root {
  /* index_2 */
  --sky-blue: #28387e;
  --sky-blue-light: #3a52a8;
  --sky-blue-deep: #1a2558;
  --sky-accent: #4fc3f7;
  --sky-accent2: #00e5ff;
  --sky-gold: #f0c040;
  --white: #ffffff;
  --off-white: #f0f4ff;
  --text-muted: #8a9bc0;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-hover: rgba(255,255,255,0.10);
  --dark-bg: #080e22;
  --dark-mid: #0d1630;
  --dark-card: #111c3a;
  /* index_1 extras — used in products / process / vision / news sections */
  --brand-blue: #28387e;
  --brand-blue-dark: #1a2656;
  --brand-blue-light: #3a4fa0;
  --accent-cyan: #00d4ff;
  --accent-green: #00ff88;
  --dark: #0a0e1a;
  --off-white-1: #f0f2f8;
  --gray-100: #e8eaf0;
  --gray-600: #6b7280;
  --font-mono: 'Space Mono', monospace;
}

/* ============================================================
   RESET & BASE  (index_2)
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   ANIMATED BACKGROUND  (verbatim index_2)
   ============================================================ */
.bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-canvas::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(40,56,126,0.45) 0%, transparent 70%);
  animation: nebula-drift 18s ease-in-out infinite alternate;
  border-radius: 50%;
}
.bg-canvas::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  bottom: -100px; left: -150px;
  background: radial-gradient(circle, rgba(79,195,247,0.12) 0%, transparent 70%);
  animation: nebula-drift 24s ease-in-out infinite alternate-reverse;
  border-radius: 50%;
}
@keyframes nebula-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px,40px) scale(1.12); }
}
.molecule-field {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.molecule {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky-accent);
  opacity: 0.15;
  animation: float-molecule linear infinite;
}
.molecule::before, .molecule::after {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.7;
}
.molecule::before { top: -18px; left: 10px; }
.molecule::after  { top: 10px; left: 18px; }
.molecule-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,195,247,0.3), transparent);
  transform-origin: left center;
  animation: line-pulse 4s ease-in-out infinite;
}
@keyframes float-molecule {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}
@keyframes line-pulse {
  0%,100% { opacity: 0.1; }
  50%      { opacity: 0.4; }
}

/* ============================================================
   NAVBAR  (verbatim index_2)
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,14,34,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}
nav.scrolled {
  height: 66px;
  background: rgba(8,14,34,0.92);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 48px; width: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--sky-blue);
  padding: 4px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14px,3.5vw,22px);
  letter-spacing: clamp(1px,0.5vw,3px);
  color: var(--white);
  white-space: nowrap;
}
.nav-logo-text span:last-child {
  font-size: clamp(8px,1.8vw,9px);
  letter-spacing: clamp(1px,0.4vw,2.5px);
  color: var(--sky-accent);
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sky-accent);
  transition: width 0.3s ease;
}
.nav-links a:hover              { color: var(--white); }
.nav-links a:hover::after       { width: 100%; }
.nav-links a.active             { color: var(--sky-accent); }
.nav-links a.active::after      { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.lang-btn:hover {
  background: var(--glass-hover);
  color: var(--white);
  border-color: var(--sky-accent);
}
.nav-cta {
  background: linear-gradient(135deg, var(--sky-blue-light), var(--sky-blue));
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(40,56,126,0.6);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 4px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80px; left: 0;
  width: 100%;
  background: rgba(8,14,34,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 999;
  padding: 24px 5% 32px;
  gap: 0;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-menu a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--sky-accent); }
.mobile-menu-bottom {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.mobile-menu-bottom .lang-btn,
.mobile-menu-bottom .nav-cta { flex: 1; text-align: center; }

/* ============================================================
   HERO SECTION  (verbatim index_2)
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,14,34,0.95) 45%, rgba(8,14,34,0.5) 100%),
    url('./assets/images/hero_1.png') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay-gradient {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 35%;
  background: linear-gradient(to top, var(--dark-bg), transparent);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 780px;
  padding-top: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky-accent);
  margin-bottom: 28px;
  animation: fade-up 0.8s ease forwards;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--sky-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(79,195,247,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(79,195,247,0); }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px,10vw,130px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 8px;
  animation: fade-up 0.8s 0.2s ease forwards;
  opacity: 0;
}
.hero-title .line1 { color: var(--white); display: block; }
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--sky-accent), var(--sky-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px,3vw,28px);
  letter-spacing: 8px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  animation: fade-up 0.8s 0.35s ease forwards;
  opacity: 0;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fade-up 0.8s 0.5s ease forwards;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  animation: fade-up 0.8s 0.65s ease forwards;
  opacity: 0;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky-blue-light) 0%, var(--sky-blue) 100%);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(40,56,126,0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.hero-stats {
  position: absolute;
  right: 5%; bottom: 14%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fade-left 1s 0.8s ease forwards;
  opacity: 0;
}
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
  min-width: 140px;
  transition: transform 0.3s, background 0.3s;
}
.stat-card:hover {
  transform: translateX(-6px);
  background: rgba(40,56,126,0.3);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--sky-accent);
  line-height: 1;
  letter-spacing: 1px;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-up 1s 1s ease forwards;
  opacity: 0;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--sky-accent);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%,100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ============================================================
   SHARED SECTION UTILITIES  (index_2)
   ============================================================ */
section { position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--sky-accent); margin-bottom: 14px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px,6vw,68px);
  line-height: 1; letter-spacing: 1px;
}
.section-title span {
  background: linear-gradient(135deg, var(--sky-accent), var(--sky-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--sky-accent), var(--sky-blue-light));
  margin: 20px auto 0; border-radius: 2px;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }

/* ============================================================
   WHO WE ARE  (verbatim index_1 — light)
   ============================================================ */
.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    display: block;
}
.section-label.dark { color: var(--brand-blue-light); }
.about-strip {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.about-strip::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(40,56,126,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(40,56,126,0.12);
}
.about-image-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--brand-blue);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 12px 40px rgba(40,56,126,0.3);
}
.about-image-badge span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
}
.about-text .section-title-1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--dark);
}
.section-subtitle-1 {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 560px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}
.about-feature {
    padding: 20px;
    background: var(--off-white-1);
    border-radius: 14px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}
.about-feature:hover {
    background: var(--white);
    border-color: var(--brand-blue-light);
    box-shadow: 0 8px 30px rgba(40,56,126,0.08);
    transform: translateY(-2px);
}
.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 6px;
}
.about-feature p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ============================================================
   THE GROUP — COMPANIES  (verbatim index_2 + bubbles layer)
   ============================================================ */
#companies {
  padding: 100px 0;
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}

/* Bubbles animation — verbatim index_1 */
.companies-bubbles-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.bubble {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.03));
    border: 1px solid rgba(0, 212, 255, 0.08);
    animation: riseBubble linear infinite;
}
@keyframes riseBubble {
    0%   { transform: translateY(0) scale(1);        opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-110vh) scale(0.5); opacity: 0; }
}

/* Cards (verbatim index_2) */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.company-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}
.company-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--sky-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.company-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,56,126,0.15), transparent);
  transition: transform 0.4s ease;
}
.company-card:hover {
  background: rgba(40,56,126,0.12);
  border-color: rgba(79,195,247,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.company-card:hover::before { transform: scaleX(1); }
.company-card:hover::after  { transform: scale(1.5); }
.company-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.company-img-wrap {
  width: 64px; height: 64px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--dark-card);
  flex-shrink: 0;
}
.company-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.company-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--sky-accent);
  background: rgba(79,195,247,0.1);
  border: 1px solid rgba(79,195,247,0.2);
  padding: 5px 12px; border-radius: 20px;
}
.company-name { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.company-name span { color: var(--sky-accent); }
.company-desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 20px; }
.company-feature { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.company-feature-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sky-accent); flex-shrink: 0; }

/* ============================================================
   MARKETS SECTION  (light, standalone)
   ============================================================ */
#markets {
  padding: 100px 0;
  background: var(--off-white-1);
  position: relative;
  overflow: hidden;
}
#markets::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(40,56,126,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.markets-header {
  text-align: center;
  margin-bottom: 56px;
}
.markets-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-blue-light);
  margin-bottom: 12px;
  display: block;
}
.markets-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.markets-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto;
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mkt-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 28px 22px;
  transition: all 0.35s ease;
  cursor: default;
}
.mkt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--mkt-accent, linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light)));
}
.mkt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40,56,126,0.15);
  box-shadow: 0 20px 50px rgba(40,56,126,0.1);
}
.mkt-flag {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.mkt-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.mkt-status {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.mkt-status.active {
  background: rgba(40,56,126,0.08);
  color: var(--brand-blue-light);
  border: 1px solid rgba(40,56,126,0.18);
}
.mkt-status.hq {
  background: rgba(40,56,126,0.06);
  color: var(--brand-blue);
  border: 1px solid rgba(40,56,126,0.14);
}
.mkt-status.target {
  background: rgba(180,140,20,0.08);
  color: #9a7a10;
  border: 1px solid rgba(180,140,20,0.2);
}
.mkt-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .markets-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .markets-grid { grid-template-columns: 1fr; }
}


.products { padding: 140px 0 120px; background: var(--dark); position: relative; overflow: hidden; }
.products::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(0,212,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 30%, rgba(40,56,126,0.1)  0%, transparent 70%);
  pointer-events: none;
}
.products-drips { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.drip-line {
  position: absolute; top: -20%; width: 1px; height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.25), transparent);
  animation: dripFall linear infinite;
}
@keyframes dripFall {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(450%); opacity: 0; }
}
.products-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 2; }
.products-header .section-title { color: var(--white); }
.p-eyebrow { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 12px; display: block; }
.p-subtitle { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 560px; margin: 0 auto; }
.products-scroll { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; z-index: 2; }
.product-card { border-radius: 24px; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); transition: all 0.5s cubic-bezier(0.16,1,0.3,1); position: relative; cursor: pointer; transform-style: preserve-3d; perspective: 800px; }
.product-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,212,255,0.2); transform: translateY(-12px) rotateX(2deg); box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,255,0.08); }
.product-card-image { height: 280px; position: relative; overflow: hidden; background: linear-gradient(160deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%); }
.product-card-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(180deg, transparent, rgba(10,14,26,0.9)); z-index: 1; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.5s; filter: brightness(0.9); }
.product-card:hover .product-card-image img { transform: scale(1.12); filter: brightness(1.05); }
.product-badge { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.5); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 8px 14px; z-index: 2; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-cyan); }
.product-card-body { padding: 28px 28px 32px; position: relative; }
.product-card-category { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.product-card-category::before { content: ''; width: 20px; height: 1px; background: var(--accent-cyan); }
.product-card-body h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; font-family: 'Outfit', sans-serif; }
.product-card-body p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.product-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 0.88rem; font-weight: 600; color: var(--accent-cyan); transition: gap 0.3s; position: relative; }
.product-card-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent-cyan); transition: width 0.3s; }
.product-card:hover .product-card-link::after { width: 100%; }
.product-card-link:hover { gap: 12px; }
.product-card-link svg { width: 16px; height: 16px; }
.products-watermark { position: absolute; bottom: -60px; right: -20px; font-size: 18rem; font-weight: 900; color: rgba(255,255,255,0.015); line-height: 1; pointer-events: none; z-index: 0; font-family: 'Outfit', sans-serif; }

/* ============================================================
   OUR PROCESS  (index_1)
   ============================================================ */
.process { padding: 120px 0; background: var(--off-white-1); position: relative; overflow: hidden; }
.process-header { text-align: center; margin-bottom: 80px; }
.pr-eyebrow { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--brand-blue-light); margin-bottom: 12px; display: block; }
.pr-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; line-height: 1.15; color: var(--dark); margin-bottom: 20px; }
.pr-subtitle { font-size: 1.1rem; line-height: 1.7; color: var(--gray-600); max-width: 560px; margin: 0 auto; }
.process-timeline { display: flex; align-items: flex-start; justify-content: center; gap: 0; position: relative; }
.process-line { position: absolute; top: 40px; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg, var(--brand-blue-light), var(--accent-cyan), var(--brand-blue-light)); z-index: 0; }
.process-step { flex: 1; max-width: 220px; text-align: center; position: relative; z-index: 1; }
.process-node { width: 80px; height: 80px; border-radius: 50%; background: var(--white); border: 3px solid var(--brand-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; transition: all 0.4s; }
.process-node::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 2px dashed rgba(40,56,126,0.15); animation: spin 12s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.process-node svg { width: 32px; height: 32px; fill: var(--brand-blue); }
.process-step:hover .process-node { background: var(--brand-blue); box-shadow: 0 8px 30px rgba(40,56,126,0.25); }
.process-step:hover .process-node svg { fill: var(--white); }
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; font-family: 'Outfit', sans-serif; }
.process-step p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }

/* ============================================================
   BUBBLING LIQUID STRIP  —  LIGHT theme (lives inside process)
   ============================================================ */
.process-visual-strip {
  margin-top: 80px;
  position: relative;
  height: 110px;
  overflow: hidden;
  border-radius: 12px;
  /* Light blue-grey gradient to sit naturally on the off-white section */
  background: linear-gradient(90deg, #dce6f5, #eaf1fb, #dce6f5);
  border: 1px solid rgba(40,56,126,0.12);
  box-shadow: inset 0 2px 10px rgba(40,56,126,0.07);
}
.liquid-bubbles-wrap {
  position: absolute;
  inset: 0;
}
.liq-bubble {
  position: absolute;
  bottom: -24px;
  border-radius: 50%;
  /* Blue tint to read clearly on the light bg */
  background: radial-gradient(circle at 30% 30%, rgba(40,56,126,0.22), rgba(58,82,168,0.07));
  border: 1px solid rgba(40,56,126,0.18);
  animation: liq-rise linear infinite;
}
@keyframes liq-rise {
  0%   { transform: translateY(0) translateX(0)   scale(1);   opacity: 0.9; }
  50%  { transform: translateY(-55px) translateX(6px) scale(0.8); opacity: 0.7; }
  100% { transform: translateY(-130px) translateX(-4px) scale(0.4); opacity: 0; }
}
.liquid-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  /* Dark navy to contrast against light bg */
  color: rgba(28,46,110,0.35);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   OUR DIRECTION  (index_1 cinematic vision)
   ============================================================ */
.vision { padding: 0; background: var(--dark); position: relative; overflow: hidden; }
.vision-header { text-align: center; padding: 120px 0 60px; position: relative; z-index: 2; }
.vn-eyebrow { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 12px; display: block; }
.vn-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.vn-subtitle { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 560px; margin: 0 auto; }
.vision-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; min-height: 520px; }
.vision-card { position: relative; overflow: hidden; cursor: pointer; background: var(--brand-blue-dark); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.vision-card-bg { position: absolute; inset: 0; z-index: 0; }
.vision-card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16,1,0.3,1), filter 0.6s; filter: brightness(0.35) saturate(0.8); }
.vision-card:hover .vision-card-bg img { transform: scale(1.1); filter: brightness(0.5) saturate(1); }
.vision-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,14,26,0.3) 0%, rgba(10,14,26,0.85) 100%); z-index: 1; transition: background 0.5s; }
.vision-card:hover::before { background: linear-gradient(180deg, rgba(40,56,126,0.2) 0%, rgba(10,14,26,0.9) 100%); }
.vision-card::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green)); z-index: 3; transition: width 0.5s cubic-bezier(0.16,1,0.3,1); }
.vision-card:hover::after { width: 100%; left: 0; transform: none; }
.vision-card-content { position: relative; z-index: 2; padding: 60px 40px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 520px; }
.vision-card-number { font-family: var(--font-mono); font-size: 5rem; font-weight: 700; color: rgba(0,212,255,0.08); line-height: 1; position: absolute; top: 40px; left: 40px; transition: color 0.5s; }
.vision-card:hover .vision-card-number { color: rgba(0,212,255,0.15); }
.vision-card-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.vision-card-label::before { content: ''; width: 24px; height: 1px; background: var(--accent-cyan); }
.vision-card h3 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; font-family: 'Outfit', sans-serif; }
.vision-card p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 340px; }
.vision-card-line { width: 40px; height: 2px; background: var(--accent-cyan); margin-top: 24px; transition: width 0.4s; }
.vision-card:hover .vision-card-line { width: 80px; }
.vision-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.v-particle { position: absolute; width: 2px; height: 2px; background: rgba(0,212,255,0.3); border-radius: 50%; animation: vFloat linear infinite; }
@keyframes vFloat { 0% { transform: translateY(0) translateX(0); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateY(-300px) translateX(40px); opacity: 0; } }

/* ============================================================
   LATEST NEWS  (index_1)
   ============================================================ */
.news { padding: 120px 0; background: var(--white); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.nw-eyebrow { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--brand-blue-light); margin-bottom: 12px; display: block; }
.nw-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; line-height: 1.15; color: var(--dark); }
.view-all { font-weight: 600; font-size: 0.95rem; color: var(--brand-blue); display: flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.view-all:hover { gap: 10px; }
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.news-card { border-radius: 18px; overflow: hidden; background: var(--off-white-1); border: 1px solid var(--gray-100); transition: all 0.4s; }
.news-card:hover { box-shadow: 0 16px 50px rgba(40,56,126,0.08); transform: translateY(-4px); }
.news-card-image { height: 200px; overflow: hidden; }
.news-card:first-child .news-card-image { height: 280px; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.news-card:hover .news-card-image img { transform: scale(1.06); }
.news-card-body { padding: 24px; }
.news-card-date { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 1px; color: var(--gray-600); margin-bottom: 8px; }
.news-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 8px; font-family: 'Outfit', sans-serif; }
.news-card-body p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   CTA  (index_1)
   ============================================================ */
.cta { padding: 100px 0; background: var(--off-white-1); }
.cta-box { background: linear-gradient(135deg, var(--dark), var(--brand-blue-dark)); border-radius: 28px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,212,255,0.15), transparent 70%); border-radius: 50%; }
.cta-box h2 { font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; font-family: 'Outfit', sans-serif; }
.cta-box p { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; position: relative; }

/* ============================================================
   FOOTER  (index_1)
   ============================================================ */
.footer { background: var(--dark); padding: 80px 0 40px; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-brand h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 16px; font-family: 'Outfit', sans-serif; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--sky-accent); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-bar-socials { display: flex; gap: 16px; }
.footer-bar-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-bar-socials a:hover { border-color: var(--sky-accent); background: rgba(79,195,247,0.1); }
.footer-bar-socials a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }

/* ============================================================
   ANIMATIONS  (index_2)
   ============================================================ */
@keyframes fade-up  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-left { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
.reveal { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
body.js-ready .reveal { opacity: 0; transform: translateY(24px); }
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .companies-grid { grid-template-columns: repeat(2,1fr); }
  .products-scroll { grid-template-columns: repeat(2,1fr); }
  .vision-grid { grid-template-columns: 1fr; }
  .vision-card-content { min-height: 380px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { flex-wrap: wrap; gap: 32px; }
  .process-line { display: none; }
  .hero-stats { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .companies-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .products-scroll { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card:first-child .news-card-image { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 48px 24px; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-features { grid-template-columns: 1fr; }
  .process-step { max-width: 100%; }
  .liquid-label { font-size: 10px; letter-spacing: 3px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .nav-logo-text span:first-child { font-size: 15px; letter-spacing: 1px; }
  .nav-logo-text span:last-child  { font-size: 8px; letter-spacing: 1px; }
  .nav-logo img { height: 36px; width: 36px; }
}

/* scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--sky-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky-blue-light); }
