/* ==========================================================================
   CyberSpeed LLC — main.css
   Design system, layout, typography, components, utilities
   Palette: #0A1128 (deep blue), #00D4FF (accent cyan), #FFFFFF, #0D1B2A (dark bg)
   ========================================================================== */

/* ── CSS Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #0D1B2A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

img[loading="lazy"] {
  min-height: 1px;
}

a {
  color: #00D4FF;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ── CSS Custom Properties ────────────────────────────────────────────── */
:root {
  --color-primary: #0A1128;
  --color-accent: #00D4FF;
  --color-accent-hover: #00B8E0;
  --color-white: #FFFFFF;
  --color-bg-dark: #0D1B2A;
  --color-bg-medium: #111D32;
  --color-bg-light: #152238;
  --color-dubai-gold: #C9A84C;
  --color-dubai-gold-light: #D4B96A;
  --color-dubai-sand: #E8D5A3;
  --color-desert-warm: #B8860B;
  --color-sunset-orange: #E8712D;
  --color-emerald-green: #0D5C3A;
  --color-arabic-teal: #1B6B5A;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: rgba(255, 255, 255, 0.75);
  --color-text-muted: rgba(255, 255, 255, 0.55);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.15);
  --color-overlay: rgba(10, 17, 40, 0.85);
  --color-success: #00C853;
  --color-warning: #FFB300;
  --color-error: #FF5252;

  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
  --shadow-glow-lg: 0 0 40px rgba(0, 212, 255, 0.4);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --container-max: 1200px;
  --container-narrow: 900px;
  --container-wide: 1400px;

  --header-height: 72px;

  --z-header: 1000;
  --z-modal: 2000;
  --z-dropdown: 900;
  --z-overlay: 1500;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-white);
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

em, i {
  font-style: italic;
}

small {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.text-accent { color: var(--color-accent); }
.text-muted  { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Layout & Container ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.container-wide {
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

main {
  padding-top: var(--header-height);
  min-height: 60vh;
}

/* ── Section Spacing ───────────────────────────────────────────────────── */
.section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.section-sm {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section-lg {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.section-dark {
  background-color: var(--color-primary);
}

.section-dark-alt {
  background-color: var(--color-bg-medium);
}

.section-bg {
  background-color: var(--color-bg-dark);
}

.section-border-bottom {
  border-bottom: 1px solid var(--color-border);
}

/* ── Grid Utilities ────────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ── Flex Utilities ────────────────────────────────────────────────────── */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  align-items: flex-start;
}

.flex-end {
  align-items: flex-end;
}

.gap-2  { gap: var(--space-2); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }

/* ── Spacing Utilities ─────────────────────────────────────────────────── */
.mb-2  { margin-bottom: var(--space-2); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }
.mb-20 { margin-bottom: var(--space-20); }
.mb-24 { margin-bottom: var(--space-24); }

.mt-4  { margin-top: var(--space-4); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

.pt-8  { padding-top: var(--space-8); }
.pt-12 { padding-top: var(--space-12); }
.pb-8  { padding-bottom: var(--space-8); }
.pb-12 { padding-bottom: var(--space-12); }

/* ── Visibility ─────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  background-color: rgba(10, 17, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(10, 17, 40, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.site-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.site-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* Legacy text logo fallback (kept for pages not yet migrated) */
.site-logo.logo-text {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  letter-spacing: -0.02em;
}

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

.site-logo:hover {
  text-decoration: none;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  transition: color var(--transition-fast);
}

.nav-dropdown-toggle:hover {
  color: var(--color-accent);
}

.nav-dropdown-toggle .dropdown-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  transition: transform var(--transition-fast);
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-3));
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background-color: var(--color-bg-medium);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  color: var(--color-accent);
  background-color: rgba(0, 212, 255, 0.05);
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-header) + 1);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  body.nav-open {
    overflow: hidden;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: var(--color-primary);
    padding: var(--space-8) var(--space-6);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: calc(var(--z-header) - 1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > a {
    display: block;
    padding: var(--space-4) 0;
    font-size: var(--fs-lg);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: var(--space-4) 0;
    font-size: var(--fs-lg);
    border-bottom: 1px solid var(--color-border);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 500px;
  }

  .nav-dropdown-menu a {
    padding: var(--space-3) var(--space-8);
  }
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-primary);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer-col h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-6);
  color: var(--color-white);
}

.footer-col p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  max-width: 320px;
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul li a {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: var(--space-8) auto 0;
  padding: var(--space-6) var(--space-6) 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-6) 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-secondary);
}

.breadcrumb a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.breadcrumb .separator {
  color: var(--color-text-muted);
  user-select: none;
}

.breadcrumb .current {
  color: var(--color-accent);
  pointer-events: none;
}

/* ── Section Header ─────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-12);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header h2 .accent {
  color: var(--color-accent);
}

.section-header p {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
}

.section-header-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-32) var(--space-6) var(--space-20);
  overflow: hidden;
  background: linear-gradient(135deg, #0A1128 0%, #0D1B2A 40%, #0A1128 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(0, 212, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 70%),
    radial-gradient(circle 200px at 15% 75%, rgba(0, 153, 204, 0.06) 0%, transparent 100%),
    radial-gradient(circle 300px at 85% 25%, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
  animation: hero-glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes hero-glow-pulse {
  0%   { opacity: 0.8; }
  100% { opacity: 1; }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  animation: hero-grid-drift 20s linear infinite;
}

@keyframes hero-grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}

.hero-content h1 {
  font-size: var(--fs-6xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: var(--fs-xl);
  color: var(--color-text-secondary);
  max-width: 620px;
  margin: 0 auto var(--space-8);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-sm {
  min-height: 45vh;
  padding: var(--space-20) var(--space-6) var(--space-12);
}

.hero-sm .hero-content h1 {
  font-size: var(--fs-5xl);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #0099CC 100%);
  color: var(--color-primary);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, #0088B8 100%);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: none;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background-color: var(--color-bg-medium);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-light);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: rgba(0, 212, 255, 0.1);
  margin-bottom: var(--space-6);
  transition: background-color var(--transition-base);
}

.card:hover .card-icon {
  background-color: rgba(0, 212, 255, 0.18);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-accent);
}

.card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
}

.card p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  transition: gap var(--transition-fast);
}

.card-link:hover {
  gap: var(--space-3);
  text-decoration: none;
}

.card-link .arrow {
  transition: transform var(--transition-fast);
}

.card-link:hover .arrow {
  transform: translateX(3px);
}

/* ── Blog Card ────────────────────────────────────────────────────────────── */
.card-blog {
  background-color: var(--color-bg-medium);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-blog:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-medium) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

.card-blog-image svg {
  width: 48px;
  height: 48px;
  fill: var(--color-accent);
  opacity: 0.6;
}

.card-blog-body {
  padding: var(--space-6);
}

.card-blog-body .category {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.card-blog-body h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
}

.card-blog-body p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.card-blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ── Badge ────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge-accent {
  background-color: rgba(0, 212, 255, 0.15);
  color: var(--color-accent);
}

.badge-white {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.badge-success {
  background-color: rgba(0, 200, 83, 0.15);
  color: var(--color-success);
}

/* ── Trust Logos Bar ──────────────────────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-10);
  padding: var(--space-8) 0;
  opacity: 0.6;
}

.trust-bar-item {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ── Testimonial ──────────────────────────────────────────────────────────── */
.testimonial-card {
  background-color: var(--color-bg-medium);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.testimonial-card blockquote {
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-8);
}

.testimonial-card blockquote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: var(--fs-5xl);
  font-style: normal;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent) 0%, #0099CC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.testimonial-meta {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.testimonial-meta strong {
  display: block;
  color: var(--color-white);
}

/* ── Process Steps ──────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.3));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent) 0%, #0099CC 100%);
  color: var(--color-primary);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-glow);
}

.process-step h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2);
}

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

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .process-steps::before {
    display: none;
  }
}

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

/* ── Pricing Card ───────────────────────────────────────────────────────── */
.pricing-card {
  background-color: var(--color-bg-medium);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.pricing-name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.pricing-price {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  margin-bottom: var(--space-2);
  line-height: 1;
}

.pricing-price .currency {
  font-size: var(--fs-xl);
  vertical-align: super;
}

.pricing-price .period {
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal);
  color: var(--color-text-muted);
}

.pricing-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
  text-align: left;
}

.pricing-features li {
  padding: var(--space-2) 0;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  flex-shrink: 0;
}

