/* ── DESIGN SYSTEM ── */
:root {
  --brand-blue: #0054AD;
  --brand-cyan: #2DB2F0;
  --brand-gold: #E3BC4D;
  --brand-gold-soft: #DFB94C;

  --gold-primary: var(--brand-gold);
  --gold-light: #F2D67A;
  --gold-dark: #C59B2E;
  --blue-primary: var(--brand-blue);
  --blue-glow: rgba(45, 178, 240, 0.42);
  --blue-deep: #0A2A4A;
  --black-pure: #000000;
  --black-deep: #06070A;
  --black-panel: #0B0D12;
  --white: #FFFFFF;
  --muted: #A1A1AA;
  --border: rgba(227, 188, 77, 0.2);
  --border-blue: rgba(45, 178, 240, 0.3);
  --border-soft: rgba(255, 255, 255, 0.06);
  --gold-glow: rgba(227, 188, 77, 0.28);

  --page-bg-image: url('../assets/riyadh-skyline.jpg');
  
  --font-display: 'Cormorant', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-ar: 'Tajawal', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Tajawal:wght@300;400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body { height: 100%; }

body {
  position: relative;
  background: var(--black-pure);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  --tilt-y: -2deg;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1100px 680px at 12% 10%, rgba(45, 178, 240, 0.20), transparent 58%),
    radial-gradient(980px 640px at 88% 16%, rgba(212, 175, 55, 0.18), transparent 58%),
    radial-gradient(900px 520px at 50% 4%, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.82)),
    var(--page-bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(1.08) saturate(1.06) contrast(1.04);
}

body.ar { font-family: var(--font-ar); direction: rtl; }
body.ar .font-display { font-family: var(--font-ar); }
body.ar { --tilt-y: 2deg; }

/* ── Noise Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* ── MOUSE EFFECTS ── */
#cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--blue-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: screen;
  transition: transform 0.1s ease;
  box-shadow: 0 0 15px var(--blue-glow);
}

#cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--blue-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease;
  box-shadow: inset 0 0 10px var(--blue-glow);
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled { padding: 16px 48px; background: rgba(0, 0, 0, 0.95); }

nav::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(45, 178, 240, 0), rgba(45, 178, 240, 0.9), rgba(212, 175, 55, 0.9), rgba(45, 178, 240, 0));
  opacity: 0.75;
  pointer-events: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark-img {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  object-position: 50% 22%;
  filter: drop-shadow(0 0 14px rgba(45, 178, 240, 0.28)) drop-shadow(0 0 12px rgba(212, 175, 55, 0.20));
}

footer .logo-mark-img {
  width: 88px;
  height: 88px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-line1 {
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 5px;
  font-size: 16px;
  font-weight: 600;
}

.brand-line2 {
  margin-top: 6px;
  letter-spacing: 5px;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), rgba(45, 178, 240, 0.92));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

footer .brand-line1 { font-size: 16px; }
footer .brand-line2 { font-size: 14px; }

@media (max-width: 520px) {
  .brand-line1 { letter-spacing: 4px; font-size: 14px; }
  .brand-line2 { letter-spacing: 4px; font-size: 12px; }
  .logo-mark-img { width: 56px; height: 56px; }
}

.logo-full {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(45, 178, 240, 0.35)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.20));
}

footer .logo-full {
  height: 56px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, rgba(45, 178, 240, 0.16), rgba(0, 0, 0, 0.92) 62%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow:
    0 0 26px rgba(45, 178, 240, 0.52),
    0 0 16px rgba(212, 175, 55, 0.28),
    inset 0 0 16px rgba(255, 255, 255, 0.06);
}

.logo-svg {
  width: 42px;
  height: 42px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(45, 178, 240, 0.55)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}

.logo-svg * {
  vector-effect: non-scaling-stroke;
}

.logo-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.05; gap: 2px; }

.nav-logo .logo-text {
  padding-left: 10px;
}

.logo-word-1 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 12px rgba(45, 178, 240, 0.18);
}

.logo-word-2 {
  position: relative;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-left: 4px;
  padding: 2px 0;
  color: var(--gold-primary);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.22);
}

.logo-word-2::before,
.logo-word-2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, rgba(45, 178, 240, 0), rgba(212, 175, 55, 0.95));
  transform: translateY(-50%);
  opacity: 0.9;
}

.logo-word-2::before { left: -34px; }
.logo-word-2::after {
  right: -34px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.95), rgba(45, 178, 240, 0));
}

