/* ============================================================
   Alraaei — Cloud Cybersecurity-as-a-Service
   Dark, AI-driven aesthetic. Edit tokens in :root to retheme.
   ============================================================ */

:root {
  --bg: #04070f;
  --bg-elevated: #0a101e;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(148, 184, 255, 0.12);
  --border-strong: rgba(148, 184, 255, 0.25);

  --text: #e8eefc;
  --text-muted: #93a1bd;

  --accent: #38e1ff;
  --accent-2: #7c5cff;
  --gradient: linear-gradient(100deg, #38e1ff 0%, #5b8cff 50%, #7c5cff 100%);

  --bronze: #d49a6a;
  --silver: #b9c4d8;
  --gold: #f5c542;

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius: 16px;
  --container: 1160px;
  --shadow-glow: 0 0 40px rgba(56, 225, 255, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; }

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

.section { padding: 110px 0; position: relative; }

/* ---------- Background layers ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(91, 140, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 140, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ---------- Typography helpers ---------- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent { color: var(--accent); }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 640px;
  margin-bottom: 24px;
}

.section-body { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-lg { padding: 15px 34px; font-size: 1rem; }

.btn-primary {
  background: var(--gradient);
  color: #03060d;
  box-shadow: 0 4px 24px rgba(56, 225, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(56, 225, 255, 0.5); }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4, 7, 15, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(56, 225, 255, 0.35));
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent); }

.lang-link {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 4px 14px;
  color: var(--accent) !important;
}
.lang-link:hover { border-color: var(--accent); }

.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 200px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(56, 225, 255, 0.14), rgba(124, 92, 255, 0.08) 45%, transparent 70%);
  pointer-events: none;
}

.hero-inner { text-align: center; position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56, 225, 255, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(56, 225, 255, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 880px;
  margin: 0 auto 24px;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 720px;
  margin: 0 auto 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  backdrop-filter: blur(8px);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-value small { font-size: 1.1rem; }

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---------- Sub-pages (about / team) ---------- */
.page-hero {
  padding: 170px 0 40px;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(56, 225, 255, 0.12), rgba(124, 92, 255, 0.07) 45%, transparent 70%);
  pointer-events: none;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 800px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.process-step:hover { border-color: var(--accent); transform: translateY(-4px); }

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 12px 0 10px;
}

.process-step p { color: var(--text-muted); font-size: 0.92rem; }

.cta-band { text-align: center; }
.cta-band .hero-actions { margin-bottom: 0; margin-top: 10px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 34px;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gradient);
  color: #03060d;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 0 30px rgba(56, 225, 255, 0.3);
}

.team-photo {
  object-fit: cover;
  border: 2px solid var(--border-strong);
  padding: 0;
}

.team-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.team-link {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- Partners strip ---------- */
.partners-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
  background: rgba(255, 255, 255, 0.015);
}

.partners-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px 60px;
}

.plogo {
  width: auto;
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.plogo:hover { opacity: 1; transform: translateY(-2px); }

.plogo-checkpoint { height: 32px; }
.plogo-reco { height: 40px; }
.plogo-varonis { height: 24px; }
.plogo-wiz { height: 40px; }
.plogo-armory { height: 34px; }

/* ---------- E2E solution landscape ---------- */
.landscape {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(56, 225, 255, 0.07), transparent 60%);
}

.landscape-figure {
  margin: 56px auto 0;
  max-width: 1080px;
}

