/* Radical Scientific / Global Industrial Theme */

:root {
  --bg: #03060b;
  --bg-2: #07101f;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-solid: #0b1424;
  --accent: #00d4ff;
  --accent-2: #2a5cff;
  --accent-3: #00e5a0;
  --gold: #d4af37;
  --text: #f4f7fb;
  --muted: #9fb0c7;
  --border: rgba(255, 255, 255, 0.09);
  --glow: 0 0 18px rgba(0, 212, 255, 0.25);
  --radius: 18px;
  --max-width: 1400px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1400px 700px at 15% 0%, rgba(42, 92, 255, 0.13), transparent 60%),
    radial-gradient(1200px 600px at 95% 10%, rgba(0, 212, 255, 0.08), transparent 55%),
    radial-gradient(900px 900px at 50% 100%, rgba(212, 175, 55, 0.04), transparent 50%),
    linear-gradient(180deg, #03060b 0%, #050a14 100%);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
a:hover { color: #fff; text-shadow: var(--glow); }

img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-2);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Scroll progress */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: var(--glow);
  width: 0%;
  z-index: 10000;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
#header.scrolled {
  background: rgba(3, 6, 11, 0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
}
#header h1 { margin: 0; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
#header h1 a { color: #fff; display: flex; align-items: center; gap: 10px; }
#header h1 a::before {
  content: "V";
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #03060b;
  font-size: 0.85em;
  font-weight: 900;
  letter-spacing: 0;
}

#top-nav { display: flex; align-items: center; gap: 28px; }
#top-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
}
#top-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: var(--glow);
  transition: width 0.2s;
}
#top-nav a:hover { color: #fff; }
#top-nav a:hover::after { width: 100%; }

.lang-select {
  background: rgba(0, 240, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
}
.lang-select option { background: var(--surface-solid); color: #fff; }
.lang-select:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.25); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* Mobile menu */
#mobile-menu {
  position: fixed;
  top: 72px;
  right: -320px;
  width: 280px;
  height: calc(100vh - 72px);
  background: rgba(7, 16, 31, 0.98);
  backdrop-filter: blur(16px);
  border-left: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
  transition: right 0.3s ease;
}
#mobile-menu.open { right: 0; }
#mobile-menu a {
  color: var(--text);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 24px 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.55;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 6, 11, 0.45);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.35;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(3,6,11,0.2) 0%, var(--bg) 85%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
  padding: 0 24px;
}
.logo-circle {
  display: inline-block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: var(--glow), 0 0 40px rgba(42, 92, 255, 0.25);
  margin-bottom: 24px;
}
.logo-circle img { width: 100%; height: 100%; object-fit: cover; }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.06);
}

.hero h2 {
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1.0;
  margin: 0 0 28px;
  font-weight: 800;
  letter-spacing: -3px;
  color: #fff;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
}
.hero h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}
.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.6px;
  border: 1px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: #fff;
  color: #03060b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* Hero global grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Global presence band */
.global-band {
  position: relative;
  z-index: 2;
  padding: 34px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}
.global-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.global-band-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.global-band-item i {
  color: var(--gold);
  font-size: 1.35rem;
}
@media (max-width: 768px) {
  .global-band-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .global-band-grid { grid-template-columns: 1fr; }
}

/* Global cities ticker */
.ticker-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 22px 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 11, 0.9) 0%, transparent 8%, transparent 92%, rgba(3, 6, 11, 0.9) 100%),
    rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.ticker-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.ticker-item i { color: var(--gold); font-size: 0.9rem; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* Stats */
.stats-band {
  position: relative;
  z-index: 2;
  padding: 54px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-band .container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: 110px 24px;
}
.section-light { background: var(--bg); }
.section-dark { background: var(--bg-2); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.narrow { max-width: 900px; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 0 16px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}
.section-title span { position: relative; display: inline-block; }
.section-title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Cards / panels */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}
.grid-4 > .field-card:nth-child(1) { transition-delay: 0s; }
.grid-4 > .field-card:nth-child(2) { transition-delay: 0.1s; }
.grid-4 > .field-card:nth-child(3) { transition-delay: 0.2s; }
.grid-4 > .field-card:nth-child(4) { transition-delay: 0.3s; }
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  backdrop-filter: blur(10px);
}
.panel:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(0, 240, 255, 0.12);
}
.panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
}
.panel h3 { margin: 0 0 12px; font-size: 1.25rem; }
.panel p { color: var(--muted); margin: 0; }