.logo-word-3 {
  font-family: var(--font-ar);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 0 10px rgba(45, 178, 240, 0.14);
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active { color: var(--blue-primary); background: rgba(45, 178, 240, 0.06); }

.lang-btn {
  background: transparent;
  border: 1px solid var(--blue-primary);
  color: var(--blue-primary);
  padding: 8px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lang-btn:hover { background: var(--blue-primary); color: var(--white); box-shadow: 0 0 15px var(--blue-glow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { width: 28px; height: 2px; background: var(--gold-primary); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 148px 48px 110px;
}

#home::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -50px;
  width: min(620px, 68vw);
  height: min(380px, 42vw);
  background:
    radial-gradient(420px 260px at 35% 45%, rgba(45, 178, 240, 0.22), transparent 62%),
    radial-gradient(460px 280px at 65% 35%, rgba(227, 188, 77, 0.16), transparent 64%);
  opacity: 0.6;
  filter: blur(0.2px);
  pointer-events: none;
  z-index: 1;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

#bg-canvas canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 178, 240, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 188, 77, 0.026) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 188, 77, 0.09) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 10;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 84px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.hero-side {
  align-self: start;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(45, 178, 240, 0.22);
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 0 18px rgba(45, 178, 240, 0.22), 0 0 14px rgba(227, 188, 77, 0.18);
}

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 6.8vw, 92px);
  line-height: 0.98;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--white);
  letter-spacing: -1px;
}

h1.hero-title .accent { 
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(45, 178, 240, 0.16);
  background: rgba(0, 0, 0, 0.36);
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-cyan));
  color: #050608;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none; cursor: pointer;
  font-family: inherit;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.62), 0 0 24px rgba(45, 178, 240, 0.20);
}

.btn-primary:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.70), 0 0 36px rgba(45, 178, 240, 0.36);
  filter: brightness(1.1);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(45, 178, 240, 0.22);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  font-family: inherit;
}

.btn-outline:hover { 
  border-color: rgba(45, 178, 240, 0.7);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(45, 178, 240, 0.08);
  box-shadow: 0 0 18px rgba(45, 178, 240, 0.22);
}

.hero-stats {
  display: flex;
  gap: 64px;
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--gold-primary); line-height: 1; text-shadow: 0 0 14px rgba(45, 178, 240, 0.22), 0 0 10px rgba(212, 175, 55, 0.25); }
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }

.hero-panel {
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(45, 178, 240, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56), 0 0 30px rgba(45, 178, 240, 0.10);
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 178, 240, 0.95), rgba(227, 188, 77, 0.95), rgba(45, 178, 240, 0.55));
  opacity: 0.9;
}

.hero-panel-top {
  margin-bottom: 18px;
}

.hero-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.hero-panel-title {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.4px;
}

.hero-panel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.hero-point {
  display: flex;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 178, 240, 0.12);
}

.hero-point:first-child {
  padding-top: 0;
  border-top: none;
}

.hero-point-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(45, 178, 240, 0.20), rgba(0, 0, 0, 0.40));
  border: 1px solid rgba(45, 178, 240, 0.20);
  color: rgba(227, 188, 77, 0.95);
  flex: 0 0 auto;
  box-shadow: 0 0 18px rgba(45, 178, 240, 0.14);
}

.hero-icon {
  display: block;
}

.hero-point-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hero-point-title {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.2px;
}

.hero-point-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.hero-panel-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 178, 240, 0.12);
}

.hero-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(45, 178, 240, 0.20);
  background: rgba(0, 0, 0, 0.26);
  box-shadow: inset 0 0 0 1px rgba(227, 188, 77, 0.04);
}

.hero-metric-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(227, 188, 77, 0.94);
}

.hero-metric-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.hero-panel-link {
  display: inline-flex;
  margin-top: 18px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.6px;
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.hero-panel-link:hover {
  color: rgba(45, 178, 240, 0.92);
  transform: translateX(2px);
}

body.ar .hero-panel-link:hover {
  transform: translateX(-2px);
}


/* ── SECTION BASE ── */
section { padding: 120px 48px; position: relative; overflow: hidden; background: transparent; }

.profile-section {
  isolation: isolate;
}

.profile-section > .container {
  position: relative;
  z-index: 2;
}

.profile-section:not(.section-3d)::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 70% 0%, rgba(45, 178, 240, 0.10), transparent 58%),
    radial-gradient(700px 520px at 12% 12%, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.90) 100%);
  opacity: 0.55;
  pointer-events: none;
}

.profile-about:not(.section-3d)::after {
  opacity: 0.52;
}

