/* === CSS VARIABLES === */
:root {
  --bg: #030712;
  --bg-2: #0a0f1e;
  --bg-card: #0f1629;
  --bg-card-2: #141c33;
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --primary-dark: #5b21b6;
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  --success: #10b981;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(124,58,237,0.15);
  --border-light: rgba(255,255,255,0.07);
  --glow: rgba(124,58,237,0.3);
  --glow-cyan: rgba(14,165,233,0.25);
  --font: 'Heebo', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(124,58,237,0.25);
  --header-h: 80px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }
input, textarea, select {
  font-family: var(--font);
  direction: rtl;
}

/* === UTILITY === */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 20px;
}
.section-header.text-center { flex-direction: column; align-items: center; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
  border: 1px solid rgba(124,58,237,0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary-light); transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-xl { padding: 20px 48px; font-size: 19px; }
.btn-full { width: 100%; justify-content: center; }

/* === ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(3,7,18,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  gap: 20px;
}
.site-logo { display: flex; align-items: center; }
.logo-text { font-size: 24px; font-weight: 900; color: var(--text); letter-spacing: -0.5px; }
.logo-accent { color: var(--primary-light); }

/* NAVIGATION */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  border-radius: 8px;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active { color: var(--primary-light); }
.nav-arrow { font-size: 10px; transition: transform 0.3s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-ig {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 8px;
  border-radius: 8px;
}
.header-ig:hover { color: var(--primary-light); background: rgba(124,58,237,0.1); }

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 50%;
  transform: translateX(50%);
  background: rgba(10,15,30,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  min-width: 700px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  transform: translateX(50%) translateY(-8px);
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
}
.mega-menu-inner { display: flex; gap: 40px; }
.mega-col { flex: 1; min-width: 160px; }
.mega-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.mega-col ul { display: flex; flex-direction: column; gap: 4px; }
.mega-col a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  border-radius: 8px;
}
.mega-col a:hover { color: var(--text); background: rgba(124,58,237,0.1); }

/* About Mega Menu */
.about-mega-menu { min-width: 560px; }
.about-mega-inner { align-items: stretch; }
.about-info-col { flex: 0 0 200px; }
.about-card-mini {
  background: rgba(124,58,237,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-mini-logo-text { font-size: 20px; font-weight: 900; }
.about-mini-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.about-mini-stats { display: flex; gap: 16px; }
.mini-stat { display: flex; flex-direction: column; align-items: center; }
.mini-stat span { font-size: 22px; font-weight: 800; color: var(--primary-light); }
.mini-stat small { font-size: 11px; color: var(--text-muted); }

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === MOBILE NAV DRAWER === */
.mob-nav { display: none; position: fixed; inset: 0; z-index: 9990; pointer-events: none; }
.mob-nav-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(6px); opacity: 0; transition: opacity .35s ease; }
.mob-nav-panel {
  position: absolute; top: 0; right: 0;
  width: min(360px, 88vw); height: 100%;
  background: linear-gradient(180deg, #0c1120 0%, #070c18 100%);
  border-left: 1px solid rgba(124,58,237,.18);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.25,.46,.45,.94);
  box-shadow: -24px 0 80px rgba(0,0,0,.6);
}
.mob-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.06); flex-shrink: 0;
}
.mob-nav-logo .logo-text { font-size: 21px; font-weight: 900; }
.mob-nav-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: background .2s, color .2s, border-color .2s;
}
.mob-nav-close:hover { background: rgba(239,68,68,.12); color: #ef4444; border-color: rgba(239,68,68,.28); }
.mob-nav-body { flex: 1; overflow-y: auto; padding: 8px 0; scrollbar-width: none; }
.mob-nav-body::-webkit-scrollbar { display: none; }
.mob-nav-list { display: flex; flex-direction: column; }
.mob-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; font-size: 16px; font-weight: 600; color: var(--text-muted);
  transition: color .2s, background .2s; border: none; background: none;
  width: 100%; text-align: right; cursor: pointer; font-family: var(--font);
}
.mob-nav-link:hover { color: var(--text); background: rgba(124,58,237,.07); }
.mob-nav-link.active { color: var(--primary-light); background: rgba(124,58,237,.1); }
.mob-acc-icon { transition: transform .28s cubic-bezier(.4,0,.2,1); color: var(--text-dim); flex-shrink: 0; }
.mob-acc-toggle[aria-expanded="true"] .mob-acc-icon { transform: rotate(180deg); }
/* Split row: text = link, arrow = accordion toggle */
.mob-split-row { display: flex; align-items: stretch; border-bottom: 1px solid rgba(255,255,255,.03); }
.mob-split-link { flex: 1; padding: 14px 24px; font-size: 16px; font-weight: 600; color: var(--text-muted); transition: color .2s, background .2s; }
.mob-split-link:hover, .mob-split-link.active { color: var(--primary-light); background: rgba(124,58,237,.08); }
.mob-split-toggle { width: 52px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: none; border: none; border-right: 1px solid rgba(255,255,255,.05); color: var(--text-dim); cursor: pointer; transition: color .2s, background .2s; font-family: var(--font); }
.mob-split-toggle:hover { color: var(--primary-light); background: rgba(124,58,237,.07); }
.mob-acc-body { max-height: 0; overflow: hidden; transition: max-height .38s ease; background: rgba(0,0,0,.18); }
.mob-acc-body.open { max-height: 1200px; }
.mob-acc-group { padding: 12px 0 4px; }
.mob-acc-group-title {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--primary-light); margin-bottom: 4px; padding: 0 24px; opacity: .9;
}
.mob-acc-body a { display: block; padding: 9px 24px; font-size: 14px; color: var(--text-muted); transition: color .2s, padding .18s; }
.mob-acc-body a:hover { color: var(--text); padding-right: 30px; }
.mob-acc-see-all {
  display: block; padding: 12px 24px !important; font-size: 13px; font-weight: 700;
  color: var(--primary-light) !important; border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 6px; transition: opacity .2s !important;
}
.mob-acc-see-all:hover { opacity: .75; padding-right: 24px !important; }
.mob-nav-foot {
  padding: 20px 24px 36px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 16px; flex-shrink: 0;
  background: linear-gradient(0deg, rgba(124,58,237,.05) 0%, transparent 100%);
}
.mob-nav-social { display: flex; justify-content: center; gap: 10px; }
.mob-nav-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: background .2s, color .2s, border-color .2s;
}
.mob-nav-social a:hover { background: rgba(124,58,237,.15); color: var(--primary-light); border-color: rgba(124,58,237,.35); }
.mob-nav-tagline { text-align: center; font-size: 11px; color: var(--text-dim); letter-spacing: .5px; }