/* ── FAQ (details/summary) ──────────────────────────────────────────────── */
.faq-group h3 {
  font-size: var(--fs-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

details.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  background-color: var(--color-bg-medium);
  transition: border-color var(--transition-fast);
}

details.faq-item[open] {
  border-color: var(--color-border-light);
}

details.faq-item summary {
  padding: var(--space-5) var(--space-6);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  user-select: none;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '+';
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  color: var(--color-accent);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

details.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}

details.faq-item .faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* ── Features Table ─────────────────────────────────────────────────────── */
.features-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.features-table thead th {
  text-align: left;
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-primary);
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-xs);
  border-bottom: 2px solid var(--color-accent);
}

.features-table tbody td {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.features-table tbody tr:hover td {
  background-color: rgba(0, 212, 255, 0.03);
}

/* ── Case Study ─────────────────────────────────────────────────────────── */
.case-study-card {
  background-color: var(--color-bg-medium);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-study-header {
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.case-study-header .cs-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-study-header .cs-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.case-study-header h4 {
  font-size: var(--fs-xl);
}

.case-study-header .cs-tag {
  font-size: var(--fs-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--fw-semibold);
}

.case-study-body {
  padding: var(--space-8);
}

.case-study-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.case-study-stat-item {
  text-align: center;
}

.case-study-stat-item .stat-num {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  display: block;
}

.case-study-stat-item .stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Contact Form ───────────────────────────────────────────────────────── */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.form-control {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-base);
  color: var(--color-white);
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
}

.form-success {
  background-color: rgba(0, 200, 83, 0.1);
  border: 1px solid var(--color-success);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-success);
  margin-bottom: var(--space-6);
}

.form-error-msg {
  background-color: rgba(239, 68, 68, 0.12);
  border: 1px solid var(--color-error, #ef4444);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-error, #ef4444);
  margin-bottom: var(--space-6);
}

/* ── Turnstile widget ─────────────────────────────────────────────────── */
.cf-turnstile-wrap {
  margin-bottom: var(--space-4);
}

.cf-turnstile-wrap .form-error {
  margin-top: var(--space-2);
  display: block;
}

/* ── Contact Info ───────────────────────────────────────────────────────── */
.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-info-list .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-list .ci-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.contact-info-list .ci-text strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-white);
}

.contact-info-list .ci-text span {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

/* ── Map Placeholder ────────────────────────────────────────────────────── */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-medium) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
  position: relative;
  overflow: hidden;
}

.map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.map-placeholder svg {
  width: 64px;
  height: 64px;
  fill: var(--color-accent);
  opacity: 0.4;
}

/* ── Blog Article ───────────────────────────────────────────────────────── */
.article {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
}

.article-header {
  margin-bottom: var(--space-10);
}

.article-header .article-category {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.article-header h1 {
  margin-bottom: var(--space-6);
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.article-body h2 {
  font-size: var(--fs-3xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.article-body h3 {
  font-size: var(--fs-2xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.article-body p {
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.article-body ul,
.article-body ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-8);
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body ul li,
.article-body ol li {
  margin-bottom: var(--space-3);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.article-body blockquote {
  border-left: 4px solid var(--color-accent);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-8) 0;
  background-color: rgba(0, 212, 255, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

.article-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-medium) 100%);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-10);
}

.article-cta h3 {
  margin-bottom: var(--space-3);
}

.article-cta p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

/* ── Page Hero (Subpage) ────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-dark) 100%);
  padding: calc(var(--header-height) + var(--space-12)) var(--space-6) var(--space-12);
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  top: var(--header-height);
  background: radial-gradient(ellipse 60% 50% at 50% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
}

.page-hero p {
  position: relative;
  z-index: 1;
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: var(--space-4) auto 0;
}

/* ── Back to Top ────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: var(--color-accent-hover);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
  stroke: var(--color-primary);
  stroke-width: 2;
}

/* ── Chatwoot Widget — lightweight positioning ───────────────────────────── */
.woot--bubble-holder {
  right: 24px !important;
  z-index: 9999 !important;
}

@media (max-width: 768px) {
  .woot--bubble-holder {
    right: 8px !important;
  }
}

/* ── 404 Page ───────────────────────────────────────────────────────────── */
.not-found {
  text-align: center;
  padding: var(--space-32) var(--space-6);
}

.not-found h1 {
  font-size: 8rem;
  font-weight: var(--fw-extrabold);
  background: linear-gradient(135deg, var(--color-accent) 0%, #0099CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-6);
}

.not-found h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-4);
}

.not-found p {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-8);
}

/* ── Social Share / CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-medium) 100%);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  text-align: center;
}

.cta-strip h2 {
  margin-bottom: var(--space-3);
}

.cta-strip p {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-8);
}

/* ── Service Intro Section ──────────────────────────────────────────────── */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.service-intro-image {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-medium) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
}

.service-intro-image svg {
  width: 80px;
  height: 80px;
  fill: var(--color-accent);
  opacity: 0.5;
}

.service-intro-text h2 {
  margin-bottom: var(--space-4);
}

.service-intro-text p {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

@media (max-width: 768px) {
  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .service-intro-image {
    height: 240px;
  }
}

/* ── Tech Stack Grid ────────────────────────────────────────────────────── */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.tech-stack-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  color: var(--color-white);
}

.tech-stack-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
}

/* ── Advanced Visual Effects ────────────────────────────────────────────── */

/* Animated cyber-grid background */
.bg-cyber-grid {
  position: relative;
}

.bg-cyber-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 0.5px, transparent 0.5px);
  background-size: 50px 50px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Circuit line decoration */
.circuit-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.circuit-lines svg {
  position: absolute;
  opacity: 0.06;
  width: 100%;
  height: 100%;
}

/* Animated gradient border glow */
.border-glow {
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
}

.border-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,212,255,0.4), rgba(0,212,255,0.05), rgba(0,212,255,0.2), rgba(0,212,255,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: border-glow-shift 4s ease-in-out infinite;
}

@keyframes border-glow-shift {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* Neon text effect */
.neon-text {
  text-shadow:
    0 0 7px rgba(0, 212, 255, 0.5),
    0 0 14px rgba(0, 212, 255, 0.3),
    0 0 21px rgba(0, 212, 255, 0.15);
}

/* Card with neon edge on hover */
.card-neon {
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.card-neon:hover {
  box-shadow:
    0 0 15px rgba(0, 212, 255, 0.15),
    0 0 30px rgba(0, 212, 255, 0.08),
    0 8px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 212, 255, 0.3);
}

/* Floating particles background (JS-driven) */
.particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

/* Gradient text for major headings */
.gradient-text {
  background: linear-gradient(135deg, var(--color-accent) 0%, #0099CC 50%, var(--color-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Orbital glow rings */
.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.08);
  pointer-events: none;
  animation: orbital-spin 30s linear infinite;
}

.orbital-ring:nth-child(2) {
  animation-duration: 25s;
  animation-direction: reverse;
  border-color: rgba(0, 212, 255, 0.05);
  width: 110%;
  height: 110%;
}

@keyframes orbital-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Data flow lines decoration */
.data-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.data-lines .line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.15), transparent);
  animation: data-flow 4s ease-in-out infinite;
}

.data-lines .line:nth-child(odd) {
  animation-duration: 5s;
  animation-delay: 1s;
}

@keyframes data-flow {
  0%   { transform: translateX(-100%); opacity: 0; }
  50%  { opacity: 0.6; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Hex grid overlay */
.hex-overlay {
  position: relative;
}

.hex-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='46'%3E%3Cpath d='M20 0 L40 11.5 L40 34.5 L20 46 L0 34.5 L0 11.5 Z' fill='none' stroke='rgba(0,212,255,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 46px;
  pointer-events: none;
  opacity: 0.5;
}

/* Modern frosted glass card */
.card-glass {
  background: rgba(17, 29, 50, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.card-glass:hover {
  border-color: rgba(0, 212, 255, 0.25);
  background: rgba(17, 29, 50, 0.85);
}

/* Stat counter with accent underline */
.stat-accent {
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-2);
}

.stat-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

/* Section connector (angled divider) */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  right: -5%;
  height: 80px;
  background: linear-gradient(176deg, var(--color-bg-dark) 50%, var(--color-primary) 50%);
}

/* Glowing dot cluster (tech aesthetic) */
.dot-cluster {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.dot-cluster span {
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  opacity: 0.5;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

.dot-cluster span:nth-child(2) { animation-delay: 0.3s; }
.dot-cluster span:nth-child(3) { animation-delay: 0.6s; }

@keyframes dot-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.8); }
}

/* ── Featured Service Banners ──────────────────────────────────────────── */
.featured-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.featured-banner {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-medium) 100%);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.featured-banner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-lg);
  border-color: var(--color-accent);
}

.featured-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.featured-banner .banner-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(0, 212, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.featured-banner .banner-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
}

.featured-banner .banner-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: rgba(0, 212, 255, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.featured-banner h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}

.featured-banner p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.featured-banner .banner-stats {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.banner-stat {
  text-align: center;
}

.banner-stat .stat-value {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  line-height: 1;
}

.banner-stat .stat-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
}