.profile-expertise:not(.section-3d)::after {
  opacity: 0.58;
}

.profile-suppliers:not(.section-3d)::after {
  opacity: 0.58;
}

.profile-invest:not(.section-3d)::after {
  opacity: 0.56;
}

.section-3d {
  isolation: isolate;
  perspective: 1400px;
  padding: 112px 48px;
  --section-blue: rgba(45, 178, 240, 0.16);
  --section-gold: rgba(227, 188, 77, 0.11);
}

.section-3d > .container {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.section-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(980px 620px at 15% 20%, var(--section-blue), transparent 58%),
    radial-gradient(880px 560px at 88% 18%, var(--section-gold), transparent 58%),
    radial-gradient(720px 520px at 46% 0%, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.50) 46%, rgba(0, 0, 0, 0.88) 100%);
  opacity: 0.62;
  pointer-events: none;
}

#services.section-3d { --section-blue: rgba(45, 178, 240, 0.18); --section-gold: rgba(227, 188, 77, 0.08); }
#strategy.section-3d { --section-blue: rgba(45, 178, 240, 0.14); --section-gold: rgba(227, 188, 77, 0.14); }
#vision.section-3d { --section-blue: rgba(45, 178, 240, 0.12); --section-gold: rgba(227, 188, 77, 0.12); }
#goals.section-3d { --section-blue: rgba(45, 178, 240, 0.16); --section-gold: rgba(227, 188, 77, 0.10); }
#products.section-3d { --section-blue: rgba(45, 178, 240, 0.18); --section-gold: rgba(227, 188, 77, 0.10); }

.section-3d .section-label {
  letter-spacing: 5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.section-3d .section-title {
  letter-spacing: -0.6px;
}

.section-3d .section-lead {
  max-width: 780px;
}

.section-3d .glass-card {
  transform: translateZ(0);
  transform-style: preserve-3d;
  will-change: transform;
}

.section-3d .glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 260px at 18% 0%, rgba(255, 255, 255, 0.08), transparent 52%),
    radial-gradient(520px 260px at 88% 10%, rgba(45, 178, 240, 0.12), transparent 58%);
  opacity: 0.55;
  pointer-events: none;
  transform: translateZ(10px);
}

@media (hover: hover) and (pointer: fine) {
  .section-3d .glass-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(var(--tilt-y));
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-3d .glass-card,
  .section-3d .glass-card:hover {
    transition: none;
    transform: none;
  }
}

section::before {
  content: '';
  position: absolute;
  left: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 48px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 178, 240, 0), rgba(45, 178, 240, 0.45), rgba(212, 175, 55, 0.55), rgba(45, 178, 240, 0));
  opacity: 0.6;
  pointer-events: none;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
  text-shadow: 0 0 12px rgba(45, 178, 240, 0.16);
  position: relative;
  padding-bottom: 14px;
}

.section-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, rgba(45, 178, 240, 0.9), rgba(212, 175, 55, 0.95));
  border-radius: 999px;
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 72px;
  font-weight: 300;
}

.container { max-width: 1400px; margin: 0 auto; }

.section-3d .about-grid { gap: 72px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 34px 28px;
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(0, 112, 243, 0.18);
}

.section-3d .feature-grid { gap: 22px; }
.section-3d .feature-card { padding: 38px 30px; }
.section-3d .feature-kicker { background: rgba(0, 0, 0, 0.34); border-color: rgba(0, 112, 243, 0.22); }

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.section-3d .values-row { gap: 12px; margin-top: 22px; }
.section-3d .value-chip { background: rgba(0, 0, 0, 0.28); border-color: rgba(0, 112, 243, 0.18); }

.value-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.goal-card {
  padding: 32px 28px;
}

.section-3d .goals-grid { gap: 22px; }
.section-3d .goal-card { padding: 34px 30px; }

.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.suppliers-grid .brand-card,
.suppliers-grid .brand-card.span-6,
.suppliers-grid .brand-card.span-2 {
  grid-column: span 4;
  min-height: 132px;
}

.suppliers-grid .brand-logo,
.suppliers-grid .brand-card.span-6 .brand-logo,
.suppliers-grid .brand-card.span-2 .brand-logo,
.suppliers-grid .brand-card.tall .brand-logo {
  width: min(220px, 100%);
  height: 64px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.brand-meta {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.9);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.section-3d .products-grid { gap: 22px; }
.section-3d .product-card { padding: 36px 30px; }
.section-3d .product-thumb { height: 200px; border-radius: 16px; }

.product-thumb {
  display: grid;
  place-items: center;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(0, 112, 243, 0.20), rgba(0, 0, 0, 0.78) 62%),
    linear-gradient(180deg, rgba(11, 13, 18, 0.9), rgba(0, 0, 0, 0.6));
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 0 14px rgba(0, 112, 243, 0.22);
}