/* Specializations — premium global corporate cards */
#specializations {
  background:
    radial-gradient(1200px 500px at 50% 0%, rgba(212, 175, 55, 0.07), transparent 60%),
    var(--bg-2);
}
.spec-grid {
  counter-reset: spec;
}
.spec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--gold);
  border-radius: 14px;
  padding: 38px 32px;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}
.spec-card::before {
  counter-increment: spec;
  content: counter(spec, decimal-leading-zero);
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(212, 175, 55, 0.35);
}
.spec-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.055);
  border-top-color: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}
.spec-card .panel-icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  background: transparent;
  border: none;
  margin-bottom: 26px;
}
.spec-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 14px;
  padding-right: 38px;
}
.spec-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .spec-card { padding: 32px 26px; }
}
@media (max-width: 640px) {
  .spec-card { padding: 28px 22px; }
  .spec-card h3 { font-size: 1.05rem; }
  .spec-card p { font-size: 0.9rem; }
}

/* Partner strip */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  align-items: center;
}
.partner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
.partner:hover { border-color: var(--accent); color: #fff; box-shadow: var(--glow); }

/* Global hubs route */
.global-hubs {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 50px 24px 70px;
  margin-bottom: 30px;
  overflow-x: auto;
}
.hub-route {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), var(--accent), transparent);
  opacity: 0.5;
}
.hub-route-dot {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px var(--accent);
  animation: hubDotMove 6s linear infinite;
}
@keyframes hubDotMove {
  0% { left: 5%; opacity: 1; }
  50% { opacity: 1; }
  100% { left: 95%; opacity: 0; }
}
.hub {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 90px;
}
.hub-flag {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hub:hover .hub-flag {
  transform: scale(1.12);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.3);
}
.hub-name {
  background: rgba(3, 6, 11, 0.7);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .global-hubs { padding: 40px 16px 60px; }
  .hub-flag { width: 48px; height: 48px; font-size: 1.3rem; }
  .hub-name { font-size: 0.7rem; }
}

/* 3D-style globe */
.globe-wrap {
  display: flex;
  justify-content: center;
  padding: 30px 0 10px;
}
.globe {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.22) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.12) 0%, rgba(3, 6, 11, 0.95) 75%);
  box-shadow:
    inset -25px -25px 60px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(0, 212, 255, 0.15);
}
.globe::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.06) 0, rgba(0, 212, 255, 0.06) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(90deg, rgba(0, 212, 255, 0.06) 0, rgba(0, 212, 255, 0.06) 1px, transparent 1px, transparent 22px);
  animation: spinGrid 25s linear infinite;
}
.globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 35%);
}
.globe-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(75deg);
}
.globe-rings span:nth-child(1) {
  width: 340px;
  height: 340px;
  animation: ringRotate1 18s linear infinite;
}
.globe-rings span:nth-child(2) {
  width: 420px;
  height: 420px;
  border-color: rgba(212, 175, 55, 0.1);
  animation: ringRotate2 24s linear infinite reverse;
}
@keyframes spinGrid { to { transform: rotate(360deg); } }
@keyframes ringRotate1 { to { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg); } }
@keyframes ringRotate2 { to { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(-360deg); } }
@media (max-width: 640px) {
  .globe { width: 200px; height: 200px; }
  .globe-rings span:nth-child(1) { width: 260px; height: 260px; }
  .globe-rings span:nth-child(2) { width: 320px; height: 320px; }
}

/* Process timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2));
  box-shadow: var(--glow);
}
.step {
  position: relative;
  padding: 0 0 40px 44px;
}
.step::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: var(--glow);
}
.step h3 { margin: 0 0 8px; color: #fff; font-size: 1.2rem; }
.step p { margin: 0; color: var(--muted); }

/* Contact / Footer */
.contact-section { padding-bottom: 40px; }
#footer {
  background: rgba(3, 6, 11, 0.85);
  border-top: 1px solid var(--border);
  padding: 80px 24px 40px;
}
#footer .container { max-width: var(--max-width); margin: 0 auto; }
#footer h2 { text-align: center; margin-bottom: 28px; font-size: 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

