/*
 * OIT.One – Modern Premium Design v5
 * Design: Clean, sophisticated, dark with cyan accents
 * No pink/magenta. Glassmorphism. Smooth animations.
 * Font: Space Grotesk (headings) + Inter (body)
 */

/* === LOCAL FONTS (GDPR/DSGVO compliant – no external requests) === */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal; font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal; font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal; font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans Arabic';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/noto-sans-arabic-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans Arabic';
  font-style: normal; font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/noto-sans-arabic-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/noto-sans-sc-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal; font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/noto-sans-sc-700.woff2') format('woff2');
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0a0e17;
  --bg-dark-2: #0f1420;
  --bg-dark-3: #141a28;
  --bg-light: #f7f8fc;
  --bg-light-2: #eef0f6;
  --text-white: #ffffff;
  --text-light: #c8cdd8;
  --text-muted: #7a8299;
  --text-dark: #1a1e2e;
  --text-dark-2: #3a3f52;
  --accent: #00d4ff;
  --accent-2: #0099cc;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --accent-glow-strong: rgba(0, 212, 255, 0.3);
  --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0088cc 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #0f1420 100%);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.1);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.2);
  --font-main: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.font-arabic { font-family: 'Noto Sans Arabic', var(--font-body); }
body.font-arabic h1, body.font-arabic h2, body.font-arabic h3, body.font-arabic h4 {
  font-family: 'Noto Sans Arabic', var(--font-main);
  letter-spacing: 0;
}
body.font-chinese { font-family: 'Noto Sans SC', var(--font-body); }
body.font-chinese h1, body.font-chinese h2, body.font-chinese h3, body.font-chinese h4 {
  font-family: 'Noto Sans SC', var(--font-main);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--gradient-accent);
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* ===== TOP BAR ===== */
.top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #0088aa, var(--accent));
  background-size: 200% 100%;
  animation: shimmer 4s ease infinite;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 14, 23, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo img { height: 32px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
  color: var(--text-light); font-family: var(--font-main);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
  position: relative; padding: 0.25rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Language Dropdown */
.lang-dropdown { position: relative; }
.lang-dropdown-trigger {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  color: var(--text-light); font-family: var(--font-main);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  cursor: pointer; transition: var(--transition);
}
.lang-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}
.lang-chevron { transition: transform 0.3s ease; }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 160px;
  background: rgba(15, 20, 32, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
[dir="rtl"] .lang-dropdown-menu { right: auto; left: 0; }
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-option {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.75rem; border-radius: var(--radius-sm);
  color: var(--text-light); font-size: 0.88rem; transition: var(--transition);
}
.lang-option:hover { background: rgba(255, 255, 255, 0.08); color: var(--text-white); }
.lang-option.active { background: var(--accent-glow); color: var(--accent); }
.lang-code {
  font-family: var(--font-main); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.05em; min-width: 24px;
}

/* Login Icon */
.btn-login-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: var(--transition);
}
.btn-login-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}
.btn-login-icon svg { stroke: currentColor; }