.product-thumb svg {
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.88);
  filter: drop-shadow(0 0 16px rgba(0, 112, 243, 0.24));
}

/* ── CARDS & GLASS ── */
.glass-card {
  background:
    radial-gradient(600px 240px at 20% 0%, rgba(0, 112, 243, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(11, 13, 18, 0.92), rgba(0, 0, 0, 0.72));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.62), 0 0 18px rgba(0, 112, 243, 0.06);
}

.glass-card:hover {
  border-color: rgba(0, 112, 243, 0.75);
  background:
    radial-gradient(650px 260px at 20% 0%, rgba(0, 112, 243, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(6, 7, 10, 0.92), rgba(0, 0, 0, 0.68));
  transform: translateY(-10px);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.72), 0 0 44px rgba(0, 112, 243, 0.26);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-card {
  padding: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(17,17,17,0.8));
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-dark));
}

.about-card-icon {
  width: 64px; height: 64px;
  background: radial-gradient(circle at 30% 25%, rgba(45, 178, 240, 0.18), rgba(212, 175, 55, 0.10));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  color: rgba(212, 175, 55, 0.92);
  box-shadow: 0 0 18px rgba(45, 178, 240, 0.16);
}

.about-mini-stats {
  margin-top: 40px;
  border: none;
  padding: 0;
  gap: 28px;
}

.stat-num-sm {
  font-size: 24px;
  text-shadow: 0 0 14px rgba(45, 178, 240, 0.18), 0 0 10px rgba(212, 175, 55, 0.18);
}

.about-callout {
  margin-top: 32px;
  padding: 24px;
  border-left: 4px solid var(--gold-primary);
}

body.ar .about-callout {
  border-left: none;
  border-right: 4px solid var(--gold-primary);
}

.vision-grid {
  margin-top: 56px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.section-3d .services-grid { gap: 24px; }

.service-card {
  padding: 48px 32px;
}

.section-3d .service-card { padding: 44px 32px; }

.service-card:hover {
  border-color: var(--blue-primary);
  background: rgba(0, 112, 243, 0.03);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--blue-glow);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(212, 175, 55, 0.20);
  color: rgba(212, 175, 55, 0.92);
  box-shadow: 0 0 18px rgba(0, 112, 243, 0.14);
}

/* ── SUPPLIERS ── */
.brand-card {
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  padding: 26px 22px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.58);
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  min-height: 108px;
  grid-column: span 4;
}

.brand-card.span-6 { grid-column: span 6; }
.brand-card.span-2 { grid-column: span 2; }
.brand-card.tall { min-height: 132px; }

.brand-card:hover {
  border-color: var(--blue-primary);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.72), 0 0 30px rgba(0, 112, 243, 0.22);
}

.brand-logo {
  width: min(180px, 100%);
  height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(0, 112, 243, 0.12));
}

.brand-card.tall .brand-logo { height: 64px; }

.brand-logo.mono {
  filter: invert(1) brightness(1.05) drop-shadow(0 0 14px rgba(0, 112, 243, 0.12));
}

.brand-card.span-6 .brand-logo {
  width: min(420px, 100%);
  height: 72px;
}

.brand-card.span-2 .brand-logo {
  width: 100%;
  height: 54px;
}

/* ── PRODUCTS ── */
.product-card {
  border-radius: 12px;
  padding: 34px 28px;
}

.product-thumb {
  height: 220px;
  font-size: 72px;
}

/* ── CONTACT ── */
.contact-item-icon {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  color: var(--gold-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 64px;
}

.contact-grid .glass-card {
  height: 100%;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.contact-card {
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(0, 112, 243, 0.18), transparent 60%),
    radial-gradient(760px 520px at 88% 18%, rgba(212, 175, 55, 0.10), transparent 62%),
    rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(0, 112, 243, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.72), 0 0 42px rgba(0, 112, 243, 0.16);
}

.contact-title {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.92);
}

.contact-card p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-form {
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(0, 112, 243, 0.18), transparent 60%),
    radial-gradient(760px 520px at 88% 18%, rgba(212, 175, 55, 0.10), transparent 62%),
    rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(0, 112, 243, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.72), 0 0 42px rgba(0, 112, 243, 0.16);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 18px;
}