.featured-banner .btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .featured-banners {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ── CSS Charts (bar chart, donut indicator) ───────────────────────────── */
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
  height: 120px;
  margin-bottom: var(--space-4);
}

.bar-chart .bar {
  flex: 1;
  background: linear-gradient(to top, var(--color-accent), rgba(0, 212, 255, 0.4));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  position: relative;
  transition: height 0.8s ease;
  min-height: 4px;
}

.bar-chart .bar .bar-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.bar-chart .bar .bar-value {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
}

.bar-chart.animated .bar {
  animation: bar-grow 1s ease-out forwards;
}

@keyframes bar-grow {
  from { height: 0; }
  to { height: var(--bar-height); }
}

/* ── Donut/Ring indicator ──────────────────────────────────────────────── */
.ring-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.ring-svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}

.ring-svg circle {
  fill: none;
  stroke-width: 8;
}

.ring-bg {
  stroke: var(--color-border);
}

.ring-fill {
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 1.5s ease;
}

.ring-value {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
}

.ring-label {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

/* ── Comparison Table (competitor benchmarking) ────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.compare-table th {
  padding: var(--space-3) var(--space-4);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
}

.compare-table th:first-child {
  color: var(--color-white);
}

.compare-table td {
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}

.compare-table tr.highlight td {
  background-color: rgba(0, 212, 255, 0.04);
  color: var(--color-white);
}

.compare-table .check {
  color: var(--color-success);
  font-weight: var(--fw-bold);
}

.compare-table .partial {
  color: var(--color-warning);
}

.compare-table .cross {
  color: var(--color-error);
}

/* ── Stats Row ─────────────────────────────────────────────────────────── */
.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-6);
  text-align: center;
}

.stats-row .stat-item {
  padding: var(--space-4);
}

.stats-row .stat-num-lg {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.stats-row .stat-desc {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-2);
}

/* ── Market Stats Block ────────────────────────────────────────────────── */
.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding: var(--space-8) 0;
}

.market-stat-card {
  background: var(--color-bg-medium);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.market-stat-card .ms-value {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  display: block;
}

.market-stat-card .ms-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-2);
}

.market-stat-card .ms-source {
  font-size: 10px;
  color: var(--color-text-muted);
  opacity: 0.6;
  margin-top: var(--space-2);
}

@media (max-width: 768px) {
  .market-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .market-stats {
    grid-template-columns: 1fr;
  }
}

/* ── Dubai Skyline SVG Overlay ─────────────────────────────────────────── */
.dubai-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

.dubai-skyline svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Arabic Geometric Pattern (Mashrabiya-inspired) ───────────────────── */
.arabic-pattern {
  position: relative;
}

.arabic-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0,30 L15,0 L30,0 L15,30 Z M30,0 L45,30 L30,60 L15,30 Z M45,30 L60,30 L45,60 L30,60 Z M0,30 L15,60 L0,60 Z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Desert Warm Gradient Section ─────────────────────────────────────── */
.section-desert {
  background: linear-gradient(135deg, #0A1128 0%, #1A1230 30%, #0D1B2A 70%, #0F1D2E 100%);
  position: relative;
}

.section-desert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 90%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 10%, rgba(232, 113, 45, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Dubai Gold Accent ─────────────────────────────────────────────────── */
.text-gold {
  color: var(--color-dubai-gold);
}

.accent-gold {
  color: var(--color-dubai-gold);
  font-weight: var(--fw-semibold);
}

/* ── Gold Border Card ──────────────────────────────────────────────────── */
.card-gold {
  border-color: rgba(201, 168, 76, 0.15);
}

.card-gold:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1), var(--shadow-lg);
}

/* ── Bilingual welcome strip ───────────────────────────────────────────── */
.arabic-greeting {
  font-family: 'Segoe UI', 'Arial', system-ui, sans-serif;
  font-size: var(--fs-lg);
  color: var(--color-dubai-gold);
  text-align: center;
  letter-spacing: 0.03em;
  direction: rtl;
  opacity: 0.8;
}

/* ── Palm tree ornament ────────────────────────────────────────────────── */
.palm-ornament {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
}

.palm-ornament svg {
  width: 100%;
  height: 100%;
  fill: var(--color-dubai-gold);
  opacity: 0.7;
}

/* ── Dubai Flag Colors Section ─────────────────────────────────────────── */
.section-uae {
  position: relative;
  border-top: 3px solid var(--color-dubai-gold);
  border-bottom: 3px solid var(--color-dubai-gold);
}

/* ── Camels / Desert Dunes Pattern ─────────────────────────────────────── */
.dunes-bg {
  position: relative;
}

.dunes-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(201, 168, 76, 0.05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.dunes-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q150,10 300,80 Q450,30 600,80 Q750,20 900,80 Q1050,40 1200,80 L1200,0 L0,0 Z' fill='rgba(201,168,76,0.04)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* ── Souk / Bazaar inspired grid ───────────────────────────────────────── */
.souk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.souk-card {
  background: linear-gradient(135deg, rgba(17, 29, 50, 0.9), rgba(21, 34, 56, 0.9));
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.souk-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

/* ── Hero Background Image ─────────────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 17, 40, 0.85) 0%, rgba(10, 17, 40, 0.6) 40%, rgba(10, 17, 40, 0.4) 70%, rgba(10, 17, 40, 0.5) 100%),
    radial-gradient(ellipse 80% 50% at 20% 15%, rgba(0, 212, 255, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 85% 80%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(232, 113, 45, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  animation: hero-grid-drift 30s linear infinite;
}

@keyframes hero-grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* Full hero with Dubai skyline ──────────────────────────────────────── */
.hero-dubai {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-32) var(--space-6) var(--space-32);
  overflow: hidden;
  background:
    linear-gradient(180deg, #0A1128 0%, #0D1428 20%, #0F1A30 40%, #111D35 60%, #0D1B2A 85%, #0F1D30 100%);
}

.hero-dubai::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 15% 10%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 70% 80% at 90% 85%, rgba(201, 168, 76, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232, 113, 45, 0.05) 0%, transparent 55%),
    radial-gradient(circle 300px at 80% 90%, rgba(201, 168, 76, 0.06) 0%, transparent 100%),
    linear-gradient(180deg, transparent 40%, rgba(10, 17, 40, 0.6) 100%);
  pointer-events: none;
  animation: hero-glow-pulse 10s ease-in-out infinite alternate;
}

@keyframes hero-glow-pulse {
  0%   { opacity: 0.85; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.85; transform: scale(1); }
}

.hero-dubai::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1px at 20% 30%, rgba(0, 212, 255, 0.15) 1px, transparent 1px),
    radial-gradient(circle 1px at 80% 70%, rgba(201, 168, 76, 0.1) 1px, transparent 1px),
    radial-gradient(circle 1px at 40% 60%, rgba(0, 212, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle 1px at 60% 20%, rgba(232, 113, 45, 0.06) 1px, transparent 1px);
  background-size: 400px 300px, 500px 400px, 350px 250px, 450px 350px;
  pointer-events: none;
  animation: hero-particles-drift 30s linear infinite;
}

@keyframes hero-particles-drift {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 400px 300px, -500px -400px, 350px -250px, -450px 350px; }
}

/* ── Enhanced hero content animations ──────────────────────────────────── */
.hero-dubai .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  animation: hero-content-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes hero-content-reveal {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-dubai .hero-badge {
  animation: hero-badge-float 3s ease-in-out infinite, hero-badge-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
}

@keyframes hero-badge-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-badge-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.01); }
}

.hero-dubai .arabic-greeting {
  animation: hero-text-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
  transform: translateY(15px);
}

.hero-dubai .urdu-greeting {
  animation: hero-text-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
  transform: translateY(15px);
}

.hero-dubai h1 {
  animation: hero-title-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes hero-title-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-dubai .hero-subtitle {
  animation: hero-text-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
  opacity: 0;
  transform: translateY(15px);
}

.hero-dubai .hero-cta {
  animation: hero-cta-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
  opacity: 0;
  transform: translateY(15px);
}

.hero-dubai .location-badges {
  animation: hero-text-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
  opacity: 0;
  transform: translateY(15px);
}

@keyframes hero-text-reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-cta-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-dubai .hero-illustration {
  position: absolute;
  top: 50%;
  right: var(--space-6);
  transform: translateY(-50%);
  width: 48%;
  max-width: 600px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: hero-illustration-reveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes hero-illustration-reveal {
  0% { opacity: 0; transform: translateY(-50%) translateX(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(-50%) translateX(0) scale(1); }
}

.hero-dubai .hero-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.5));
  animation: illustration-float 8s ease-in-out infinite;
}