/* Mobile Toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1002;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--text-light);
  border-radius: 2px; transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; flex-direction: column; padding: 1.5rem 2rem 2rem;
  background: rgba(10, 14, 23, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-light); padding: 0.75rem 0;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-lang { display: flex; gap: 1rem; padding-top: 1rem; margin-top: 0.5rem; }
.mobile-lang a {
  padding: 0.4rem 0.8rem; border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-main);
}
.mobile-lang a.active {
  background: var(--accent-glow); border-color: var(--accent); color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-main); font-weight: 600; font-size: 0.9rem;
  padding: 0.85rem 2rem; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: var(--transition); letter-spacing: 0.02em;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
[dir="rtl"] .btn::after { transform-origin: right; }
.btn:hover::after { transform: scaleX(1); }
.btn-primary { background: var(--gradient-accent); color: var(--bg-dark); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.4);
}
.btn-outline:hover {
  background: var(--accent); color: var(--bg-dark);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}
.btn-outline-dark {
  background: transparent; color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.btn-outline-dark:hover {
  border-color: var(--accent-2); color: var(--accent-2);
  background: rgba(0, 212, 255, 0.05);
}
.btn-lg { padding: 0.9rem 2.5rem; font-size: 1rem; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 75px;
}
/* Fullscreen background image */
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 23, 0.92) 0%, rgba(10, 14, 23, 0.75) 45%, rgba(10, 14, 23, 0.3) 100%);
}
[dir="rtl"] .hero-bg-overlay {
  background: linear-gradient(-90deg, rgba(10, 14, 23, 0.92) 0%, rgba(10, 14, 23, 0.75) 45%, rgba(10, 14, 23, 0.3) 100%);
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 1;
}
.hero-canvas canvas { width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 4rem;
  align-items: center; min-height: calc(100vh - 75px); padding: 4rem 0;
}
.hero-text { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.8rem; font-weight: 500; color: var(--accent);
  letter-spacing: 0.05em; margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700;
  line-height: 1.1; color: var(--text-white); margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 .accent-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-family: var(--font-main); font-size: 1.15rem; font-weight: 400;
  color: var(--accent); margin-bottom: 1rem; letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 1rem; line-height: 1.8; color: var(--text-muted);
  margin-bottom: 2rem; max-width: 480px;
}
.hero-cta-group { display: flex; gap: 1rem; align-items: center; }

/* Hero Stats Column */
.hero-stats-column {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-end;
}
[dir="rtl"] .hero-stats-column {
  align-items: flex-start;
}
.hero-float-card {
  background: rgba(15, 20, 32, 0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 1.25rem 2rem;
  min-width: 160px; text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.hero-float-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
}
.float-card-number {
  font-family: var(--font-main); font-size: 2rem; font-weight: 700;
  color: var(--accent); line-height: 1;
}
.float-card-label { font-size: 0.8rem; color: var(--text-light); margin-top: 0.4rem; font-weight: 500; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 12px; position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--accent); border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ===== SECTION UTILITIES ===== */
.section { padding: 7rem 0; }
.section-dark {
  background: var(--bg-dark); color: var(--text-white); position: relative;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.section-dark-2 { background: var(--bg-dark-2); color: var(--text-white); }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-light-2 { background: var(--bg-light-2); color: var(--text-dark); }

.section-pre {
  font-family: var(--font-main); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem; line-height: 1.8; max-width: 600px;
}
.section-dark .section-desc, .section-dark-2 .section-desc { color: var(--text-muted); }
.section-light .section-desc, .section-light-2 .section-desc { color: var(--text-dark-2); }

/* ===== SERVICES ===== */
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient-accent); opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-family: var(--font-main); font-size: 1.2rem; font-weight: 600;
  color: var(--text-white); margin-bottom: 0.75rem; line-height: 1.3;
}
.service-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }

/* ===== PROCESS ===== */
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-desc { margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 64px; height: 64px;
  background: var(--bg-light-2); border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-main); font-size: 1.4rem; font-weight: 700;
  color: var(--accent); transition: var(--transition); position: relative; z-index: 2;
}
.process-step:hover .step-number {
  background: var(--accent); color: var(--bg-dark);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}
.process-step h3 {
  font-family: var(--font-main); font-size: 1.1rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.3;
}
.process-step p {
  font-size: 0.9rem; line-height: 1.7; color: var(--text-dark-2);
  max-width: 300px; margin: 0 auto;
}
.process-cta { text-align: center; margin-top: 3rem; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image-wrapper img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-image-accent {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  width: 120px; height: 120px;
  border: 3px solid var(--accent); border-radius: var(--radius-lg);
  opacity: 0.3; z-index: -1;
}
[dir="rtl"] .about-image-accent { left: auto; right: -1.5rem; }
.about-text h2 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--text-dark); line-height: 1.15; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.about-text > p {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-dark-2); margin-bottom: 1.5rem;
}
.about-list { list-style: none; margin-bottom: 2rem; }
.about-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem;
  font-size: 0.95rem; line-height: 1.6; color: var(--text-dark-2);
}
.about-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55rem;
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 2px; transform: rotate(45deg);
}
[dir="rtl"] .about-list li { padding-left: 0; padding-right: 1.5rem; }
[dir="rtl"] .about-list li::before { left: auto; right: 0; }