.contact-form .form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  letter-spacing: 0.3px;
  pointer-events: none;
  transition: all 0.22s ease;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  border-radius: 12px;
  padding: 20px 16px;
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 112, 243, 0.26);
  background: rgba(0, 0, 0, 0.30);
}

.contact-form .form-group textarea {
  padding-top: 20px;
}

.contact-form .form-group input:focus + label,
.contact-form .form-group input:not(:placeholder-shown) + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group textarea:not(:placeholder-shown) + label {
  top: 10px;
  transform: none;
  font-size: 12px;
  opacity: 0.92;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(164, 199, 255, 0.70);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: rgba(0, 112, 243, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.16), 0 0 24px rgba(0, 112, 243, 0.18);
  background: rgba(0, 0, 0, 0.42);
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  min-height: 72px;
  padding: 20px 40px;
  font-size: 17px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), rgba(0, 112, 243, 0.92));
  color: #050608;
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.62), 0 0 24px rgba(0, 112, 243, 0.18);
}

.contact-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.72), 0 0 34px rgba(0, 112, 243, 0.26);
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold-primary); background: rgba(0, 0, 0, 0.5); }

/* ── FOOTER ── */
footer {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(900px 520px at 70% 0%, rgba(45, 178, 240, 0.12), transparent 58%),
    radial-gradient(700px 520px at 12% 12%, rgba(227, 188, 77, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.92), var(--black-pure));
  padding: 100px 48px 48px;
  overflow: hidden;
}

footer > .container {
  position: relative;
  z-index: 2;
  padding: 44px 28px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(45, 178, 240, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58), 0 0 28px rgba(45, 178, 240, 0.10);
}

footer::before {
  content: '';
  position: absolute;
  left: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 48px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 178, 240, 0), rgba(227, 188, 77, 0.55), rgba(45, 178, 240, 0.45), rgba(45, 178, 240, 0));
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

footer::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -70px;
  width: min(680px, 70vw);
  height: min(420px, 46vw);
  transform: rotate(6deg);
  background:
    radial-gradient(420px 260px at 35% 45%, rgba(45, 178, 240, 0.22), transparent 62%),
    radial-gradient(460px 280px at 65% 35%, rgba(227, 188, 77, 0.14), transparent 64%);
  opacity: 0.55;
  filter: blur(0.2px);
  pointer-events: none;
  z-index: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: radial-gradient(circle at 30% 25%, rgba(0, 112, 243, 0.14), rgba(0, 0, 0, 0.86) 64%);
  border: 1px solid rgba(212, 175, 55, 0.26);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), 0 0 18px rgba(0, 112, 243, 0.10);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, background 0.35s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.86);
  filter: drop-shadow(0 0 10px rgba(0, 112, 243, 0.24));
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 112, 243, 0.75);
  background: radial-gradient(circle at 30% 25%, rgba(0, 112, 243, 0.22), rgba(0, 0, 0, 0.86) 64%);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.7), 0 0 28px rgba(0, 112, 243, 0.22), 0 0 18px rgba(212, 175, 55, 0.12);
}

.social-link:hover svg {
  fill: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 0 12px rgba(0, 112, 243, 0.45)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.16));
}

.social-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.35), 0 0 0 5px rgba(212, 175, 55, 0.22), 0 22px 54px rgba(0, 0, 0, 0.7);
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  nav { padding: 20px 24px; }
  section { padding: 80px 24px; }
  .section-3d { padding: 88px 24px; }
  #home { padding: 120px 24px 72px; }
  .hero-layout { grid-template-columns: 1fr; gap: 44px; }
  .hero-sub { max-width: 100%; }
  .hero-panel { padding: 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .goals-grid { grid-template-columns: repeat(2, 1fr); }
  .suppliers-grid { grid-template-columns: repeat(6, 1fr); }
  .suppliers-grid .brand-card,
  .suppliers-grid .brand-card.span-6,
  .suppliers-grid .brand-card.span-2 { grid-column: span 3; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  h1.hero-title { font-size: 44px; }
  .hero-panel { padding: 24px; }
  .hero-panel-title { font-size: 26px; }
  .hero-point-icon { width: 36px; height: 36px; border-radius: 12px; }
  .hero-metric { padding: 10px 12px; }
  .section-3d { padding: 76px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: 1fr; }
  .suppliers-grid { grid-template-columns: 1fr; }
  .suppliers-grid .brand-card { grid-column: span 1; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black-pure); }
::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 4px; box-shadow: 0 0 10px var(--blue-glow); }