.landscape-frame {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  box-shadow: 0 30px 80px rgba(2, 5, 12, 0.6), var(--shadow-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.landscape-frame:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 36px 90px rgba(2, 5, 12, 0.7), 0 0 50px rgba(56, 225, 255, 0.25);
}

.landscape-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.landscape-zoom {
  position: absolute;
  bottom: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(4, 7, 15, 0.78);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.landscape-zoom svg { color: var(--accent); }
.landscape-frame:hover .landscape-zoom { opacity: 1; transform: translateY(0); }

.landscape-caption {
  margin-top: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (hover: none) {
  .landscape-zoom { opacity: 1; transform: none; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2304060d" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-10"/></svg>') center / 11px no-repeat,
    var(--gradient);
}

/* Orbit visual */
.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border: 1px dashed var(--border-strong);
  border-radius: 50%;
}
.ring-1 { width: 65%; height: 65%; animation: spin 30s linear infinite; }
.ring-2 { width: 95%; height: 95%; animation: spin 50s linear infinite reverse; }

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

.orbit-core {
  width: 110px; height: 110px;
  border-radius: 28px;
  background: var(--gradient);
  color: #03060d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(56, 225, 255, 0.4);
  animation: float 5s ease-in-out infinite;
}

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

.orbit-chip {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  backdrop-filter: blur(8px);
  animation: float 6s ease-in-out infinite;
}
.chip-1 { top: 6%; left: 12%; animation-delay: 0.4s; }
.chip-2 { top: 18%; right: 4%; animation-delay: 1.2s; }
.chip-3 { bottom: 14%; left: 4%; animation-delay: 2s; }
.chip-4 { bottom: 4%; right: 14%; animation-delay: 2.8s; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 225, 255, 0.1);
  border: 1px solid rgba(56, 225, 255, 0.25);
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- AI security spotlight ---------- */
.ai-panel {
  background:
    radial-gradient(ellipse 70% 100% at 20% 0%, rgba(124, 92, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 90% at 90% 100%, rgba(56, 225, 255, 0.12), transparent 60%),
    var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 70px);
  overflow: hidden;
  position: relative;
}

.ai-panel-head { max-width: 640px; margin-bottom: 48px; }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-card {
  background: rgba(4, 7, 15, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.ai-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.ai-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.ai-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 12px 0 10px;
}

.ai-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ---------- GenM product ---------- */
.genm {
  background:
    radial-gradient(ellipse 70% 90% at 15% 0%, rgba(124, 92, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 80% at 90% 100%, rgba(56, 225, 255, 0.09), transparent 55%);
}

.genm-head { max-width: 720px; margin: 0 auto; }

.genm-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}

.genm-media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  box-shadow: 0 30px 70px rgba(2, 5, 12, 0.55), var(--shadow-glow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.genm-media:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 36px 80px rgba(2, 5, 12, 0.65), 0 0 50px rgba(56, 225, 255, 0.22);
}
.genm-media img { width: 100%; height: auto; display: block; }

.genm-lead { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 22px; }

.genm-highlights { margin-bottom: 28px; }

.genm-by {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.genm-by span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.genm-by-logo {
  height: 46px;
  width: auto;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: #000;
  padding: 6px 12px;
}

.genm-subhead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  text-align: center;
  margin: 72px 0 32px;
}

.genm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.genm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.genm-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.genm-card h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin: 16px 0 10px;
}
.genm-card p { color: var(--text-muted); font-size: 0.92rem; }

.genm-benefits { max-width: 900px; margin: 0 auto; }
.genm-benefits-list { gap: 16px; }
.genm-benefits-list li { color: var(--text-muted); }
.genm-benefits-list li strong { color: var(--text); }

.genm-audience {
  margin-top: 64px;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 56px);
}
.genm-audience h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.genm-audience p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 24px;
}
.genm-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.genm-sectors span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(56, 225, 255, 0.08);
  border: 1px solid rgba(56, 225, 255, 0.3);
  border-radius: 999px;
  padding: 8px 18px;
}

/* ---------- Platforms ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.platform-media {
  margin: -6px 0 22px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  aspect-ratio: 16 / 10;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-media img,
.platform-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.platform-media-logo {
  background: #0a1020;
  padding: 28px;
}
.platform-media-dark {
  background: #0a0e1a;
  padding: 0;
}
.platform-media-logo img {
  width: auto;
  max-width: 70%;
  height: auto;
  max-height: 60%;
  object-fit: contain;
}
.platform-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.featured-platform {
  border-color: rgba(56, 225, 255, 0.35);
  background: linear-gradient(180deg, rgba(56, 225, 255, 0.06), var(--surface));
}

.platform-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(56, 225, 255, 0.1);
  border: 1px solid rgba(56, 225, 255, 0.25);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.platform-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.platform-card p { color: var(--text-muted); font-size: 0.95rem; }

.platform-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.platform-link:hover { text-decoration: underline; }

.platform-quote {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  font-style: italic;
  color: var(--text) !important;
}

/* Coverage map */
.coverage { margin-top: 72px; }