@keyframes illustration-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(0.5deg); }
  50% { transform: translateY(-5px) rotate(-0.3deg); }
  75% { transform: translateY(-8px) rotate(0.2deg); }
}

.hero-dubai .dubai-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: skyline-reveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes skyline-reveal {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-dubai .dubai-skyline svg {
  width: 100%;
  height: 100%;
  display: block;
  animation: skyline-glow 6s ease-in-out infinite alternate;
}

@keyframes skyline-glow {
  0% { filter: drop-shadow(0 0 20px rgba(201,168,76,0.2)); }
  100% { filter: drop-shadow(0 0 50px rgba(0,212,255,0.3)) drop-shadow(0 0 80px rgba(201,168,76,0.2)); }
}

@media (max-width: 1200px) {
  .hero-dubai .hero-illustration {
    width: 45%;
    right: var(--space-4);
  }
}

@media (max-width: 992px) {
  .hero-dubai .hero-illustration {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: var(--space-8) auto 0;
    opacity: 1;
    animation: hero-illustration-reveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
  }
  .hero-dubai .hero-illustration svg {
    animation: none;
  }
  .hero-dubai {
    min-height: auto;
    padding: var(--space-28) var(--space-6) var(--space-24);
  }
  .hero-dubai .hero-content {
    text-align: center;
  }
  .hero-dubai .hero-cta {
    justify-content: center;
  }
}

/* ── Dubai locations badge ─────────────────────────────────────────────── */
.location-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-dubai-gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  animation: badge-stagger 0.6s cubic-bezier(0.16, 1, 0.3, 1) calc(1.3s + var(--delay, 0s)) forwards;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
}

@keyframes badge-stagger {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.location-badge:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.15);
}

.location-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--color-dubai-gold);
}

.hero-dubai::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 15%, rgba(0, 212, 255, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 85% 80%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(232, 113, 45, 0.04) 0%, transparent 60%),
    radial-gradient(circle 250px at 75% 85%, rgba(201, 168, 76, 0.05) 0%, transparent 100%);
  pointer-events: none;
  animation: hero-glow-pulse 8s ease-in-out infinite alternate;
}

/* ── Dubai locations badge ─────────────────────────────────────────────── */
.location-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-dubai-gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-full);
}

.location-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--color-dubai-gold);
}

/* ==========================================================================
   NEW GRAPHICS COMPONENTS — Dubai Luxe, Comparison, AI/GEO, Industry, Emirates
   ========================================================================== */

/* ── Trust Seals / Partner Badges ────────────────────────────────────────── */
.trust-seals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  opacity: 0.5;
}

.trust-seal {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  transition: opacity var(--transition-base);
}

.trust-seal:hover { opacity: 1; }

.trust-seal svg { width: 28px; height: 28px; fill: var(--color-accent); }

/* ── Client Logo Carousel ────────────────────────────────────────────────── */
.client-logo-carousel {
  overflow: hidden;
  position: relative;
  padding: var(--space-8) 0;
}

.client-logo-track {
  display: flex;
  gap: var(--space-10);
  animation: logo-scroll 30s linear infinite;
  width: max-content;
}

.client-logo-carousel:hover .client-logo-track { animation-play-state: paused; }

.client-logo {
  flex: 0 0 auto;
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--transition-base), transform var(--transition-base);
}

.client-logo:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

.client-logo svg { width: 100%; height: 100%; max-width: 140px; max-height: 60px; }

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Industry Vertical Cards ─────────────────────────────────────────────── */
.vertical-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-6); }

.vertical-card {
  position: relative;
  background: linear-gradient(135deg, var(--color-bg-medium) 0%, var(--color-bg-light) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.vertical-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-lg);
  border-color: var(--color-dubai-gold);
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.vertical-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
  position: relative; z-index: 1;
}

.vertical-icon svg { width: 28px; height: 28px; fill: var(--color-accent); }

.vertical-card h3 { font-size: var(--fs-xl); margin-bottom: var(--space-3); position: relative; z-index: 1; }

.vertical-card p { font-size: var(--fs-sm); color: var(--color-text-muted); position: relative; z-index: 1; }

.vertical-link { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-dubai-gold); margin-top: var(--space-4); position: relative; z-index: 1; }

.vertical-link:hover { gap: var(--space-3); color: var(--color-dubai-gold-light); }

/* ── Emirate / GCC Location Cards ────────────────────────────────────────── */
.emirate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-6); }

.emirate-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-bg-medium);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.emirate-card:hover {
  border-color: var(--color-dubai-gold);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(201,168,76,0.1), var(--shadow-lg);
}

.emirate-flag { width: 48px; height: 32px; margin: 0 auto var(--space-4); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }

.emirate-card h3 { font-size: var(--fs-lg); margin-bottom: var(--space-2); }

.emirate-card p { font-size: var(--fs-xs); color: var(--color-text-muted); margin-bottom: var(--space-4); }

.emirate-card .btn { width: 100%; }

/* ── Comparison Table ────────────────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; margin: var(--space-8) 0; }

.compare-table {
  width: 100%; min-width: 640px;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.compare-table th,
.compare-table td { padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--color-border); text-align: left; }

.compare-table thead th {
  background: var(--color-primary);
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-size: var(--fs-xs);
  position: sticky; top: 0; z-index: 1;
}

.compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }

.compare-table tbody tr:hover { background: rgba(0, 212, 255, 0.04); }

.compare-table th:first-child { color: var(--color-white); font-weight: var(--fw-semibold); width: 220px; }

.compare-table td:first-child { font-weight: var(--fw-medium); color: var(--color-white); }

.compare-table .our-col { background: rgba(0, 212, 255, 0.06); font-weight: var(--fw-semibold); color: var(--color-accent); }

.compare-table .check { color: var(--color-success); font-weight: var(--fw-bold); }
.compare-table .partial { color: var(--color-warning); }
.compare-table .cross { color: var(--color-error); }

/* ── AI / GEO Section ────────────────────────────────────────────────────── */
.ai-geo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-6); }

.ai-geo-card {
  background: linear-gradient(135deg, var(--color-bg-medium) 0%, var(--color-bg-light) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.ai-geo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-lg);
  border-color: var(--color-accent);
}

.ai-geo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-dubai-gold), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.ai-geo-card:hover::before { opacity: 1; }

.ai-geo-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(0, 212, 255, 0.12); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-5); }

.ai-geo-icon svg { width: 24px; height: 24px; fill: var(--color-accent); }

.ai-geo-card h3 { font-size: var(--fs-lg); margin-bottom: var(--space-3); }

.ai-geo-card p { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* ── Animated Bar Chart (before/after) ───────────────────────────────────── */
.chart-wrap { max-width: 700px; margin: var(--space-8) auto; }

.chart-labels { display: flex; justify-content: space-between; margin-bottom: var(--space-3); font-size: var(--fs-xs); color: var(--color-text-muted); }

.bar-chart-enhanced { display: flex; align-items: flex-end; gap: var(--space-3); height: 160px; }

.bar-chart-enhanced .bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }

.bar-chart-enhanced .bar-pair { width: 100%; height: 100%; display: flex; align-items: flex-end; gap: var(--space-1); justify-content: center; }

.bar-chart-enhanced .bar { width: 100%; border-radius: var(--radius-sm) var(--radius-sm) 0 0; position: relative; transition: height 1s ease; min-height: 4px; }

.bar-chart-enhanced .bar::after { content: attr(data-value); position: absolute; top: -22px; left: 50%; transform: translateX(-50%); font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--color-white); white-space: nowrap; opacity: 0; transition: opacity var(--transition-base); }

.bar-chart-enhanced .bar-group:hover .bar::after { opacity: 1; }

.bar-chart-enhanced .bar-before { background: linear-gradient(to top, var(--color-text-muted), rgba(255,255,255,0.15)); }
.bar-chart-enhanced .bar-after { background: linear-gradient(to top, var(--color-accent), var(--color-dubai-gold)); box-shadow: 0 0 12px rgba(0,212,255,0.4); }

.bar-legend { display: flex; justify-content: center; gap: var(--space-8); margin-top: var(--space-6); font-size: var(--fs-xs); }
.bar-legend span { display: flex; align-items: center; gap: var(--space-2); }
.bar-legend .swatch { width: 12px; height: 12px; border-radius: var(--radius-sm); }

/* ── Process Infographic (Vertical SVG Steps) ────────────────────────────── */
.process-infographic { position: relative; max-width: 800px; margin: 0 auto; padding: var(--space-8) 0; }

.process-infographic::before {
  content: '';
  position: absolute; top: 40px; bottom: 40px; left: 36px; width: 2px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-dubai-gold), var(--color-accent));
  z-index: 0;
}

.process-step-visual {
  display: flex; align-items: flex-start; gap: var(--space-6);
  margin-bottom: var(--space-10);
  position: relative; z-index: 1;
}