.about-stats {
  display: flex; gap: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08); margin-bottom: 2rem;
}
.about-stat-item { text-align: center; }
.about-stat-number {
  font-family: var(--font-main); font-size: 2rem; font-weight: 700;
  color: var(--accent-2); line-height: 1;
}
.about-stat-label {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; font-weight: 500;
}

/* ===== CTA ===== */
.cta-section {
  position: relative; padding: 7rem 0; background: var(--bg-dark); overflow: hidden;
}
.cta-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(0, 150, 255, 0.05) 0%, transparent 70%);
}
.cta-content {
  position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--text-white); line-height: 1.15; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-content p {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark-2); color: var(--text-light);
  padding: 4rem 0 0; border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-logo img { height: 28px; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; max-width: 280px;
}
.footer h4 {
  font-family: var(--font-main); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-white); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 8rem 0 5rem; min-height: 80vh; background: var(--bg-light);
}
.legal-page h1 {
  font-family: var(--font-main); font-size: 2.5rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 2.5rem; letter-spacing: -0.02em;
}
.legal-page h2 {
  font-family: var(--font-main); font-size: 1.3rem; font-weight: 600;
  color: var(--text-dark); margin-top: 2rem; margin-bottom: 0.75rem;
}
.legal-page h3 {
  font-family: var(--font-main); font-size: 1.1rem; font-weight: 600;
  color: var(--text-dark); margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.legal-page p {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-dark-2); margin-bottom: 0.75rem;
}
.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem; color: var(--text-dark-2);
  font-size: 0.95rem; line-height: 1.8;
}
.legal-page a { color: var(--accent-2); }
.legal-page a:hover { text-decoration: underline; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.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; }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
[dir="rtl"] .reveal-left { transform: translateX(40px); }
[dir="rtl"] .reveal-left.visible { transform: translateX(0); }
[dir="rtl"] .reveal-right { transform: translateX(-40px); }
[dir="rtl"] .reveal-right.visible { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; padding: 2rem 0; }
  .hero-text { max-width: 100%; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-stats-column { flex-direction: row; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .hero-float-card { min-width: 130px; padding: 1rem 1.5rem; }
  .hero-bg-overlay { background: rgba(10, 14, 23, 0.75); }
  [dir="rtl"] .hero-bg-overlay { background: rgba(10, 14, 23, 0.75); }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 75px; padding-bottom: 2rem; }
  .hero-inner { min-height: auto; padding: 2rem 0; }
  .hero h1 { font-size: 2rem; }
  .hero-stats-column { gap: 0.75rem; }
  .hero-float-card { min-width: 100px; padding: 0.75rem 1rem; }
  .float-card-number { font-size: 1.4rem; }
  .hero-badge { font-size: 0.75rem; }
  .scroll-indicator { display: none; }
  .about-stats { gap: 1.5rem; }
  .about-stat-number { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .legal-page { padding: 7rem 0 3rem; }
  .legal-page h1 { font-size: 1.8rem; }
  .cta-section { padding: 4.5rem 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-stats-column { flex-direction: row; justify-content: flex-start; gap: 0.5rem; }
  .hero-float-card { min-width: 90px; padding: 0.6rem 0.8rem; }
  .float-card-number { font-size: 1.2rem; }
  .float-card-label { font-size: 0.65rem; }
  .about-stats { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