/* === HERO === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 20%, rgba(14,165,233,0.1) 0%, transparent 60%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--primary-light);
  margin-bottom: 28px;
  font-weight: 500;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero-line1 { color: var(--text); }
.hero-line2 { margin-top: 4px; }
.hero-subtitle {
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--primary-light); }
.hero-stat span { font-size: 13px; color: var(--text-muted); }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-light); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--text-muted);
  font-size: 12px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--text-dim);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--primary-light);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}
.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.shape-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation: float1 8s infinite ease-in-out; }
.shape-2 { width: 300px; height: 300px; background: var(--secondary); bottom: 100px; left: -50px; animation: float2 10s infinite ease-in-out; }
.shape-3 { width: 200px; height: 200px; background: var(--accent); top: 50%; right: 30%; animation: float3 12s infinite ease-in-out; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(15px,25px)} }

/* === BRANDS === */
.brands-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  background: rgba(10,15,30,0.5);
}
.brands-label {
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.brands-track-wrapper { overflow: hidden; }
.brands-track { display: flex; align-items: center; }
.brand-item { display: flex; align-items: center; }
.brand-item img { height: 32px; width: auto; filter: brightness(0) invert(0.5); transition: filter 0.3s; }
.brand-item:hover img { filter: brightness(0) invert(0.8); }

/* === STATS === */
.stats-section { background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow-glow); }
.stat-card:hover::before { opacity: 1; }
.stat-icon { font-size: 32px; margin-bottom: 16px; }
.stat-number { font-size: 48px; font-weight: 900; color: var(--primary-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 15px; color: var(--text-muted); font-weight: 500; }

/* === ABOUT === */
.about-section {}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin: 24px 0 32px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about-features li { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.check-icon {
  width: 24px; height: 24px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.about-card-3d {
  perspective: 1000px;
  height: 380px;
}
.card-3d-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  height: 100%;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
  overflow: visible;
}
.about-card-3d:hover .card-3d-inner { transform: rotateY(-5deg) rotateX(3deg); }
.about-badge-float {
  position: absolute;
  background: rgba(10,15,30,0.95);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}
.badge-float-1 { top: -16px; right: 20px; animation: floatBadge1 4s infinite ease-in-out; }
.badge-float-2 { bottom: -16px; left: 20px; animation: floatBadge2 5s infinite ease-in-out; }
@keyframes floatBadge1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatBadge2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.about-stats-visual { display: flex; align-items: flex-end; gap: 20px; height: 160px; justify-content: center; margin: 20px 0; }
.visual-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.visual-bar {
  width: 48px;
  background: linear-gradient(180deg, var(--primary), rgba(124,58,237,0.3));
  border-radius: 6px 6px 0 0;
  animation: barGrow 1.5s ease-out both;
}
@keyframes barGrow { from { height: 0 !important; } }
.visual-stat span { font-size: 13px; color: var(--text-muted); }
.visual-label { text-align: center; color: var(--text-muted); font-size: 14px; }

/* === PROJECTS === */
.projects-section {}
.projects-scroll-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.projects-track {
  display: flex;
  direction: ltr;
  gap: 24px;
  padding: 20px 4px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  cursor: grab;
  user-select: none;
}
.projects-track.dragging {
  cursor: grabbing;
  transition: none;
}
.project-card {
  flex: 0 0 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.project-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.project-image-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.project-scroll-img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  object-position: top;
  transition: transform 3s ease-in-out;
  transform: translateY(0);
}
.project-card:hover .project-scroll-img {
  transform: translateY(calc(-100% + 260px));
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,7,18,0.95) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay-content h4 { color: white; margin-bottom: 8px; }
.project-link-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.project-info { padding: 20px; }
.project-category { font-size: 12px; color: var(--primary-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.project-title { font-size: 17px; font-weight: 700; margin: 6px 0 4px; }
.project-url { font-size: 12px; color: var(--text-dim); }
.projects-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(10,15,30,0.95);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(8px);
}
.projects-prev { left: 12px; }
.projects-next { right: 12px; }
.projects-nav-btn:hover { background: var(--primary); border-color: var(--primary); }

/* === SERVICES HOME === */
.services-home-section { background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(14,165,233,0.05));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.service-arrow {
  display: block;
  margin-top: 20px;
  color: var(--primary-light);
  font-size: 18px;
  transition: transform 0.3s;
  position: relative;
}
.service-card:hover .service-arrow { transform: translateX(-6px); }

/* === PROCESS === */
.process-section {}
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.timeline-line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.3;
}
.timeline-step {
  position: relative;
  text-align: center;
}
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}
.step-icon { font-size: 32px; margin-bottom: 16px; }
.step-content h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--bg-2); }
.testimonials-scroll-outer { overflow: hidden; margin-top: 40px; }
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: testimonialScroll 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  flex: 0 0 380px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border); box-shadow: var(--shadow-glow); }
.testimonial-stars { font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-avatar-placeholder {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 15px; }
.author-info span { font-size: 13px; color: var(--text-dim); }
.testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonials-dots .dot {
  width: 8px; height: 8px;
  background: var(--text-dim);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonials-dots .dot.active { background: var(--primary-light); width: 24px; border-radius: 4px; }

/* === WHY US === */
.why-us-section {}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.why-icon { font-size: 40px; margin-bottom: 20px; }
.why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* === COMPARISON === */
.comparison-section { background: var(--bg-2); }
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table th {
  background: var(--bg-card);
  padding: 20px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
}
.comparison-table th:first-child { text-align: right; color: var(--text); }
.comparison-table th.col-hakham { background: rgba(124,58,237,0.12); color: var(--text); }
.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  text-align: center;
}
.comparison-table td:first-child { text-align: right; color: var(--text-muted); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.col-hakham { background: rgba(124,58,237,0.05); }
.check-yes { color: var(--success); font-size: 18px; font-weight: 700; }
.check-no { color: #ef4444; font-size: 18px; font-weight: 700; }
.check-maybe { color: var(--accent); font-size: 18px; font-weight: 700; }

/* === PRICING === */
.pricing-section {}
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--bg-card);
  padding: 6px;
  border-radius: var(--radius);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-light);
}
.pricing-tab {
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.pricing-tab.active { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: 0 4px 16px rgba(124,58,237,0.35); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(124,58,237,0.1) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(124,58,237,0.2);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-icon { font-size: 40px; margin-bottom: 20px; }
.pricing-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-price { margin-bottom: 28px; }
.price-amount { font-size: 42px; font-weight: 900; color: var(--primary-light); }
.price-period { font-size: 14px; color: var(--text-dim); margin-right: 6px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.feat-check { color: var(--success); font-size: 14px; font-weight: 700; flex-shrink: 0; }
.pricing-note {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: var(--text-muted);
  font-size: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

/* === FAQ === */
.faq-section { background: var(--bg-2); }
.faq-list { max-width: 800px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  gap: 16px;
}
.faq-arrow {
  font-size: 20px;
  color: var(--primary-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* === BLOG === */
.blog-home-section {}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 12px; color: var(--text-dim); margin-bottom: 10px; }
.blog-card-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-content p { font-size: 14px; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.blog-read-more { font-size: 14px; color: var(--primary-light); font-weight: 600; }

/* === CTA === */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(14,165,233,0.15));
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  z-index: -1;
}
.cta-content h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; }

/* === FOOTER === */
.site-footer { background: #020510; border-top: 1px solid var(--border-light); }
.footer-main { padding: 80px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo-text { font-size: 28px; font-weight: 900; margin-bottom: 20px; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary-light); background: rgba(124,58,237,0.1); }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary-light); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(10,15,30,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  padding: 20px 40px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.cookie-icon { color: var(--accent); flex-shrink: 0; }
.cookie-content p { font-size: 14px; color: var(--text-muted); }
.cookie-content a { color: var(--primary-light); text-decoration: underline; }

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--bg-card-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border-radius: 50%;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(239,68,68,0.15); color: #ef4444; }
.modal-header { text-align: center; margin-bottom: 36px; }
.modal-icon { font-size: 48px; margin-bottom: 16px; }
.modal-header h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.modal-header p { color: var(--text-muted); font-size: 15px; }

/* === FORMS === */
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.lead-success { text-align: center; padding: 20px; }
.success-icon { font-size: 60px; margin-bottom: 16px; }
.lead-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.lead-success p { color: var(--text-muted); }

/* === PAGE SPECIFIC === */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(124,58,237,0.1), transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary-light); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(124,58,237,0.6); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-line { display: none; }
  .mega-menu { min-width: 500px; }
  .about-mega-menu { min-width: 420px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(3,7,18,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .nav-list { flex-direction: column; gap: 8px; }
  .nav-link { font-size: 20px; padding: 12px 24px; }
  .mega-menu { display: none !important; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 22px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .cookie-content { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 12px 12px; }
  .pricing-note { flex-direction: column; gap: 12px; align-items: center; }
  /* Mobile nav drawer activation */
  .mob-nav { display: block; }
  .mob-nav.open { pointer-events: auto; }
  .mob-nav.open .mob-nav-backdrop { opacity: 1; }
  .mob-nav.open .mob-nav-panel { transform: translateX(0); }
}

/* === 640px — phones === */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 60px 0; }

  /* Hero */
  .hero-section { min-height: 100svh; }
  .hero-title { font-size: clamp(28px, 8vw, 40px); }
  .hero-subtitle { font-size: 15px; }
  .hero-stat strong { font-size: 20px; }
  .hero-stats { gap: 12px; }
  .page-hero-content h1 { font-size: clamp(26px, 7vw, 38px); }
  .page-hero-content { padding-top: 40px; padding-bottom: 30px; }

  /* Sections */
  .section-title { font-size: clamp(22px, 6vw, 30px); }
  .section-header { flex-direction: column !important; align-items: flex-start; gap: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 28px; }

  /* Portfolio */
  .port-grid { grid-template-columns: 1fr; }
  .port-card--featured { grid-column: span 1; }
  .port-stats-bar .port-stats-inner { flex-direction: column; gap: 16px; text-align: center; }
  .port-stat-sep { display: none; }

  /* Blog */
  .blog-grid-v2 { grid-template-columns: 1fr; }
  .bf-card { grid-template-columns: 1fr; }
  .bf-image { min-height: 200px; }
  .bf-content { padding: 24px 20px; }
  .bf-title { font-size: 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-trust-bar .ctb-inner { flex-direction: column; gap: 16px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-hero-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 20px; }

  /* Process */
  .process-timeline { grid-template-columns: 1fr; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; }

  /* Breadcrumb */
  .breadcrumb { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* Buttons */
  .btn-xl { padding: 14px 24px; font-size: 15px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }

  /* Clients page */
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .clients-testimonials-grid { grid-template-columns: 1fr; }
  .why-stay-grid { grid-template-columns: 1fr; }

  /* Careers page */
  .culture-grid { grid-template-columns: repeat(2,1fr); }
  .job-top { flex-direction: column; }

  /* Partners page */
  .who-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .partner-join-wrap { grid-template-columns: 1fr; }
  .pnb-inner { flex-wrap: wrap; gap: 20px; }
  .pnb-sep { display: none; }

  /* CTA section */
  .cta-content h2 { font-size: clamp(22px, 6vw, 32px); }
}

/* === 480px — small phones === */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section-padding { padding: 48px 0; }
  .hero-title { font-size: 26px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .industries-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .clients-logos-grid { grid-template-columns: repeat(2,1fr); }
  .pf-row { grid-template-columns: 1fr; }
  .apply-steps { flex-direction: column; }
  .hs-connector { transform: rotate(90deg); }
  .cst-inner { flex-direction: column; gap: 16px; }
  .cst-sep { display: none; }
}