.process-step-visual.reverse { flex-direction: row-reverse; text-align: right; }

.process-step-num-lg {
  flex: 0 0 72px; width: 72px; height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-dubai-gold) 100%);
  color: var(--color-primary);
  font-size: var(--fs-2xl); font-weight: var(--fw-extrabold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow-lg);
  z-index: 2;
}

.process-step-content { flex: 1; }

.process-step-content h4 { font-size: var(--fs-xl); margin-bottom: var(--space-2); }

.process-step-content p { font-size: var(--fs-base); color: var(--color-text-secondary); margin: 0; }

@media (max-width: 768px) {
  .process-infographic::before { left: 20px; }
  .process-step-num-lg { width: 56px; height: 56px; font-size: var(--fs-xl); }
}

/* ── Ring Indicator Enhanced (with center metric) ────────────────────────── */
.ring-indicator-enhanced { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-10); text-align: center; }

.ring-svg-enhanced { width: 140px; height: 140px; transform: rotate(-90deg); }

.ring-svg-enhanced circle { fill: none; stroke-width: 10; }

.ring-bg-enhanced { stroke: var(--color-border); }
.ring-fill-enhanced { stroke: url(#ring-gradient); stroke-linecap: round; stroke-dasharray: 377; stroke-dashoffset: 377; transition: stroke-dashoffset 2s ease; }

.ring-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; pointer-events: none; }
.ring-center .ring-value { font-size: var(--fs-4xl); font-weight: var(--fw-extrabold); color: var(--color-accent); line-height: 1; }
.ring-center .ring-label { font-size: var(--fs-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Sticky CTA Bar (bottom mobile) ──────────────────────────────────────── */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--color-primary);
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-4) var(--space-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  display: none;
}

.sticky-cta-bar .cta-text { font-size: var(--fs-sm); color: var(--color-text-secondary); }
.sticky-cta-bar .cta-text strong { color: var(--color-white); display: block; }

@media (max-width: 768px) {
  .sticky-cta-bar { display: flex; }
  main { padding-bottom: 90px; }
}

/* ── Gold Gradient Banner (for featured services on home) ────────────────── */
.banner-gold-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(201,168,76,0.08) 50%, var(--color-bg-medium) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative; overflow: hidden;
}

.banner-gold-gradient::before {
  content: '';
  position: absolute; top: -50%; right: -30%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.banner-gold-gradient .banner-icon {
  background: rgba(201, 168, 76, 0.12);
}
.banner-gold-gradient .banner-icon svg { fill: var(--color-dubai-gold); }
.banner-gold-gradient .banner-badge { background: rgba(201,168,76,0.1); color: var(--color-dubai-gold); }
.banner-gold-gradient .stat-value { color: var(--color-dubai-gold); }

.banner-gold-gradient:hover {
  box-shadow: 0 0 30px rgba(201,168,76,0.15), var(--shadow-lg);
  border-color: var(--color-dubai-gold);
}

/* ── Service Highlight Banner (SEO / Ads / Shopify) ──────────────────────── */
.service-highlight-banner {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-medium) 50%, var(--color-primary) 100%);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-highlight-banner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-lg);
  border-color: var(--color-accent);
}

.service-highlight-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0,212,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.service-highlight-banner .shb-header {
  display: flex; align-items: center; gap: var(--space-4);
  margin-bottom: var(--space-6);
  position: relative; z-index: 1;
}

.service-highlight-banner .shb-icon {
  width: 72px; height: 72px; border-radius: var(--radius-lg);
  background: rgba(0, 212, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.service-highlight-banner .shb-icon svg { width: 36px; height: 36px; fill: var(--color-accent); }

.service-highlight-banner .shb-badge {
  font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-accent);
  background: rgba(0,212,255,0.1); padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.service-highlight-banner h3 { font-size: var(--fs-3xl); margin-bottom: var(--space-3); position: relative; z-index: 1; }

.service-highlight-banner p { font-size: var(--fs-base); color: var(--color-text-secondary); max-width: 560px; margin-bottom: var(--space-8); position: relative; z-index: 1; }

.service-highlight-banner .shb-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6);
  margin-bottom: var(--space-8); position: relative; z-index: 1;
}

.service-highlight-banner .shb-stat { text-align: center; }
.service-highlight-banner .shb-stat .stat-value { display: block; font-size: var(--fs-4xl); font-weight: var(--fw-extrabold); color: var(--color-accent); line-height: 1; }
.service-highlight-banner .shb-stat .stat-label { display: block; font-size: var(--fs-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: var(--space-2); }

.service-highlight-banner .btn { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .service-highlight-banner { padding: var(--space-8) var(--space-6); }
  .service-highlight-banner h3 { font-size: var(--fs-2xl); }
  .service-highlight-banner .shb-stats { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ── Featured Service Banners Enhancement ────────────────────────────────── */
.featured-banners { gap: var(--space-6); }

.featured-banner {
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--color-bg-medium) 0%, var(--color-bg-light) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.featured-banner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-lg);
  border-color: var(--color-accent);
}

.featured-banner::before {
  top: -40%; right: -20%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
}

.featured-banner .banner-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(0,212,255,0.12);
}

.featured-banner .banner-icon svg { width: 28px; height: 28px; fill: var(--color-accent); }

.featured-banner .banner-badge { font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent); background: rgba(0,212,255,0.1); padding: var(--space-1) var(--space-3); border-radius: var(--radius-full); margin-bottom: var(--space-4); display: inline-block; }

.featured-banner h3 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }

.featured-banner p { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--space-6); }

.featured-banner .banner-stats { display: flex; gap: var(--space-4); margin-bottom: var(--space-6); flex-wrap: wrap; }
.featured-banner .banner-stat { flex: 1; min-width: 80px; text-align: center; }
.featured-banner .banner-stat .stat-value { display: block; font-size: var(--fs-2xl); font-weight: var(--fw-extrabold); color: var(--color-accent); line-height: 1; }
.featured-banner .banner-stat .stat-label { display: block; font-size: var(--fs-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: var(--space-1); }

.featured-banner .btn { width: 100%; }

@media (max-width: 1024px) {
  .featured-banners { grid-template-columns: 1fr; }
}

/* ── SEO Score / Market Stats Cards ──────────────────────────────────────── */
.market-stats { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.market-stat-card {
  background: var(--color-bg-medium);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.market-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-accent); }

.market-stat-card .ms-value { font-size: var(--fs-3xl); font-weight: var(--fw-extrabold); color: var(--color-accent); display: block; line-height: 1; }
.market-stat-card .ms-label { font-size: var(--fs-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: var(--space-2); display: block; }
.market-stat-card .ms-source { font-size: 10px; color: var(--color-text-muted); opacity: 0.6; margin-top: var(--space-2); display: block; }

/* ── Arabic / Urdu Type Support ──────────────────────────────────────────── */
.arabic-text { font-family: 'Noto Naskh Arabic', 'Segoe UI', 'Arial', system-ui, sans-serif; direction: rtl; text-align: right; }
.urdu-text { font-family: 'Noto Nastaliq Urdu', 'Noto Naskh Arabic', 'Segoe UI', system-ui, sans-serif; direction: rtl; text-align: right; font-size: 1.1em; line-height: 2; }

/* ── Enhanced Hero Dubai with Urdu Greeting ──────────────────────────────── */
.hero-dubai .urdu-greeting {
  font-family: 'Noto Nastaliq Urdu', 'Noto Naskh Arabic', 'Segoe UI', system-ui, sans-serif;
  font-size: var(--fs-xl);
  color: var(--color-dubai-gold);
  text-align: center;
  direction: rtl;
  letter-spacing: 0.02em;
  opacity: 0.9;
  margin-bottom: var(--space-6);
}

/* ── Section Divider with Dubai Gold Accent ──────────────────────────────── */
.section-divider-gold {
  position: relative; height: 4px; max-width: 200px; margin: var(--space-8) auto;
  background: linear-gradient(90deg, transparent, var(--color-dubai-gold), transparent);
  border-radius: 2px;
}

.section-divider-gold::before,
.section-divider-gold::after {
  content: ''; position: absolute; top: 50%; width: 12px; height: 12px; border-radius: 50%;
  background: var(--color-dubai-gold); transform: translateY(-50%);
}
.section-divider-gold::before { left: -24px; }
.section-divider-gold::after { right: -24px; }

/* ── Video Testimonial Reel ──────────────────────────────────────────────── */
.video-testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-6); }

.video-testimonial-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-bg-medium); border: 1px solid var(--color-border);
  aspect-ratio: 16/9;
}

.video-testimonial-card video { width: 100%; height: 100%; object-fit: cover; }

.video-testimonial-card .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(0,212,255,0.95); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.video-testimonial-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--color-accent); }