form .fields { display: grid; gap: 20px; margin-bottom: 24px; }
form .field { display: flex; flex-direction: column; gap: 6px; }
form label { font-weight: 600; color: var(--muted); font-size: 0.9rem; }
form input,
form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
form input:focus,
form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}
form textarea { min-height: 140px; resize: vertical; }
form input[type="submit"] {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #000;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  padding: 14px 32px;
}
form input[type="submit"]:disabled { opacity: 0.5; cursor: not-allowed; }

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  color: var(--muted);
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.12);
}
.contact-detail h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.contact-detail p,
.contact-detail a {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}
.contact-detail a:hover { color: var(--accent); }

.copyright {
  text-align: center;
  color: var(--muted);
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 900px;
  width: calc(100% - 40px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
#cookie-banner.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions button {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.cookie-accept { background: rgba(0, 240, 255, 0.15) !important; }
.cookie-actions button:hover { border-color: var(--accent); }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { box-shadow: var(--glow); border-color: var(--accent); }

/* Focus */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* RTL */
html[dir="rtl"] #header { direction: rtl; }
html[dir="rtl"] #top-nav { direction: rtl; }
html[dir="rtl"] .hero-actions { direction: rtl; }
html[dir="rtl"] .timeline { padding-left: 0; padding-right: 30px; }
html[dir="rtl"] .timeline::before { left: auto; right: 8px; }
html[dir="rtl"] .step { padding: 0 44px 40px 0; }
html[dir="rtl"] .step::before { left: auto; right: -30px; }
html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .contact-info .info-row { direction: rtl; }
html[dir="rtl"] .cookie-message { text-align: right; }
html[dir="rtl"] #mobile-menu { right: auto; left: -320px; border-left: 0; border-right: 1px solid var(--border); }
html[dir="rtl"] #mobile-menu.open { right: auto; left: 0; }
html[dir="rtl"] #back-to-top { right: auto; left: 24px; }

/* Responsive */
@media (max-width: 980px) {
  #top-nav a { display: none; }
  .menu-toggle { display: flex; }
  #top-nav .lang-select { display: none; }
  #mobile-menu .lang-select { display: block; margin-top: 12px; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
}

@media (max-width: 640px) {
  #header { padding: 0 18px; }
  .hero h2 { font-size: 2.2rem; }
  .stats-band .container { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; text-align: center; }
}

/* ---------- Visual additions ---------- */

/* Animated rings behind logo */
.hero-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}
.hero-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 50%;
  animation: ringPulse 4s ease-out infinite;
}
.hero-rings span:nth-child(2) { animation-delay: 1.3s; }
.hero-rings span:nth-child(3) { animation-delay: 2.6s; }

@keyframes ringPulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Hero field badges */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: badgeFloat 3s ease-in-out infinite;
}
.hero-badges .badge:nth-child(2) { animation-delay: 0.5s; }
.hero-badges .badge:nth-child(3) { animation-delay: 1s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Fields section - big icon panels */
#fields {
  padding: 40px 24px 80px;
}
.field-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.field-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.6;
}
.field-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 240, 255, 0.1);
}
.field-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--accent);
  box-shadow: var(--glow);
}
.field-card h3 { margin: 0 0 12px; font-size: 1.3rem; }
.field-card p { color: var(--muted); margin: 0; }

/* Gradient border panel effect */
.panel {
  position: relative;
  z-index: 1;
}
.panel::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
.panel:hover::after { opacity: 0.5; }

/* Network map in partners */
.network-map {
  position: relative;
  max-width: 900px;
  margin: 0 auto 50px;
  aspect-ratio: 2 / 1;
  background:
    radial-gradient(circle at 30% 35%, rgba(0, 240, 255, 0.12) 0%, transparent 25%),
    radial-gradient(circle at 52% 28%, rgba(42, 92, 255, 0.12) 0%, transparent 22%),
    radial-gradient(circle at 75% 35%, rgba(0, 229, 160, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 48% 55%, rgba(0, 240, 255, 0.08) 0%, transparent 18%),
    rgba(11, 20, 36, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.network-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow);
  animation: markerPulse 2s ease-out infinite;
}
.map-marker::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.35);
  animation: markerPulse 2s ease-out infinite;
}
.map-marker:nth-child(2) { top: 32%; left: 30%; animation-delay: 0.3s; }
.map-marker:nth-child(3) { top: 26%; left: 52%; background: var(--accent-2); animation-delay: 0.6s; }
.map-marker:nth-child(4) { top: 34%; left: 75%; background: var(--accent-3); animation-delay: 0.9s; }
.map-marker:nth-child(5) { top: 52%; left: 48%; background: #ff6b6b; animation-delay: 1.2s; }

@keyframes markerPulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.map-label {
  position: absolute;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(3, 6, 11, 0.7);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.map-label:nth-child(6) { top: 24%; left: 26%; }
.map-label:nth-child(7) { top: 18%; left: 51%; }
.map-label:nth-child(8) { top: 42%; left: 73%; }
.map-label:nth-child(9) { top: 58%; left: 45%; }

/* ---------- Global visual enhancements ---------- */

/* Animated section divider */
.glow-line {
  width: min(80%, 600px);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  position: relative;
  opacity: 0.5;
}
.glow-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow);
  animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.6); }
}