.coverage-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.coverage-list {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.coverage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.coverage-row:last-child { border-bottom: none; }
.coverage-row:hover { background: rgba(56, 225, 255, 0.04); }

.coverage-what h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.coverage-what p { color: var(--text-muted); font-size: 0.9rem; }

.coverage-with {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vendor-chip {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(56, 225, 255, 0.08);
  border: 1px solid rgba(56, 225, 255, 0.3);
  border-radius: 999px;
  padding: 7px 18px;
  white-space: nowrap;
}

/* ---------- Suites ---------- */
.suite-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  align-items: stretch;
}

.suite-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.suite-card:hover { transform: translateY(-6px); }

.suite-card.bronze { border-top: 3px solid var(--bronze); }
.suite-card.silver { border-top: 3px solid var(--silver); }
.suite-card.gold {
  border: 1px solid rgba(245, 197, 66, 0.45);
  border-top: 3px solid var(--gold);
  background: linear-gradient(180deg, rgba(245, 197, 66, 0.07), var(--surface));
  box-shadow: 0 0 50px rgba(245, 197, 66, 0.08);
}

.suite-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #1a1405;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.suite-badge {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}
.bronze .suite-badge { color: var(--bronze); }
.silver .suite-badge { color: var(--silver); }
.gold .suite-badge { color: var(--gold); }

.suite-tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 10px 0 24px;
  min-height: 64px;
}

.suite-features {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.suite-features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.93rem;
  color: var(--text-muted);
}
.suite-features li strong { color: var(--text); }
.suite-features li em { color: var(--accent); font-style: normal; }

.suite-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.suite-cta { text-align: center; }

/* Comparison table */
.table-wrap {
  margin-top: 64px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(8px);
}

.suite-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 0.93rem;
}

.suite-table th, .suite-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.suite-table thead th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.suite-table thead .col-bronze { color: var(--bronze); }
.suite-table thead .col-silver { color: var(--silver); }
.suite-table thead .col-gold { color: var(--gold); }

.suite-table tbody tr:last-child td { border-bottom: none; }
.suite-table tbody tr:hover td { background: rgba(56, 225, 255, 0.04); }
.suite-table td:first-child { color: var(--text); font-weight: 500; }
.suite-table td { color: var(--text-muted); }

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.benefit:hover { border-color: var(--accent); transform: translateY(-4px); }

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.benefit p { color: var(--text-muted); font-size: 0.87rem; }

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(124, 92, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(56, 225, 255, 0.08), transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chips span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(4, 7, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.contact-form select { appearance: none; cursor: pointer; }
.contact-form select option { background: var(--bg-elevated); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #5d6b87; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea { resize: vertical; }

.form-note { font-size: 0.88rem; color: var(--accent); min-height: 1.2em; }

.contact-direct { margin-top: 26px; }
.contact-email { color: var(--accent); font-weight: 600; text-decoration: none; }
.contact-email:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 14px rgba(56, 225, 255, 0.2));
}

.footer-tagline {
  font-family: var(--font-display);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-copy { color: #5d6b87; font-size: 0.85rem; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orbit-ring, .orbit-core, .orbit-chip, .pulse-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 560px; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .platform-grid { grid-template-columns: 1fr; }
  .genm-grid { grid-template-columns: repeat(2, 1fr); }
  .genm-showcase { grid-template-columns: 1fr; gap: 32px; }
  .suite-cards { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .suite-tagline { min-height: 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 320px; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .hero { padding: 150px 0 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid { grid-template-columns: 1fr; }
  .genm-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(4, 7, 15, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: 1.05rem; }

  .coverage-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .coverage-with { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] body, [dir="rtl"] {
  font-family: "Tajawal", "Inter", sans-serif;
}

[dir="rtl"] .logo,
[dir="rtl"] .section-eyebrow,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] .btn, [dir="rtl"] .stat-value, [dir="rtl"] .suite-badge,
[dir="rtl"] .vendor-chip, [dir="rtl"] .ai-num {
  font-family: "Tajawal", "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

[dir="rtl"] .check-list li { padding-left: 0; padding-right: 32px; }
[dir="rtl"] .check-list li::before { left: auto; right: 0; }

[dir="rtl"] .suite-features li { padding-left: 0; padding-right: 26px; }
[dir="rtl"] .suite-features li::before { left: auto; right: 0; }

[dir="rtl"] .platform-quote {
  padding-left: 0;
  padding-right: 14px;
  border-left: none;
  border-right: 2px solid var(--accent);
}

[dir="rtl"] .landscape-zoom { right: auto; left: 16px; }

[dir="rtl"] .suite-table th, [dir="rtl"] .suite-table td { text-align: right; }
[dir="rtl"] .coverage-with { justify-content: flex-start; }
[dir="rtl"] .team-link { align-self: flex-start; }