.video-testimonial-card .play-btn svg { width: 28px; height: 28px; fill: var(--color-primary); margin-left: 4px; }

.video-testimonial-card .vt-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-4); background: linear-gradient(180deg, transparent, rgba(10,17,40,0.95));
  color: var(--color-white); font-size: var(--fs-sm);
}

/* ── Interactive Keyword Rank Slider (JS-enhanced) ───────────────────────── */
.keyword-rank-slider { position: relative; max-width: 600px; margin: var(--space-10) auto; padding: var(--space-6); background: var(--color-bg-medium); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }

.keyword-rank-slider label { display: block; font-size: var(--fs-sm); color: var(--color-text-secondary); margin-bottom: var(--space-4); }

.keyword-rank-slider input[type="range"] {
  width: 100%; accent-color: var(--color-accent);
}

.keyword-rank-slider .slider-output { text-align: center; margin-top: var(--space-6); font-size: var(--fs-lg); color: var(--color-accent); font-weight: var(--fw-bold); }

/* ── Backlink Network Visualization (SVG nodes) ──────────────────────────── */
.backlink-viz { position: relative; width: 100%; height: 300px; background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }

.backlink-viz svg { width: 100%; height: 100%; }

.backlink-viz .node { transition: r 0.3s, opacity 0.3s; }
.backlink-viz .node:hover { r: 10; opacity: 1; }
.backlink-viz .link { stroke: rgba(0,212,255,0.1); stroke-width: 1; }

/* ==========================================================================
   HOMEPAGE ENHANCEMENTS — AI Showcase, Hero Badge, Deliverables, MVP Sprint
   ========================================================================== */

/* ── Hero Badge ────────────────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-dubai-gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  animation: badge-pulse 3s ease-in-out infinite;
}

.hero-badge svg { width: 16px; height: 16px; fill: currentColor; }

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto var(--space-8);
  line-height: var(--lh-relaxed);
}

/* ── Nav AI Highlight ──────────────────────────────────────────────────────── */
.nav-ai-highlight {
  position: relative;
}
.nav-ai-highlight::after {
  content: 'NEW';
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-dubai-gold);
  padding: 1px 4px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── AI Showcase Section ───────────────────────────────────────────────────── */
.section-ai-showcase {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
}

.section-ai-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 10%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 90%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-dubai-gold);
  background: rgba(201, 168, 76, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

/* ── AI Service Highlight Banners ──────────────────────────────────────────── */
.ai-banner-automation,
.ai-banner-development,
.ai-banner-mvp {
  margin-bottom: var(--space-8);
}

.ai-banner-automation .shb-icon.ai-icon { background: rgba(0, 212, 255, 0.12); }
.ai-banner-automation .shb-icon svg { fill: var(--color-accent); }

.ai-banner-development .shb-icon.dev-icon { background: rgba(139, 92, 246, 0.12); }
.ai-banner-development .shb-icon svg { fill: #8B5CF6; }

.ai-banner-mvp .shb-icon.mvp-icon { background: rgba(201, 168, 76, 0.12); }
.ai-banner-mvp .shb-icon svg { fill: var(--color-dubai-gold); }

.shb-deliverables {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.shb-deliverables h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-dubai-gold);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deliverable-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
}

.deliverable-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-snug);
}

.deliverable-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--color-dubai-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── AI Card Highlight in Services Grid ────────────────────────────────────── */
.ai-card-highlight {
  position: relative;
  border-color: rgba(0, 212, 255, 0.3) !important;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.08);
}

.ai-card-highlight::before {
  content: 'AI';
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 10px;
  font-weight: 800;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-accent), var(--color-dubai-gold));
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Deliverable List for Service Pages (reused) ───────────────────────────── */
.shb-deliverables {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.shb-deliverables h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-dubai-gold);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deliverable-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
}

.deliverable-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-snug);
}

.deliverable-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--color-dubai-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Enhanced Bar Chart for Homepage Case Studies ──────────────────────────── */
.chart-wrap { max-width: 700px; margin: var(--space-8) auto; }

.chart-labels { display: flex; justify-content: space-between; margin-bottom: var(--space-3); font-size: var(--fs-xs); color: var(--color-text-muted); }

.bar-chart-enhanced { display: flex; align-items: flex-end; gap: var(--space-3); height: 160px; }

.bar-chart-enhanced .bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }

.bar-chart-enhanced .bar-pair { width: 100%; height: 100%; display: flex; align-items: flex-end; gap: var(--space-1); justify-content: center; }

.bar-chart-enhanced .bar { width: 100%; border-radius: var(--radius-sm) var(--radius-sm) 0 0; position: relative; transition: height 1s ease; min-height: 4px; }

.bar-chart-enhanced .bar::after { content: attr(data-value); position: absolute; top: -22px; left: 50%; transform: translateX(-50%); font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--color-white); white-space: nowrap; opacity: 0; transition: opacity var(--transition-base); }

.bar-chart-enhanced .bar-group:hover .bar::after { opacity: 1; }

.bar-chart-enhanced .bar-before { background: linear-gradient(to top, var(--color-text-muted), rgba(255,255,255,0.15)); }
.bar-chart-enhanced .bar-after { background: linear-gradient(to top, var(--color-accent), var(--color-dubai-gold)); box-shadow: 0 0 12px rgba(0,212,255,0.4); }

.bar-legend { display: flex; justify-content: center; gap: var(--space-8); margin-top: var(--space-6); font-size: var(--fs-xs); }
.bar-legend span { display: flex; align-items: center; gap: var(--space-2); }
.bar-legend .swatch { width: 12px; height: 12px; border-radius: var(--radius-sm); }

/* ── Text utilities ────────────────────────────────────────────────────────── */
.text-sm { font-size: var(--fs-sm); }
.text-muted { color: var(--color-text-muted); }
.mt-4 { margin-top: var(--space-4); }

/* ── Section AI Showcase additional spacing ───────────────────────────────── */
.section-ai-showcase .service-highlight-banner {
  margin-bottom: var(--space-6);
}

.section-ai-showcase .service-highlight-banner:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   ILLUSTRATION COMPONENTS — Hero, AI Services, MVP Sprint
   ========================================================================== */

/* ── Hero Illustration ─────────────────────────────────────────────────────── */
.hero-illustration {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60%;
  max-width: 700px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.4));
}

@media (max-width: 1200px) {
  .hero-illustration {
    width: 55%;
    right: -5%;
  }
}

@media (max-width: 992px) {
  .hero-illustration {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: var(--space-8) auto 0;
  }
  .hero-dubai .hero-content {
    text-align: center;
  }
  .hero-dubai .hero-cta {
    justify-content: center;
  }
}

/* ── AI Service Illustrations ──────────────────────────────────────────────── */
.ai-service-illustration {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.ai-service-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.ai-banner-automation,
.ai-banner-development,
.ai-banner-mvp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
  margin-bottom: var(--space-8);
}

.ai-banner-automation > *:first-child,
.ai-banner-development > *:first-child,
.ai-banner-mvp > *:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-banner-automation .ai-service-illustration,
.ai-banner-development .ai-service-illustration,
.ai-banner-mvp .ai-service-illustration {
  order: 2;
}

@media (max-width: 768px) {
  .ai-banner-automation,
  .ai-banner-development,
  .ai-banner-mvp {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .ai-banner-automation .ai-service-illustration,
  .ai-banner-development .ai-service-illustration,
  .ai-banner-mvp .ai-service-illustration {
    order: -1;
    max-width: 300px;
  }
}

/* ── MVP Sprint Illustration ───────────────────────────────────────────────── */
.mvp-illustration {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.mvp-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ── Illustration Reveal Animation ─────────────────────────────────────────── */
.illustration-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.illustration-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Illustration Hover Effects ────────────────────────────────────────────── */
.ai-service-illustration:hover svg {
  filter: drop-shadow(0 30px 60px rgba(0, 212, 255, 0.2));
  transform: scale(1.01);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.mvp-illustration:hover svg {
  filter: drop-shadow(0 30px 60px rgba(201, 168, 76, 0.2));
  transform: scale(1.01);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.hero-illustration:hover svg {
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.5));
  transform: scale(1.005);
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* ── Floating Animation for Decorative Elements ────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

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

.float-element {
  animation: float 6s ease-in-out infinite;
}

.float-element.reverse {
  animation: float-reverse 6s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.6; }
  50% { stroke-dashoffset: 30; opacity: 1; }
}

.pulse-ring {
  animation: pulse-ring 2s ease-in-out infinite;
}

/* ── Section Divider Enhanced ──────────────────────────────────────────────── */
.section-divider-illustrated {
  position: relative;
  height: 6px;
  max-width: 300px;
  margin: var(--space-12) auto;
  background: linear-gradient(90deg, transparent, var(--color-dubai-gold), transparent);
  border-radius: 3px;
}

.section-divider-illustrated::before,
.section-divider-illustrated::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-dubai-gold);
  transform: translateY(-50%);
  animation: float 4s ease-in-out infinite;
}