/* Icon float */
.field-icon i,
.panel-icon i,
.region-icon i {
  animation: iconFloat 3s ease-in-out infinite;
}
.field-icon i { animation-delay: 0s; }
.panel:nth-child(2) .panel-icon i { animation-delay: 0.4s; }
.panel:nth-child(3) .panel-icon i { animation-delay: 0.8s; }
.panel:nth-child(4) .panel-icon i { animation-delay: 1.2s; }
.region-card:nth-child(2) .region-icon i { animation-delay: 0.4s; }
.region-card:nth-child(3) .region-icon i { animation-delay: 0.8s; }
.region-card:nth-child(4) .region-icon i { animation-delay: 1.2s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Rotating conic gradient border on field/region cards */
.field-card, .region-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.field-card::before, .region-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  background: conic-gradient(from 0deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s;
  animation: borderRotate 4s linear infinite;
}
.field-card::after, .region-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: var(--radius);
  background: var(--surface);
  z-index: -1;
}
.field-card:hover::before, .region-card:hover::before { opacity: 0.55; }

@keyframes borderRotate {
  to { transform: rotate(360deg); }
}

/* Staggered reveal delays for grid children */
.grid > .panel:nth-child(1) { transition-delay: 0s; }
.grid > .panel:nth-child(2) { transition-delay: 0.12s; }
.grid > .panel:nth-child(3) { transition-delay: 0.24s; }
.grid > .panel:nth-child(4) { transition-delay: 0.36s; }
.grid > .field-card:nth-child(1) { transition-delay: 0s; }
.grid > .field-card:nth-child(2) { transition-delay: 0.15s; }
.grid > .field-card:nth-child(3) { transition-delay: 0.3s; }
.region-grid > .region-card:nth-child(1) { transition-delay: 0s; }
.region-grid > .region-card:nth-child(2) { transition-delay: 0.12s; }
.region-grid > .region-card:nth-child(3) { transition-delay: 0.24s; }
.region-grid > .region-card:nth-child(4) { transition-delay: 0.36s; }

/* Back-to-top bounce */
#back-to-top.visible {
  animation: topBounce 2s ease-in-out infinite;
}
@keyframes topBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Subtle scanline overlay in dark sections */
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 4px,
    rgba(0, 240, 255, 0.02) 4px,
    rgba(0, 240, 255, 0.02) 5px
  );
  z-index: 0;
}

/* Hexagon overlay */
.hex-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='none' stroke='rgba(0,240,255,0.06)' d='M14 0L28 8.5v24L14 41 0 32.5v-24L14 0z'/%3E%3C/svg%3E");
  background-size: 28px 49px;
  opacity: 0.35;
  z-index: 0;
}

/* Quality / certification strip */
.cert-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}
.cert-badge i { color: var(--accent); font-size: 1.1rem; }
.cert-badge:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--glow);
}

/* Language toast */
#lang-toast {
  position: fixed;
  bottom: 86px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10001;
}
#lang-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Floating shapes in sections */
.section { position: relative; overflow: hidden; }
.section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06), transparent 70%);
  top: -120px;
  right: -120px;
  pointer-events: none;
  animation: floatBlob 10s ease-in-out infinite alternate;
}
.section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 92, 255, 0.06), transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
  animation: floatBlob 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatBlob {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-30px, 30px); }
}

/* Make sure containers stay above floating blobs */
.section > .container { position: relative; z-index: 2; }

/* Small pulse glow for primary buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover::after { transform: translateX(100%); }

@media (max-width: 640px) {
  .hero-rings { width: 260px; height: 260px; }
  .map-label { display: none; }
}

/* ---------- Global Reach section ---------- */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.region-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.region-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(0, 240, 255, 0.12);
}
.region-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  box-shadow: var(--glow);
}
.region-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.region-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

@media (max-width: 640px) {
  .region-label { display: none; }
  .global-map .route { stroke-width: 1; }
}