.section-divider-illustrated::after {
  animation-delay: 2s;
}

.section-divider-illustrated::before { left: -32px; }
.section-divider-illustrated::after { right: -32px; }

/* ==========================================================================
   NEW COMPONENTS v2.0 — Promo Banner, Social Icons, WhatsApp Float, Payments
   ========================================================================== */

/* ── Right Vertical Sticky Promo ─────────────────────────────────────── */
.promo-sticky {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: calc(var(--z-header) + 2);
  width: 140px;
  background: linear-gradient(180deg, #E8712D 0%, #C9A84C 50%, #E8712D 100%);
  color: var(--color-primary);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  box-shadow: -4px 4px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.promo-sticky-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-3);
  text-align: center;
  position: relative;
  gap: var(--space-2);
}

.promo-sticky-badge {
  display: inline-block;
  background: #0A1128;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: var(--fw-bold);
  padding: 2px var(--space-2);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.promo-sticky-text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  line-height: 1.2;
}

.promo-sticky-text strong {
  color: #0A1128;
  font-weight: var(--fw-bold);
}

.promo-sticky-sub {
  font-size: 10px;
  color: #0A1128;
  font-weight: var(--fw-medium);
  opacity: 0.85;
}

.promo-sticky-cta {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: #0A1128;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  margin-top: var(--space-1);
}

.promo-sticky-cta:hover {
  background: #162040;
  transform: scale(1.05);
  text-decoration: none;
  color: #FFFFFF;
}

.promo-close {
  position: absolute;
  top: 2px;
  right: 4px;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--color-primary);
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
  padding: 0;
  transition: opacity var(--transition-fast);
}

.promo-close:hover {
  opacity: 1;
}

.footer-contact-links {
  font-size: var(--fs-xs);
  white-space: nowrap;
}

.footer-contact-links a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-contact-links a:hover {
  color: var(--color-accent);
}

.site-header {
  top: 0;
}

@media (max-width: 768px) {
  .promo-sticky {
    width: 110px;
  }
  .promo-sticky-inner {
    padding: var(--space-3) var(--space-2);
    gap: var(--space-1);
  }
  .promo-sticky-text {
    font-size: 11px;
  }
  .promo-sticky-badge {
    font-size: 9px;
    padding: 1px var(--space-1);
  }
  .promo-sticky-cta {
    font-size: 9px;
    padding: 2px var(--space-2);
  }
}

/* ── WhatsApp Floating Button ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ── Social Links in Footer ────────────────────────────────────────────── */
.footer-social,
.footer-payments {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-6) var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.social-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.social-links a svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-secondary);
  transition: fill var(--transition-fast);
}

.social-links a:hover svg {
  fill: var(--color-primary);
}

.footer-social h4,
.footer-payments h4 {
  font-size: var(--fs-sm);
  color: var(--color-white);
  margin-bottom: var(--space-3);
  width: 100%;
}

/* ── Payment Logos ─────────────────────────────────────────────────────── */
.payment-logos {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-1) var(--space-3);
  font-size: 10px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  height: 28px;
  transition: all var(--transition-fast);
}

.payment-logo:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-border-light);
  color: var(--color-white);
}

.payment-logo.paypal { color: #009CDE; }
.payment-logo.visa { color: #1A1F71; }
.payment-logo.mastercard { color: #EB001B; }
.payment-logo.tabby { color: #00B8B8; }
.payment-logo.checkout { color: #00D4FF; }
.payment-logo.stripe { color: #635BFF; }

@media (max-width: 768px) {
  .footer-social,
  .footer-payments {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  .payment-logos {
    gap: var(--space-2);
  }
}

/* ── Discount / Offer Badge ────────────────────────────────────────────── */
.offer-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  line-height: 1.4;
}

.offer-badge-discount {
  background: linear-gradient(135deg, #FF6B6B, #E8712D);
  color: #FFFFFF;
}

.offer-badge-new {
  background: linear-gradient(135deg, var(--color-accent), #0099CC);
  color: var(--color-primary);
}

.offer-badge-gold {
  background: linear-gradient(135deg, var(--color-dubai-gold), var(--color-dubai-gold-light));
  color: var(--color-primary);
}

/* ── Strikethrough Price ───────────────────────────────────────────────── */
.price-original {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: var(--fs-lg);
  font-weight: var(--fw-normal);
  margin-right: var(--space-2);
}

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

/* ── CTA with WhatsApp / Live Chat ─────────────────────────────────────── */
.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: none;
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.btn-whatsapp svg,
.btn-whatsapp .icon-whatsapp,
.btn-chat svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  vertical-align: middle;
  margin-right: 4px;
}

.btn-chat {
  background: var(--color-dubai-gold);
  color: var(--color-primary);
  border: none;
}

.btn-chat:hover {
  background: var(--color-dubai-gold-light);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-buy {
  background: linear-gradient(135deg, #00C853, #00E676);
  color: var(--color-primary);
  border: none;
}

.btn-buy:hover {
  background: linear-gradient(135deg, #00E676, #00C853);
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.4);
  transform: translateY(-1px);
}

/* ── Pricing Card Discount Styling ─────────────────────────────────────── */
.pricing-card .offer-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

.pricing-card .pricing-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.pricing-card .pricing-actions .btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.pricing-card .pricing-actions .btn-row .btn {
  font-size: var(--fs-xs);
  padding: var(--space-2) var(--space-3);
}

.pricing-card .pricing-price .price-period {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-normal);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ── Promotional Banner Ad (Homepage) ──────────────────────────────────── */
.promo-banner-ad {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1A0A2E 50%, var(--color-bg-medium) 100%);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.promo-banner-ad:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

.promo-banner-ad::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner-ad .pba-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.promo-banner-ad .pba-text {
  flex: 1;
}

.promo-banner-ad .pba-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #FF6B6B, #E8712D);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.promo-banner-ad .pba-badge.gold {
  background: linear-gradient(135deg, var(--color-dubai-gold), var(--color-dubai-gold-light));
  color: var(--color-primary);
}

.promo-banner-ad h3 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-3);
  line-height: var(--lh-tight);
}

.promo-banner-ad p {
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  max-width: 500px;
}

.promo-banner-ad .pba-price {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.promo-banner-ad .pba-price .pba-original {
  font-size: var(--fs-xl);
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: var(--fw-normal);
  margin-right: var(--space-2);
}

.promo-banner-ad .pba-price .pba-period {
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal);
  color: var(--color-text-muted);
}

.promo-banner-ad .pba-visual {
  flex: 0 0 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

@media (max-width: 768px) {
  .promo-banner-ad .pba-content {
    flex-direction: column;
    text-align: center;
  }
  .promo-banner-ad .pba-text {
    order: 2;
  }
  .promo-banner-ad .pba-visual {
    order: 1;
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  .promo-banner-ad h3 {
    font-size: var(--fs-2xl);
  }
  .promo-banner-ad .pba-price {
    font-size: var(--fs-3xl);
  }
}

/* ── Banner Ad Grid ────────────────────────────────────────────────────── */
.banner-ads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .banner-ads-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Quick Action Button Row ───────────────────────────────────────────── */
.quick-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.quick-actions .btn {
  flex: 1;
  min-width: 140px;
}

/* ── Free Analysis / Book Consultation / Plans / Plan Selector / Checkout ── */
.form-page { padding: var(--space-16) 0; }
.form-page-hero { text-align: center; padding: var(--space-12) 0 var(--space-6); }
.form-page-hero h1 { font-size: var(--fs-4xl); margin-bottom: var(--space-4); }
.form-page-hero p { color: var(--color-text-secondary); font-size: var(--fs-lg); max-width: 700px; margin: 0 auto; }
.form-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: start; }
@media (max-width: 768px) { .form-page-grid { grid-template-columns: 1fr; } }
.form-benefits { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--br-lg); padding: var(--space-8); }
.form-benefits h3 { margin-bottom: var(--space-4); }
.form-benefits ul { list-style: none; padding: 0; }
.form-benefits li { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-3); color: var(--color-text-secondary); }
.form-benefits li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-accent); }
.thank-you-card { display: none; text-align: center; padding: var(--space-12); background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); max-width: 600px; margin: var(--space-8) auto 0; }
.thank-you-card.active { display: block; }
.thank-you-card .ty-icon { font-size: 64px; margin-bottom: var(--space-4); }
.thank-you-card h2 { margin-bottom: var(--space-4); }
.thank-you-card p { color: var(--color-text-secondary); margin-bottom: var(--space-6); }

/* DateTime Picker (inline, no external library — styled for book-consultation page) */
.datetime-picker { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.datetime-picker input[type="date"],
.datetime-picker select { padding: var(--space-3) var(--space-4); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-bg); color: var(--color-text); font-size: var(--fs-base); }
.datetime-picker select { appearance: auto; }
.datetime-picker .time-slots { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: var(--space-2); margin-top: var(--space-2); }
.datetime-picker .time-slot { padding: var(--space-2) var(--space-3); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-card); color: var(--color-text); cursor: pointer; text-align: center; font-size: var(--fs-sm); transition: all 0.2s; }
.datetime-picker .time-slot:hover { border-color: var(--color-accent); background: rgba(var(--color-accent-rgb, 0 166 230), 0.08); }
.datetime-picker .time-slot.selected { border-color: var(--color-accent); background: rgba(var(--color-accent-rgb, 0 166 230), 0.15); font-weight: var(--fw-bold); }

/* Plans / Packages Page */
.plans-filter { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; margin-bottom: var(--space-8); }
.filter-chip { padding: var(--space-2) var(--space-5); border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-card); color: var(--color-text-secondary); cursor: pointer; font-size: var(--fs-sm); transition: all 0.2s; }
.filter-chip:hover, .filter-chip.active { border-color: var(--color-accent); color: var(--color-accent); background: rgba(var(--color-accent-rgb, 0 166 230), 0.08); }

/* Plan Selector Wizard — step-based questionnaire */
.plan-wizard { max-width: 900px; margin: 0 auto; }
.wizard-steps { display: flex; justify-content: center; gap: var(--space-2); margin-bottom: var(--space-8); }
.wizard-step-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--color-border); transition: background 0.3s; }
.wizard-step-dot.active { background: var(--color-accent); }
.wizard-step-dot.done { background: var(--success); }
.wizard-screen { display: none; padding: var(--space-8); background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.wizard-screen.active { display: block; }
.wizard-screen h3 { margin-bottom: var(--space-6); }
.wizard-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-4); margin-bottom: var(--space-6); }
.wizard-option { padding: var(--space-5); border: 2px solid var(--color-border); border-radius: var(--radius-lg); cursor: pointer; text-align: center; transition: all 0.2s; }
.wizard-option:hover { border-color: var(--color-accent); background: rgba(var(--color-accent-rgb, 0 166 230), 0.04); }
.wizard-option.selected { border-color: var(--color-accent); background: rgba(var(--color-accent-rgb, 0 166 230), 0.1); }
.wizard-option .wo-icon { font-size: var(--fs-2xl); margin-bottom: var(--space-2); }
.wizard-option .wo-label { font-weight: var(--fw-semi); margin-bottom: var(--space-1); }
.wizard-option .wo-desc { font-size: var(--fs-sm); color: var(--color-text-secondary); }
.wizard-nav { display: flex; justify-content: space-between; gap: var(--space-4); margin-top: var(--space-6); }
.wizard-result { display: none; padding: var(--space-8); background: var(--color-card); border: 1px solid var(--color-accent); border-radius: var(--radius-lg); text-align: center; }
.wizard-result.active { display: block; }
.wizard-result .wr-package { font-size: var(--fs-2xl); font-weight: var(--fw-bold); color: var(--color-accent); margin-bottom: var(--space-2); }
.wizard-result .wr-price { font-size: var(--fs-xl); margin-bottom: var(--space-4); }
.wizard-result .wr-actions { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; margin-top: var(--space-6); }

/* Checkout Page */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-8); }
@media (max-width: 768px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-summary { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); position: sticky; top: var(--space-4); align-self: start; }
.checkout-summary h3 { margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--color-border); }
.checkout-summary .cs-item { display: flex; justify-content: space-between; padding: var(--space-2) 0; font-size: var(--fs-sm); color: var(--color-text-secondary); }
.checkout-summary .cs-total { display: flex; justify-content: space-between; padding-top: var(--space-4); margin-top: var(--space-4); border-top: 2px solid var(--color-border); font-weight: var(--fw-bold); font-size: var(--fs-lg); }
.payment-methods { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: var(--space-3); margin-bottom: var(--space-6); }
.payment-method { padding: var(--space-4); border: 2px solid var(--color-border); border-radius: var(--radius-md); cursor: pointer; text-align: center; transition: all 0.2s; }
.payment-method:hover { border-color: var(--color-accent); }
.payment-method.selected { border-color: var(--color-accent); background: rgba(var(--color-accent-rgb, 0 166 230), 0.08); }
.payment-method .pm-icon { font-size: var(--fs-2xl); margin-bottom: var(--space-1); }
.payment-method .pm-label { font-size: var(--fs-sm); font-weight: var(--fw-semi); }

/* Analysis Hub — 5-card grid on /free-analysis.html */
.analysis-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-6); }
.analysis-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--br-lg); padding: var(--space-6); position: relative; transition: border-color 0.2s, box-shadow 0.2s; }
.analysis-card:hover { border-color: var(--color-accent); box-shadow: 0 0 20px rgba(var(--color-accent-rgb, 0 166 230), 0.08); }
.analysis-card h3 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.analysis-card p { color: var(--color-text-secondary); font-size: var(--fs-sm); margin-bottom: var(--space-4); }
.analysis-card__badge { position: absolute; top: var(--space-3); right: var(--space-3); padding: var(--space-1) var(--space-3); border-radius: 999px; font-size: 11px; font-weight: var(--fw-bold); text-transform: uppercase; }
.analysis-card__badge.free { background: rgba(var(--color-accent-rgb, 0 166 230), 0.12); color: var(--color-accent); }
.analysis-card-icon { font-size: var(--fs-3xl); margin-bottom: var(--space-3); }
.analysis-card-features { list-style: none; padding: 0; margin: 0 0 var(--space-4); }
.analysis-card-features li { padding: var(--space-1) 0; font-size: var(--fs-sm); color: var(--color-text-secondary); }

/* Analysis Progress Spinner */
.analysis-progress { text-align: center; padding: var(--space-8); }
.progress-spinner { width: 40px; height: 40px; border: 3px solid var(--color-border); border-top-color: var(--color-accent); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto var(--space-4); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Report Container */
.report-container { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--br-lg); overflow: hidden; }
.report-header { display: flex; align-items: center; gap: var(--space-6); padding: var(--space-6); background: var(--color-bg-alt, var(--color-bg)); border-bottom: 1px solid var(--color-border); }
.report-grade { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: var(--fs-3xl); font-weight: var(--fw-black); color: #000; flex-shrink: 0; }
.report-score h2 { font-size: var(--fs-3xl); margin: 0; }
.report-score p { color: var(--color-text-secondary); margin: 0; }
.report-meta { padding: var(--space-3) var(--space-6); font-size: var(--fs-xs); color: var(--color-text-muted); border-bottom: 1px solid var(--color-border); }
.report-section-title { padding: var(--space-4) var(--space-6) var(--space-2); font-size: var(--fs-lg); }
.report-checks { padding: var(--space-2) var(--space-6); }
.report-group-critical, .report-group-warn, .report-group-pass { margin-bottom: var(--space-4); }
.report-group-critical h4, .report-group-warn h4, .report-group-pass h4 { font-size: var(--fs-sm); margin-bottom: var(--space-2); }
.check-item { padding: var(--space-2) var(--space-4); border-radius: var(--radius-sm); margin-bottom: var(--space-1); font-size: var(--fs-sm); }
.check-item.critical { background: rgba(244, 67, 54, 0.12); border-left: 3px solid #f44336; }
.check-item.warn { background: rgba(255, 152, 0, 0.1); border-left: 3px solid #ff9800; }
.check-item.pass { background: rgba(0, 200, 83, 0.08); border-left: 3px solid #00c853; }
.report-recommendations { padding: var(--space-4) var(--space-6); }
.report-recommendations h3 { margin-bottom: var(--space-3); }
.rec-item { padding: var(--space-2) 0; font-size: var(--fs-sm); border-bottom: 1px solid var(--color-border); }
.rec-item:last-child { border-bottom: none; }
.report-packages { padding: var(--space-4) var(--space-6); background: var(--color-bg-alt, var(--color-bg)); border-top: 1px solid var(--color-border); }
.report-packages h3 { margin-bottom: var(--space-3); }
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--space-3); }
.pkg-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-4); text-align: center; }
.pkg-card strong { display: block; font-size: var(--fs-sm); margin-bottom: var(--space-1); }
.pkg-card span { display: block; color: var(--color-accent); font-weight: var(--fw-semi); margin-bottom: var(--space-2); }
.report-actions { padding: var(--space-6); display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; border-top: 1px solid var(--color-border); }
.form-error.show { color: #f44336; font-size: var(--fs-sm); margin-bottom: var(--space-3); }