/* ============================================
   BRAND DESIGN SYSTEM - Internet Solutions
   ============================================ */

:root {
  /* Brand Colors */
  --primary: #1A73E8;
  --primary-hover: #0B57D0;
  --google-blue: #4285F4;
  --green: #34A853;
  --yellow: #FBBC05;
  --red: #EA4335;
  --navy: #0B1F3A;

  /* Light Mode (Default) */
  --bg: #FFFFFF;
  --bg-soft: #F8F9FA;
  --bg-blue: #E8F0FE;
  --text: #202124;
  --text-muted: #5F6368;
  --border: #E8EAED;
  --card-bg: #FFFFFF;
  --card-shadow: 0 4px 24px rgba(11, 31, 58, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(26, 115, 232, 0.15);
  --header-bg: rgba(255, 255, 255, 0.85);
  --logo-text: #1A73E8;
  --hero-glow-1: rgba(66, 133, 244, 0.18);
  --hero-glow-2: rgba(52, 168, 83, 0.12);
  --gradient-soft: linear-gradient(135deg, #E8F0FE 0%, #F8F9FA 100%);
}

[data-theme="dark"] {
  --bg: #0A1628;
  --bg-soft: #0F2138;
  --bg-blue: #14304F;
  --text: #F8F9FA;
  --text-muted: #B8C2CC;
  --border: #1E3A5F;
  --card-bg: #0F2138;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --card-shadow-hover: 0 12px 40px rgba(66, 133, 244, 0.25);
  --header-bg: rgba(10, 22, 40, 0.85);
  --logo-text: #FFFFFF;
  --hero-glow-1: rgba(66, 133, 244, 0.25);
  --hero-glow-2: rgba(52, 168, 83, 0.18);
  --gradient-soft: linear-gradient(135deg, #14304F 0%, #0F2138 100%);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

/* ============================================
   PREFERS-REDUCED-MOTION  (Accessibility)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* Show scroll-reveal content immediately — no dependency on JS observer */
  .reveal,
  .reveal.in-view {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Hero / orbit / pulse — explicitly stop infinite animations */
  .hero-glow,
  .hv-glow-1,
  .hv-glow-2,
  .hero-badge-dot,
  .hv-live-dot,
  .hv-badge-1,
  .hv-badge-2,
  .whyn-orbit-dot,
  .cost-icon::after,
  .hv-bar,
  .whyn-chip-float,
  .whyn-mark-float {
    animation: none !important;
  }
}

body {
  font-family: 'Tajawal', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  transition: background 0.4s ease, color 0.4s ease;
  font-weight: 400;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; position: relative; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 56px;
}

/* ============================================
   HEADER
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

/* Brand Logo - SVG version (matches Internet Solutions brand identity) */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--logo-text);
  padding: 2px 0;
}
/* Suppress all hover/focus effects on the logo WITHOUT touching inner SVG.
   IMPORTANT: do NOT apply `transform: none` to descendants — the SVG uses
   `transform="translate(...)"` attributes on <g>/<path>/<circle>/<rect>,
   which modern browsers expose as the CSS `transform` property. Overriding
   it with !important on `.logo *` would collapse the logo on hover. */
.logo { transition: none !important; animation: none !important; }
.logo:hover, .logo:focus, .logo:active {
  transform: none !important;
  filter: none !important;
  letter-spacing: normal !important;
  opacity: 1 !important;
  color: var(--logo-text) !important;
  background: transparent !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
/* Keep inner SVG color stable on hover (currentColor paths) without
   touching transform/opacity/filter of inner nodes. */
.logo:hover .logo-svg,
.logo:focus .logo-svg,
.logo:active .logo-svg { color: var(--logo-text) !important; }

header .logo { cursor: default; }
header .logo svg { pointer-events: none; }

:root {
  --badge-padding-y: 10px;
  --badge-padding-x: 28px;
  --badge-font-size: 14px;
  --badge-font-weight: 700;
  --badge-letter-spacing: -0.01em;
  --badge-radius: 100px;
  --badge-border-width: 1.5px;
  --badge-gap-to-title: 16px;
  --badge-bg-red: #fdecea;
  --badge-border-red: var(--red);
  --badge-color-red: var(--red);
  --badge-bg-green: #e6f4ea;
  --badge-border-green: #34a853;
  --badge-color-green: #137333;
}

.section-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 0 var(--badge-gap-to-title);
  line-height: 1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--badge-bg-red);
  color: var(--badge-color-red);
  padding: var(--badge-padding-y) var(--badge-padding-x);
  border-radius: var(--badge-radius);
  font-size: var(--badge-font-size);
  font-weight: var(--badge-font-weight);
  letter-spacing: var(--badge-letter-spacing);
  border: var(--badge-border-width) solid var(--badge-border-red);
  line-height: 1.2;
  box-shadow: none;
  white-space: nowrap;
}

.section-badge--green {
  background: var(--badge-bg-green);
  color: var(--badge-color-green);
  border-color: var(--badge-border-green);
}

.section-badge-wrap + h2 {
  margin-top: 0;
}

.logo-svg,
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  overflow: visible;
}

footer .logo-svg { height: 48px; }

@media (max-width: 640px) {
  .header-inner { padding: 10px 14px; gap: 8px; }
  header .logo-svg,
  header .logo-img { height: 34px; }
  .header-actions { gap: 8px; }
  .theme-toggle { width: 38px; height: 38px; }
  .header .btn { padding: 6px 10px; font-size: 12px; }
}




/* Header nav menu */
.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-inline: auto;
  font-family: inherit;
}
.header-nav a {
  color: var(--foreground, #0b1220);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  transition: color .2s ease;
  white-space: nowrap;
}
.header-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: #4285f4;
  transform: scaleX(0);
  opacity: 0;
  transform-origin: center;
  transition: transform .25s ease, opacity .25s ease;
}
.header-nav a:hover,
.header-nav a:focus-visible,
.header-nav a.is-active,
.header-nav a[aria-current="page"] { color: #4285f4; }
.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.header-nav a.is-active::after,
.header-nav a[aria-current="page"]::after { transform: scaleX(1); opacity: 1; }
/* Offset for fixed header so smooth-scroll anchors land below it */
/* Offset for fixed header — exact value set at runtime via --header-h; px fallbacks for SSR/no-JS */
:root { --header-h: 72px; --scroll-offset-extra: 12px; }
section[id] { scroll-margin-top: calc(var(--header-h, 72px) + var(--scroll-offset-extra)); }
@media (max-width: 900px) { :root { --header-h: 64px; --scroll-offset-extra: 10px; } }
/* Keyboard focus ring — RTL-safe (uses outline, not transform). Only for
   keyboard users so mouse clicks don't leave a persistent ring/underline. */
.header-nav a:focus { outline: none; }
.header-nav a:focus-visible {
  outline: 2px solid #4285f4;
  outline-offset: 3px;
  border-radius: 4px;
}
/* Keep nav text natural in both LTR and RTL without forcing bidi flips */
.header-nav a { unicode-bidi: plaintext; }

@media (max-width: 1024px) {
  .header-nav { gap: 18px; }
  .header-nav a { font-size: 13.5px; }
}

/* ============================================
   Burger button — tablet & mobile
   ============================================ */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border, rgba(0,0,0,0.1));
  border-radius: 12px;
  cursor: pointer;
  color: var(--foreground, #0b1220);
  padding: 0;
  margin-inline-start: auto;
  position: relative;
  z-index: 1003;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.burger:hover { background: rgba(66,133,244,0.08); border-color: rgba(66,133,244,0.35); }
.burger:active { transform: scale(0.94); }
.burger:focus-visible { outline: 2px solid #4285f4; outline-offset: 2px; }
[data-theme="dark"] .burger:hover { background: rgba(66,133,244,0.18); }

/* Animated burger ↔ X icon swap */
.burger svg {
  width: 22px; height: 22px;
  position: absolute;
  transition: opacity .22s ease, transform .28s cubic-bezier(0.32, 0.72, 0, 1);
}
.burger .icon-open  { opacity: 1; transform: rotate(0deg) scale(1); }
.burger .icon-close { opacity: 0; transform: rotate(-90deg) scale(0.7); }
body.nav-open .burger .icon-open  { opacity: 0; transform: rotate(90deg)  scale(0.7); }
body.nav-open .burger .icon-close { opacity: 1; transform: rotate(0deg)   scale(1); }

/* ============================================
   Backdrop
   ============================================ */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
[data-theme="dark"] .nav-backdrop { background: rgba(0,0,0,0.6); }

body.nav-open { overflow: hidden; }
body.nav-open header { z-index: 1003; }

/* ============================================
   Mobile / tablet slide-in panel
   ============================================ */
@media (max-width: 900px) {
  .burger { display: inline-flex; margin-inline-end: 8px; }

  .header-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-end: 0;
    width: min(86vw, 340px);
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--surface, #fff);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    padding: calc(var(--header-h, 64px) + 16px) 18px calc(28px + env(safe-area-inset-bottom));
    margin: 0;
    box-shadow: -16px 0 40px -12px rgba(11, 22, 40, 0.22);
    transform: translateX(var(--nav-hidden-x, 100%));
    transition: transform .32s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform;
    z-index: 1002;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  /* RTL: panel anchors on the left edge → slide off to the left; shadow flips to the right */
  html[dir="rtl"] .header-nav {
    --nav-hidden-x: -100%;
    box-shadow: 16px 0 40px -12px rgba(11, 22, 40, 0.22);
  }
  body.nav-open .header-nav { transform: translateX(0); }

  .header-nav a {
    font-size: 16px;
    font-weight: 500;
    padding: 14px 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    border-bottom: 1px solid rgba(11, 22, 40, 0.06);
    opacity: 0;
    transform: translateX(12px);
    transition: opacity .25s ease, transform .25s ease, background-color .18s ease, color .18s ease;
  }
  html[dir="rtl"] .header-nav a { transform: translateX(-12px); }
  .header-nav a:hover,
  .header-nav a:focus-visible { background: rgba(66,133,244,0.08); }

  /* Underline indicator: hide on mobile — we use background + color instead */
  .header-nav a::after { display: none; }

  /* Staggered reveal once the panel is open */
  body.nav-open .header-nav a {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(80ms + var(--i, 0) * 45ms);
  }
  .header-nav a:nth-child(1) { --i: 0; }
  .header-nav a:nth-child(2) { --i: 1; }
  .header-nav a:nth-child(3) { --i: 2; }
  .header-nav a:nth-child(4) { --i: 3; }
  .header-nav a:nth-child(5) { --i: 4; }
  .header-nav a:nth-child(6) { --i: 5; }

  [data-theme="dark"] .header-nav a { border-bottom-color: rgba(255,255,255,0.06); }
}
[data-theme="dark"] .header-nav { background: #0f1722; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .header-nav,
  .header-nav a,
  .nav-backdrop,
  .burger svg { transition: none !important; }
  .header-nav a { opacity: 1 !important; transform: none !important; }
}


/* iOS scroll-lock: when body becomes position:fixed (via JS), preserve full width */
body.nav-locked {
  position: fixed;
  inset-inline-start: 0;
  inset-inline-end: 0;
  width: 100%;
  overflow: hidden;
}



.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text);
}

.theme-toggle:hover {
  transform: rotate(20deg) scale(1.05);
  border-color: var(--primary);
  color: var(--primary);
}

.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .sun-icon { display: none; }
[data-theme="dark"] .theme-toggle .sun-icon { display: block; }
[data-theme="dark"] .theme-toggle .moon-icon { display: none; }

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Visible keyboard focus for all CTA buttons + burger.
   :focus-visible only fires on keyboard navigation (not mouse click),
   so mouse users see no extra outline. */
.btn:focus-visible,
.burger:focus-visible,
.logo:focus-visible {
  outline: 2px solid #4285F4;
  outline-offset: 3px;
  border-radius: 12px;
}
.mobile-cta-bar .btn:focus-visible {
  outline-offset: -2px; /* keep ring inside the sticky bar */
}



.btn-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  box-shadow:
    0 6px 18px rgba(26, 115, 232, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px rgba(26, 115, 232, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-secondary:hover {
  background: var(--bg-blue);
  transform: translateY(-2px);
}

/* WhatsApp green CTA - high contrast and smooth */
.btn-whatsapp {
  background: var(--green);
  color: #fff;
  font-weight: 500;
  box-shadow:
    0 6px 18px rgba(52, 168, 83, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-whatsapp:hover {
  background: #2E9648;
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px rgba(52, 168, 83, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn svg { width: 18px; height: 18px; }

.header .btn { padding: 7px 14px; font-size: 12.5px; font-weight: 500; gap: 6px; }
.header .btn svg { width: 14px; height: 14px; }

/* Header CTAs hidden by default - revealed smoothly with stagger when scrolling reaches the 4th section */
.header .btn-primary,
.header .btn-whatsapp {
  opacity: 0;
  transform: translateY(-12px) scale(0.88);
  pointer-events: none;
  transition:
    opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.4s ease,
    box-shadow 0.4s ease;
}

header.show-ctas .btn-primary {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0.05s;
}

header.show-ctas .btn-whatsapp {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0.18s;
}

/* Restore proper hover transform once visible */
header.show-ctas .btn-primary:hover,
header.show-ctas .btn-whatsapp:hover {
  transform: translateY(-3px) scale(1);
  transition-delay: 0s;
}

/* WhatsApp button hidden on mobile entirely */
.header .btn-whatsapp { display: none; }
@media (min-width: 768px) {
  .header .btn-whatsapp { display: inline-flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 160px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: float 12s ease-in-out infinite;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--hero-glow-1);
  top: -100px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--hero-glow-2);
  bottom: -100px;
  left: -100px;
  animation-delay: -6s;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.4;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .hero-inner > .hero-visual {
    transform: none;
    margin: 0;
    min-height: 0;
    width: 100%;
  }
}





.hero-content {
  animation: fadeInUp 0.8s ease both;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: var(--bg-blue);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(26, 115, 232, 0.18);
  max-width: 100%;
  margin: 0;
}
.hero-badge > span:last-child {
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--google-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero p {
  font-size: 19px;
  color: var(--text-muted);
  margin: 0;
  max-width: 540px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: stretch;
  margin: 0;
}

.hero-meta-item {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: heroMetaIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}
.hero-meta-item:nth-child(1) { animation-delay: 0.15s; }
.hero-meta-item:nth-child(2) { animation-delay: 0.30s; }
.hero-meta-item:nth-child(3) { animation-delay: 0.45s; }

@keyframes heroMetaIn {
  0%   { opacity: 0; transform: translateY(18px) scale(0.96); filter: blur(4px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Subtle, premium icon pulse — starts after the item finishes sliding in. */
.hero-meta-item .hero-meta-icon {
  animation: heroMetaIconPulse 3.2s ease-in-out infinite;
  will-change: transform, box-shadow;
}
.hero-meta-item:nth-child(1) .hero-meta-icon { animation-delay: 1.0s; }
.hero-meta-item:nth-child(2) .hero-meta-icon { animation-delay: 1.4s; }
.hero-meta-item:nth-child(3) .hero-meta-icon { animation-delay: 1.8s; }

@keyframes heroMetaIconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 currentColor; }
  50%      { transform: scale(1.06); box-shadow: 0 0 0 6px transparent; }
}

/* Hover lifts the whole pill and steadies the icon for a clean focus moment. */
.hero-meta-item { transition: transform .35s cubic-bezier(0.22,1,0.36,1), box-shadow .35s ease; }
.hero-meta-item:hover .hero-meta-icon { animation-play-state: paused; transform: scale(1.1); }

@media (prefers-reduced-motion: reduce) {
  .hero-meta-item,
  .hero-meta-item .hero-meta-icon { animation: none !important; opacity: 1; transform: none; filter: none; }
}


@media (max-width: 640px) {
  .hero-meta-item { padding: 8px 10px; gap: 8px; }
  .hero-meta-icon { width: 32px; height: 32px; border-radius: 10px; }
  .hero-meta-icon svg { width: 16px; height: 16px; }
  .hero-meta-main { font-size: 12px; }
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.hero-meta-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.hero-meta-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hero-meta-item:hover .hero-meta-icon {
  transform: scale(1.08);
}

.hero-meta-icon svg {
  width: 20px;
  height: 20px;
}

.hero-meta-item:nth-child(1) .hero-meta-icon {
  background: rgba(52, 168, 83, 0.14);
  color: var(--green);
}

.hero-meta-item:nth-child(2) .hero-meta-icon {
  background: rgba(66, 133, 244, 0.14);
  color: var(--google-blue);
}

.hero-meta-item:nth-child(3) .hero-meta-icon {
  background: rgba(234, 67, 53, 0.14);
  color: var(--red);
}

.hero-meta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: right;
}

.hero-meta-main {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.hero-meta-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ============================================
   HERO VISUAL - Live Growth Dashboard
   ============================================ */

.hero-visual {
  position: relative;
  animation: fadeInRight 0.9s ease both;
  min-height: 420px;
}

.hero-visual-image {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-image img {
  width: 100%;
  height: auto;
  max-width: 720px;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.12));
}
@media (max-width: 768px) {
  .hero-visual-image img { max-width: 100%; border-radius: 14px; }
}

/* Background decorations */
.hv-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hv-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hv-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(66, 133, 244, 0.25);
  top: 5%;
  right: 15%;
  animation: hvBgPulse 7s ease-in-out infinite;
}

.hv-glow-2 {
  width: 220px;
  height: 220px;
  background: rgba(52, 168, 83, 0.2);
  bottom: 5%;
  left: 5%;
  animation: hvBgPulse 9s ease-in-out infinite -3s;
}

@keyframes hvBgPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Main dashboard card */
.hv-dashboard {
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.15);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hv-dashboard:hover { transform: translateY(-4px); }

.hv-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hv-dash-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.hv-logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--google-blue), var(--green));
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
}

.hv-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(52, 168, 83, 0.1);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.hv-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: hvLivePulse 1.5s ease-in-out infinite;
}

@keyframes hvLivePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(52, 168, 83, 0); }
}

/* KPI cards */
.hv-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.hv-kpi-wide { grid-column: 1 / -1; }

.hv-kpi {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.hv-kpi:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.08);
}

.hv-kpi-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hv-kpi-icon svg { width: 18px; height: 18px; }

.hv-kpi-blue { background: rgba(66, 133, 244, 0.12); color: var(--google-blue); }
.hv-kpi-green { background: rgba(52, 168, 83, 0.12); color: var(--green); }
.hv-kpi-yellow { background: rgba(251, 188, 5, 0.12); color: var(--yellow); }

.hv-kpi-text { flex: 1; min-width: 0; }

.hv-kpi-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.hv-kpi-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.hv-kpi-value-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.hv-kpi-sar { width: 14px; height: 14px; color: var(--text); stroke-width: 2.5; }

.hv-kpi-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.hv-kpi-trend svg { width: 11px; height: 11px; }

/* Growth chart */
.hv-chart {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.hv-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.hv-chart-title { font-size: 12px; font-weight: 700; color: var(--text); }

.hv-chart-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(52, 168, 83, 0.1);
  padding: 3px 9px;
  border-radius: 6px;
}

.hv-bars {
  display: flex;
  gap: 8px;
  height: 70px;
  align-items: flex-end;
}

.hv-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--google-blue), var(--primary));
  border-radius: 5px 5px 0 0;
  height: var(--h);
  animation: hvBarGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
  overflow: hidden;
}

.hv-bar:nth-child(1) { animation-delay: 0.1s; }
.hv-bar:nth-child(2) { animation-delay: 0.2s; }
.hv-bar:nth-child(3) { animation-delay: 0.3s; }
.hv-bar:nth-child(4) { animation-delay: 0.4s; }
.hv-bar:nth-child(5) { animation-delay: 0.5s; }
.hv-bar:nth-child(6) {
  animation-delay: 0.6s;
  background: linear-gradient(180deg, var(--green), #2E9648);
}

.hv-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px 5px 0 0;
}

@keyframes hvBarGrow {
  from { height: 0; }
  to { height: var(--h); }
}

/* Floating badges */
.hv-badge {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.12);
  z-index: 3;
  white-space: nowrap;
  color: var(--text);
}

.hv-badge svg { width: 16px; height: 16px; }

.hv-badge-1 {
  top: -12px;
  right: 24px;
  animation: hvBadgeFloat 5s ease-in-out infinite;
}
.hv-badge-1 svg { color: var(--google-blue); }

.hv-badge-2 {
  bottom: 20px;
  left: -20px;
  animation: hvBadgeFloat 5s ease-in-out infinite -2.5s;
}
.hv-badge-2 svg { color: var(--green); }

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


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   TRUST NUMBERS
   ============================================ */

.trust-numbers {
  background: var(--bg-soft);
  padding: 80px 0;
}

.trust-numbers h2 { margin-bottom: 56px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color, var(--primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent-color, var(--primary));
}

.stat-card:nth-child(1) { --accent-color: var(--google-blue); }
.stat-card:nth-child(2) { --accent-color: var(--green); }
.stat-card:nth-child(3) { --accent-color: var(--yellow); }
.stat-card:nth-child(4) { --accent-color: var(--red); }

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--accent-color, var(--primary));
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   CLIENT LOGOS
   ============================================ */

.clients {
  padding: 96px 0;
  background:
    radial-gradient(1200px 400px at 50% 0%, rgba(26,115,232,0.06), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Full-bleed marquee: break out of any parent max-width / padding */
.clients-marquee-section .logos-marquee {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 8px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* Soft fade on both edges — only when mask-image is supported.
   On older Samsung Internet, legacy Edge, and old Android WebView, an
   unsupported mask-image declaration could render the masked content
   as fully transparent, hiding every logo. Gate behind @supports so
   unsupported browsers simply skip the fade and keep logos visible. */
@supports ((-webkit-mask-image: linear-gradient(#000, #000)) or (mask-image: linear-gradient(#000, #000))) {
  .clients-marquee-section .logos-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
}

.marquee-row {
  overflow: hidden;
  width: 100%;
  /* NOTE: removed `contain`, `content-visibility`, `contain-intrinsic-size`.
     On Safari < 15.4, older Chromium, and some Android WebView builds these
     caused logos to disappear mid-animation when the row briefly clipped
     out of the viewport. Keeping plain overflow:hidden is universally safe. */
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  /* Lightweight GPU hint; avoids `will-change: transform` which on legacy
     GPUs (older Android, Intel HD on old Chromium) could promote the layer
     and then drop it, blanking the logos. */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: marquee-scroll-left 40s linear infinite;
          animation: marquee-scroll-left 40s linear infinite;
}

.marquee-row.marquee-ltr .marquee-track {
  -webkit-animation-name: marquee-scroll-right;
          animation-name: marquee-scroll-right;
}

/* Use 2D translateX with percentages (not translate3d) — safer on legacy
   WebKit/Blink where percentage values inside translate3d could resolve to
   0 on the first frame, causing a visible flash / blank. */
@-webkit-keyframes marquee-scroll-left {
  from { -webkit-transform: translateX(0);    transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes marquee-scroll-left {
  from { -webkit-transform: translateX(0);    transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@-webkit-keyframes marquee-scroll-right {
  from { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
  to   { -webkit-transform: translateX(0);    transform: translateX(0); }
}
@keyframes marquee-scroll-right {
  from { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
  to   { -webkit-transform: translateX(0);    transform: translateX(0); }
}

/* Reduce motion: fully stop marquee and show static logos (no duplicates) */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transform: none !important;
            transform: none !important;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .marquee-track .client-logo.is-clone { display: none !important; }
  .logos-marquee {
    overflow: visible;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* Card frames around each logo — fixed image height for consistency */
.logos-marquee .client-logo {
  flex: 0 0 auto;
  width: 200px;
  height: 110px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  box-sizing: border-box;
}
.logos-marquee .client-logo img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.logos-marquee .client-logo.is-broken { display: none !important; }

@media (max-width: 720px) {
  .logos-marquee .client-logo {
    width: 140px;
    height: 80px;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .logos-marquee .client-logo img { height: 44px; }
  .marquee-track { gap: 12px; animation-duration: 30s; }
}



.clients-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(26,115,232,0.08);
  color: #1A73E8;
  font-size: 13px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.clients-eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #1A73E8;
  box-shadow: 0 0 0 4px rgba(26,115,232,0.15);
}

.clients-head {
  text-align: center;
  margin-bottom: 48px;
}

.clients-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-family: 'Tajawal', Arial, sans-serif;
}

.clients-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Fixed-size cell grid tuned to the tallest/widest logos in the set.
   Cell box stays identical at every breakpoint; only column count changes.
   --logo-img-* caps the inner image so wide or tall files share the same
   visual footprint as compact ones. */
.logos-grid {
  --logo-cell-w: 210px;
  --logo-cell-h: 120px;
  --logo-img-w: 170px;
  --logo-img-h: 80px;
  --logo-gap-x: 24px;
  /* Row-gap is tied to the cell height so the vertical rhythm between
     logo rows stays visually identical across desktop, tablet, and mobile
     breakpoints — when cell-h shrinks per breakpoint, the gap scales with it. */
  --logo-gap-y-ratio: 0.825;
  --logo-gap-y: calc(var(--logo-cell-h) * var(--logo-gap-y-ratio));
  display: grid;
  grid-template-columns: repeat(5, var(--logo-cell-w));
  grid-auto-rows: var(--logo-cell-h);
  column-gap: var(--logo-gap-x);
  row-gap: var(--logo-gap-y);
  justify-content: center;
  align-content: center;
  justify-items: stretch;
  align-items: stretch;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Uniform fixed cell — perfect centering on both axes. */
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--logo-cell-w);
  height: var(--logo-cell-h);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 12px;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 0;
  text-align: center;
}

/* Image is capped to a sub-box so files of varying intrinsic size share
   the same visual weight. object-fit:contain guarantees no cropping.
   image-rendering hints improve sharpness on high-DPI screens. */
.client-logo img {
  display: block;
  width: var(--logo-img-w);
  height: var(--logo-img-h);
  max-width: var(--logo-img-w);
  max-height: var(--logo-img-h);
  object-fit: contain;
  object-position: center center;
  vertical-align: middle;
  margin: auto;
  filter: none;
  opacity: 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Hide failed logos so the grid reflows cleanly. */
.client-logo.is-broken { display: none !important; }

/* Tablet: 4 cols, same proportions */
@media (max-width: 1024px) {
  .logos-grid {
    --logo-cell-w: 162px;
    --logo-cell-h: 100px;
    --logo-img-w: 132px;
    --logo-img-h: 68px;
    --logo-gap-x: 16px;
    grid-template-columns: repeat(4, var(--logo-cell-w));
    padding: 0 16px;
  }
}

/* Small tablet / large phone: 3 cols */
@media (max-width: 720px) {
  .logos-grid {
    --logo-cell-w: 160px;
    --logo-cell-h: 96px;
    --logo-img-w: 130px;
    --logo-img-h: 64px;
    --logo-gap-x: 14px;
    grid-template-columns: repeat(3, var(--logo-cell-w));
    padding: 0 14px;
  }
}

/* Mobile: 2 cols */
@media (max-width: 520px) {
  .clients { padding: 72px 0; }
  .logos-grid {
    --logo-cell-w: 148px;
    --logo-cell-h: 88px;
    --logo-img-w: 122px;
    --logo-img-h: 58px;
    --logo-gap-x: 10px;
    grid-template-columns: repeat(2, var(--logo-cell-w));
    padding: 0 10px;
  }
}

/* Very small phones (≤360): keep 2 cols, shrink to fit */
@media (max-width: 360px) {
  .logos-grid {
    --logo-cell-w: 138px;
    --logo-cell-h: 82px;
    --logo-img-w: 114px;
    --logo-img-h: 54px;
    padding: 0 8px;
  }
}

/* ============================================
   COST / IMPACT SECTION
   ============================================ */
.cost-section { background: var(--bg-soft); }

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .cost-grid { grid-template-columns: 1fr; gap: 16px; max-width: 640px; }
}

.cost-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  overflow: hidden;
  isolation: isolate;
}

/* Springy reveal + smooth hover (override .reveal defaults for this card) */
.cost-card.reveal {
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.cost-card.reveal.in-view {
  transform: translateY(0);
}

.cost-card.in-view:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(234, 67, 53, 0.15);
}

/* Big outlined number watermark */
.cost-num {
  position: absolute;
  top: 14px;
  inset-inline-end: 20px;
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: 'Tajawal', Arial, sans-serif;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  opacity: 0.14;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.cost-card.in-view:hover .cost-num {
  opacity: 0.32;
  transform: scale(1.08) rotate(-4deg);
}

/* Soft red corner glow on hover */
.cost-card::before {
  content: '';
  position: absolute;
  top: -60px;
  inset-inline-end: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(234, 67, 53, 0.18), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.cost-card.in-view:hover::before { opacity: 1; }

.cost-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(234, 67, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cost-card.in-view:hover .cost-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Continuous subtle pulse on icon */
.cost-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid var(--red);
  opacity: 0;
  animation: costIconPulse 2.8s ease-in-out infinite;
}

@keyframes costIconPulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.25); opacity: 0.25; }
}

.cost-icon svg { width: 24px; height: 24px; }

/* Section eyebrow badge */

.cost-card h4 {
  position: relative;
  z-index: 1;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text);
}

.cost-card p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Bottom accent line that fills on hover (right-to-left for RTL) */
.cost-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff8a7e);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cost-card.in-view:hover::after { transform: scaleX(1); }




/* ============================================
   SERVICE - What you get (replaces Solution)
   ============================================ */

.service-section {
  background: var(--bg-soft);
}

.service-badge-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  background: #e8f5ea;
  color: #34a853;
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1.5px solid #34a853;
  box-shadow: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

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

.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 168, 83, 0.12);
}

.service-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(52, 168, 83, 0.15);
  color: var(--green);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-item:hover .service-check {
  transform: scale(1.1);
}

.service-check svg { width: 16px; height: 16px; }

.service-item span {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  display: block;
}

/* Unify service section typography across all breakpoints */
@media (max-width: 1023px) {
  .service-section .section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 56px;
  }
  .service-item span {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .service-item {
    padding: 18px 22px;
    gap: 14px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-check {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .service-section .section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 56px;
  }
  .service-item span {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .service-item {
    padding: 18px 22px;
    gap: 14px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-check {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .service-section .section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 56px;
  }
  .service-item span {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .service-item {
    padding: 18px 22px;
    gap: 14px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-check {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 380px) {
  .service-section .section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 56px;
  }
  .service-item span {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .service-item {
    padding: 18px 22px;
    gap: 14px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-check {
    width: 32px;
    height: 32px;
  }
}


/* ============================================
   GOOGLE REVIEWS
   ============================================ */

.reviews-section { background: var(--bg-soft); }
.reviews-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--card-shadow);
}

/* ============================================
   AUDIENCE
   ============================================ */

.audience-section {
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.audience-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.08), transparent 70%);
  top: -200px;
  left: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.audience-section > .container {
  position: relative;
  z-index: 1;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.4s ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--card-shadow-hover);
}

.audience-emoji-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-blue);
  color: var(--primary);
  transition: transform 0.4s ease;
}

.audience-card:hover .audience-emoji-icon { transform: scale(1.15) rotate(5deg); }
.audience-emoji-icon svg { width: 30px; height: 30px; }

.audience-card:nth-child(1) .audience-emoji-icon { background: rgba(66, 133, 244, 0.1); color: var(--google-blue); }
.audience-card:nth-child(2) .audience-emoji-icon { background: rgba(52, 168, 83, 0.1); color: var(--green); }
.audience-card:nth-child(3) .audience-emoji-icon { background: rgba(251, 188, 5, 0.1); color: var(--yellow); }
.audience-card:nth-child(4) .audience-emoji-icon { background: rgba(234, 67, 53, 0.1); color: var(--red); }

.audience-card h3 { font-size: 17px; margin-bottom: 6px; }
.audience-card p { color: var(--text-muted); font-size: 14px; }

/* ============================================
   FAQ
   ============================================ */

.faq-wrapper {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--primary); }

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--card-shadow);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  color: var(--text);
  gap: 16px;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--bg-blue);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}

.faq-icon svg { width: 16px; height: 16px; }

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FOOTER
   ============================================ */


/* Mobile sticky CTA bar — moves header CTAs below footer on small screens */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  header .header-actions .btn { display: none; }
  /* Empty .header-actions would otherwise occupy space at the end of the
     flex row (justify-content:space-between), pushing the burger toward
     the center. Hide it entirely on mobile and let the burger sit at the
     opposite end of the logo. Works in both LTR and RTL. */
  header .header-actions { display: none; }
  /* margin handled globally on .burger */
  .mobile-cta-bar {
    display: flex;
    gap: 10px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: var(--surface, #fff);
    border-top: 1px solid rgba(0,0,0,0.08);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.15);
  }
  .mobile-cta-bar .btn { flex: 1; justify-content: center; padding: 12px 14px; font-size: 14px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
}
[data-theme="dark"] .mobile-cta-bar { background: #0f1722; border-top-color: rgba(255,255,255,0.08); }

footer {
  background: var(--bg-soft);
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive tweaks */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 130px 0 60px; }
  .hero-mockup { transform: none; }
  .hero-float-1, .hero-float-2 { display: none; }
  .solution-visual { height: 380px; }
  .orbit-ring-1 { width: 240px; height: 240px; }
  .orbit-ring-2 { width: 340px; height: 340px; }
  .orbit-center { width: 110px; height: 110px; font-size: 12px; }
  .why-pillars { grid-template-columns: 1fr; }
}
/* ============================================
   STYLE OVERRIDES & NEW SECTIONS
   ============================================ */

/* Section background overrides */
.service-section { background: #e6f4ea; }
.reviews-section { background: #ffffff; }

[data-theme="dark"] .service-section { background: #e6f4ea; }
[data-theme="dark"] .service-section h2,
[data-theme="dark"] .service-section .section-subtitle { color: #1a1a1a; }
[data-theme="dark"] .service-section .service-item { background: #fff; border-color: #c5e5cf; }
[data-theme="dark"] .service-section .service-item span { color: #1a1a1a; }
[data-theme="dark"] .service-section .service-badge { background: #d6ecde; color: #1a6e36; border-color: rgba(52, 168, 83, 0.3); }

[data-theme="dark"] .reviews-section { background: #ffffff; }
[data-theme="dark"] .reviews-section h2,
[data-theme="dark"] .reviews-section .section-subtitle { color: #1a1a1a; }
[data-theme="dark"] .reviews-section .reviews-wrapper { background: #fff; border-color: #E8EAED; }

/* HERO H1 reformat */
.hero h1 {
  margin: 0;
  letter-spacing: -0.025em;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.2;
}
.hero-h1-eyebrow {
  font-size: clamp(24px, 3.57vw, 48px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  display: block;
}
.hero-h1-main {
  font-size: clamp(24px, 3.57vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  display: block;
}
.hero-h1-gradient {
  color: #34a853;
}
.hero-h1-main:empty,
.hero-h1-main br:only-child {
  display: none;
}


/* ============================================
   WHY US - Creative Redesign
   ============================================ */
.why-us-new {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.why-us-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(66, 133, 244, 0.09), transparent 50%),
    radial-gradient(circle at 88% 78%, rgba(52, 168, 83, 0.09), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.why-us-new .container { position: relative; z-index: 1; }

.whyn-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.whyn-badge {
  display: inline-flex;
  align-items: center;
  background: var(--bg-blue);
  color: var(--primary);
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  border: 1.5px solid rgba(26, 115, 232, 0.2);
}
.whyn-intro {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.whyn-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: stretch;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .whyn-stage { grid-template-columns: 1.65fr 0.75fr; gap: 48px; }
}
.whyn-video-wrap { width: 100%; position: relative; display: flex; }

/* Video Player Frame */
.whyn-video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 30px 70px -20px rgba(11, 31, 58, 0.28),
    0 8px 24px rgba(11, 31, 58, 0.08),
    0 0 0 1px rgba(11, 31, 58, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s ease;
}
@media (min-width: 1024px) {
  .whyn-video-frame {
    aspect-ratio: auto;
    height: 100%;
    min-height: 480px;
  }
}
@media (max-width: 768px) {
  .whyn-video-frame {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
  .whyn-video-wrap { width: 100%; max-width: 100%; overflow: hidden; }
}
.whyn-video-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 90px -20px rgba(26, 115, 232, 0.35),
    0 10px 28px rgba(11, 31, 58, 0.1),
    0 0 0 1px rgba(26, 115, 232, 0.18);
}
/* macOS-style title bar */
.whyn-titlebar {
  flex: none;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #f7f8fa;
  border-bottom: 1px solid rgba(11, 31, 58, 0.07);
}
.whyn-tb-title {
  font-size: 15px;
  font-weight: 700;
  color: #1f2a44;
  letter-spacing: 0.2px;
}
.whyn-tb-dots { display: flex; align-items: center; gap: 8px; }
.whyn-tb-dot {
  width: 13px; height: 13px; border-radius: 50%;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.08);
}
.whyn-tb-close { background: #34A853; }
.whyn-tb-min   { background: #FBBC05; }
.whyn-tb-max   { background: #EA4335; }
/* Video stage area */
.whyn-video-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #ffffff;
  overflow: hidden;
}
.whyn-video-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(66, 133, 244, 0.6) 0%, transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(52, 168, 83, 0.5) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(251, 188, 5, 0.15) 0%, transparent 60%);
  animation: whynBgShift 14s ease-in-out infinite;
}
@keyframes whynBgShift {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  33% { transform: scale(1.15) rotate(3deg); opacity: 0.9; }
  66% { transform: scale(0.95) rotate(-2deg); opacity: 1; }
}
.whyn-video-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, transparent 20%, black 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 20%, black 80%);
}
.whyn-orbit-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 12px currentColor;
}
.whyn-orbit-dot.d1 { width: 8px; height: 8px; background: #FBBC05; color: #FBBC05; top: 18%; left: 16%; animation: whynDotFloat 6s ease-in-out infinite; }
.whyn-orbit-dot.d2 { width: 6px; height: 6px; background: #4285F4; color: #4285F4; top: 30%; right: 22%; animation: whynDotFloat 7s ease-in-out infinite -2s; }
.whyn-orbit-dot.d3 { width: 10px; height: 10px; background: #34A853; color: #34A853; bottom: 22%; left: 28%; animation: whynDotFloat 8s ease-in-out infinite -4s; }
.whyn-orbit-dot.d4 { width: 5px; height: 5px; background: #EA4335; color: #EA4335; bottom: 30%; right: 18%; animation: whynDotFloat 6.5s ease-in-out infinite -1s; }
@keyframes whynDotFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(14px, -18px); opacity: 1; }
}

.whyn-video-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  pointer-events: none;
  padding: 32px;
  text-align: center;
}
.whyn-video-mark {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  animation: whynMarkFloat 4s ease-in-out infinite;
}
@keyframes whynMarkFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.whyn-video-mark svg { width: 36px; height: 36px; }
.whyn-video-title-text {
  font-size: 26px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.whyn-video-sub {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.whyn-video-duration {
  position: absolute;
  bottom: 16px;
  inset-inline-end: 16px;
  background: rgba(0, 0, 0, 0.78);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Tajawal', Arial, sans-serif;
  z-index: 2;
  letter-spacing: 0.5px;
}
.whyn-video-tag {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
}
.whyn-video-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: whynLiveDot 1.5s ease-in-out infinite;
}
@keyframes whynLiveDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(234, 67, 53, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 0 5px rgba(234, 67, 53, 0); }
}

/* Real video element */
.whyn-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #fff;
  display: block;
}
.whyn-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  background: #eef2f8;
  display: block;
  transition: opacity 0.35s ease;
}
.whyn-video-frame.is-ready .whyn-video-poster { opacity: 0; pointer-events: none; }

/* Bottom toolbar */
.whyn-controls {
  position: relative;
  flex: none;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #f5f6f8;
  border-top: 1px solid rgba(11, 31, 58, 0.07);
  opacity: 1;
  pointer-events: auto;
}
.whyn-ctrl-group { display: flex; align-items: center; gap: 10px; flex: none; }
.whyn-ctrl-btn {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--google-blue, #1A73E8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(26, 115, 232, 0.55);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.whyn-ctrl-btn:hover { transform: scale(1.06); background: #1666cf; box-shadow: 0 12px 26px -6px rgba(26, 115, 232, 0.7); }
.whyn-ctrl-btn:active { transform: scale(0.96); }
.whyn-ctrl-btn svg { width: 20px; height: 20px; }
.whyn-ctrl-ghost {
  width: 44px; height: 44px;
  background: #ffffff;
  color: #1f2a44;
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.08), inset 0 0 0 1px rgba(11, 31, 58, 0.08);
}
.whyn-ctrl-ghost:hover { background: #fff; color: var(--google-blue, #1A73E8); box-shadow: 0 8px 18px rgba(11, 31, 58, 0.12), inset 0 0 0 1px rgba(26, 115, 232, 0.35); }
.whyn-ctrl-ghost svg { width: 18px; height: 18px; }
.whyn-ctrl-btn .whyn-icon-pause,
.whyn-ctrl-btn .whyn-icon-muted { display: none; }
.whyn-video-frame.is-playing #whynCtrlToggle .whyn-icon-play { display: none; }
.whyn-video-frame.is-playing #whynCtrlToggle .whyn-icon-pause { display: block; }
.whyn-ctrl-btn .whyn-icon-fs-exit { display: none; }
.whyn-video-frame.is-fullscreen #whynFsBtn .whyn-icon-fs-enter { display: none; }
.whyn-video-frame.is-fullscreen #whynFsBtn .whyn-icon-fs-exit { display: block; }
.whyn-video-frame:fullscreen { aspect-ratio: auto; width: 100vw; height: 100vh; border-radius: 0; }
.whyn-video-frame:fullscreen .whyn-video { object-fit: contain; background: #000; }
.whyn-video-frame:fullscreen .whyn-video-stage { background: #000; }
.whyn-progress {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 36px;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  --pct: 0%;
}
.whyn-progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: #e4e7ec;
  border-radius: 999px;
  transition: height 0.2s ease;
}
.whyn-progress:hover .whyn-progress-bar,
.whyn-progress:focus-visible .whyn-progress-bar,
.whyn-progress.is-scrubbing .whyn-progress-bar { height: 11px; }
.whyn-progress-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, #34A853, #1A73E8);
  border-radius: 999px;
  transition: width 0.08s linear;
}
.whyn-progress.is-scrubbing .whyn-progress-fill { transition: none; }
.whyn-progress-thumb {
  position: absolute;
  top: 50%;
  inset-inline-start: var(--pct, 0%);
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #1A73E8;
  border-radius: 50%;
  /* RTL: inset-inline-start = right; positive translateX moves visually leftwards in flipped axis? No — translate is in physical px. Use a logical offset to keep thumb centered on its edge regardless of direction. */
  margin-inline-start: -8px;
  transform: translateY(-50%);
  box-shadow: 0 2px 6px rgba(11,31,58,0.25);
  opacity: 0;
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
  pointer-events: none;
}
.whyn-progress:hover .whyn-progress-thumb,
.whyn-progress:focus-visible .whyn-progress-thumb,
.whyn-progress.is-scrubbing .whyn-progress-thumb { opacity: 1; }
.whyn-progress.is-scrubbing .whyn-progress-thumb { width: 20px; height: 20px; margin-inline-start: -10px; }
.whyn-progress-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  inset-inline-start: var(--pct, 0%);
  margin-inline-start: -28px;
  width: 56px;
  text-align: center;
  background: #1f2a44;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 0;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  font-variant-numeric: tabular-nums;
  direction: ltr; /* time always reads mm:ss left-to-right */
}
.whyn-progress-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1f2a44;
}
.whyn-progress.is-scrubbing .whyn-progress-tooltip,
.whyn-progress:hover .whyn-progress-tooltip { opacity: 1; }
.whyn-time {
  flex: none;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}



/* Floating chips */
.whyn-chip {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.15);
  z-index: 4;
  white-space: nowrap;
  color: var(--text);
}
.whyn-chip svg { width: 18px; height: 18px; }
.whyn-chip-1 {
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  inset-inline-start: auto;
  inset-inline-end: auto;
  animation: whynChipFloatCenter 5s ease-in-out infinite;
}
.whyn-chip-1 svg { color: var(--google-blue); }
.whyn-chip-2 {
  bottom: 32px;
  inset-inline-end: -24px;
  animation: whynChipFloat 5s ease-in-out infinite -2.5s;
}
.whyn-chip-2 svg { color: var(--green); }
@keyframes whynChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes whynChipFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Story timeline */
.whyn-story {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.whyn-story-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.whyn-story-item::before {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent, var(--primary));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}
.whyn-story-item:hover {
  border-color: var(--accent, var(--primary));
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.08);
  transform: translateY(-2px);
}
.whyn-story-item:hover::before { transform: scaleY(1); }

.whyn-story-item:nth-child(1) { --accent: var(--google-blue); }
.whyn-story-item:nth-child(2) { --accent: var(--green); }
.whyn-story-item:nth-child(3) { --accent: var(--yellow); }
.whyn-story-item:nth-child(4) { --accent: var(--red); }

.whyn-story-year {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.whyn-story-item:nth-child(1) .whyn-story-year { background: linear-gradient(135deg, var(--google-blue), #1A73E8); box-shadow: 0 8px 20px rgba(66, 133, 244, 0.35); }
.whyn-story-item:nth-child(2) .whyn-story-year { background: linear-gradient(135deg, var(--green), #2E9648); box-shadow: 0 8px 20px rgba(52, 168, 83, 0.35); }
.whyn-story-item:nth-child(3) .whyn-story-year { background: linear-gradient(135deg, var(--yellow), #F0A800); box-shadow: 0 8px 20px rgba(251, 188, 5, 0.35); }
.whyn-story-item:nth-child(4) .whyn-story-year { background: linear-gradient(135deg, var(--red), #D63A2E); box-shadow: 0 8px 20px rgba(234, 67, 53, 0.35); }

.whyn-story-content { flex: 1; padding-top: 6px; }
.whyn-story-content h4 { font-size: 17px; margin-bottom: 4px; }
.whyn-story-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Services list (new) */
.whyn-services {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 14px;
  position: relative;
  align-content: stretch;
  height: 100%;
}
.whyn-svc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 96px;
}
.whyn-svc-item::before {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent, var(--primary));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}
.whyn-svc-item:hover {
  border-color: var(--accent, var(--primary));
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.08);
  transform: translateY(-2px);
}
.whyn-svc-item:hover::before { transform: scaleY(1); }

.whyn-svc-item:nth-child(1) { --accent: var(--google-blue); }
.whyn-svc-item:nth-child(2) { --accent: var(--green); }
.whyn-svc-item:nth-child(3) { --accent: var(--yellow); }
.whyn-svc-item:nth-child(4) { --accent: var(--red); }

.whyn-svc-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.35s ease;
}
.whyn-svc-icon svg { width: 26px; height: 26px; }
.whyn-svc-item:hover .whyn-svc-icon { transform: scale(1.08) rotate(-4deg); }
.whyn-svc-item:nth-child(1) .whyn-svc-icon { background: linear-gradient(135deg, var(--google-blue), #1A73E8); box-shadow: 0 8px 20px rgba(66, 133, 244, 0.35); }
.whyn-svc-item:nth-child(2) .whyn-svc-icon { background: linear-gradient(135deg, var(--green), #2E9648); box-shadow: 0 8px 20px rgba(52, 168, 83, 0.35); }
.whyn-svc-item:nth-child(3) .whyn-svc-icon { background: linear-gradient(135deg, var(--yellow), #F0A800); box-shadow: 0 8px 20px rgba(251, 188, 5, 0.35); }
.whyn-svc-item:nth-child(4) .whyn-svc-icon { background: linear-gradient(135deg, var(--red), #D63A2E); box-shadow: 0 8px 20px rgba(234, 67, 53, 0.35); }

.whyn-svc-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
 .whyn-svc-content h4 {
   font-size: 17px;
   line-height: 1.45;
   margin: 0 0 4px;
   padding: 0;
   font-weight: 700;
   color: var(--text-primary, #0b1f3a);
   letter-spacing: -0.01em;
 }
 .whyn-svc-content p {
   font-size: 14px;
   color: var(--text-muted, #5F6368);
   line-height: 1.75;
   margin: 0;
   text-wrap: pretty;
 }
 
 /* Tablet */
 @media (max-width: 1023px) {
   .whyn-services { grid-auto-rows: auto; height: auto; }
   .whyn-svc-item { min-height: 0; padding: 18px 20px; }
 }
 
 /* Mobile */
 @media (max-width: 768px) {
   .whyn-services { gap: 12px; }
   .whyn-svc-item { gap: 14px; padding: 16px 16px; border-radius: 14px; }
   .whyn-svc-icon { width: 48px; height: 48px; border-radius: 12px; }
   .whyn-svc-icon svg { width: 22px; height: 22px; }
   .whyn-svc-content { gap: 6px; }
   .whyn-svc-content h4 { font-size: 16px; line-height: 1.45; margin: 0 0 4px; letter-spacing: -0.005em; }
   .whyn-svc-content p { font-size: 14.5px; line-height: 1.85; letter-spacing: 0.01em; word-spacing: 0.02em; }
 }
 
 @media (max-width: 480px) {
   .whyn-svc-content h4 { font-size: 15.5px; line-height: 1.45; margin: 0 0 4px; }
   .whyn-svc-content p { font-size: 14px; line-height: 1.9; }
 }
 
 @media (max-width: 380px) {
   .whyn-svc-item { padding: 14px; gap: 12px; }
   .whyn-svc-icon { width: 44px; height: 44px; }
   .whyn-svc-content h4 { font-size: 15px; line-height: 1.45; margin: 0 0 4px; }
   .whyn-svc-content p { font-size: 13.5px; line-height: 1.9; }
 }


/* Stats row */
.whyn-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .whyn-stats { grid-template-columns: repeat(2, 1fr); }
}
.whyn-stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.whyn-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent, var(--primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}
.whyn-stat:hover::before { transform: scaleX(1); }
.whyn-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.1);
  border-color: var(--accent, var(--primary));
}
.whyn-stat:nth-child(1) { --accent: var(--google-blue); }
.whyn-stat:nth-child(2) { --accent: var(--green); }
.whyn-stat:nth-child(3) { --accent: var(--yellow); }
.whyn-stat:nth-child(4) { --accent: var(--red); }

.whyn-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, var(--primary));
  transition: transform 0.4s ease;
}
.whyn-stat:nth-child(1) .whyn-stat-icon { background: rgba(66, 133, 244, 0.1); }
.whyn-stat:nth-child(2) .whyn-stat-icon { background: rgba(52, 168, 83, 0.1); }
.whyn-stat:nth-child(3) .whyn-stat-icon { background: rgba(251, 188, 5, 0.1); }
.whyn-stat:nth-child(4) .whyn-stat-icon { background: rgba(234, 67, 53, 0.1); }
.whyn-stat:hover .whyn-stat-icon { transform: scale(1.1) rotate(-8deg); }
.whyn-stat-icon svg { width: 26px; height: 26px; }

.whyn-stat-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--accent, var(--primary));
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.whyn-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .why-us-new { padding: 80px 0; }
  .whyn-stage { gap: 48px; }
  .whyn-video-wrap { padding-top: 24px; }
  .whyn-video-frame {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 18px;
  }
  .whyn-titlebar { height: 42px; padding: 0 14px; }
  .whyn-tb-title { font-size: 13px; }
  .whyn-tb-dot { width: 11px; height: 11px; }
  .whyn-controls {
    gap: 10px;
    padding: 12px 14px;
    flex-wrap: wrap;
  }
  .whyn-progress { flex: 1 1 100%; order: -1; height: 40px; }
  .whyn-progress-bar { height: 6px; }
  .whyn-progress:hover .whyn-progress-bar,
  .whyn-progress.is-scrubbing .whyn-progress-bar { height: 9px; }
  .whyn-progress-thumb { width: 18px; height: 18px; opacity: 1; }
  .whyn-progress.is-scrubbing .whyn-progress-thumb { width: 22px; height: 22px; }
  .whyn-time { font-size: 12px; flex: 1; }
  .whyn-ctrl-group { margin-inline-start: auto; }
  .whyn-ctrl-btn { width: 44px; height: 44px; }
  .whyn-ctrl-btn svg { width: 18px; height: 18px; }
  .whyn-ctrl-ghost { width: 40px; height: 40px; }
  .whyn-ctrl-ghost svg { width: 16px; height: 16px; }
  .whyn-chip { font-size: 11px; padding: 7px 12px; }
  .whyn-chip-1 { display: none !important; }
  .whyn-chip-2 { inset-inline-end: 8px; bottom: 16px; }
  .whyn-video { object-fit: contain; background: #000; }

  .whyn-story-year { width: 56px; height: 56px; font-size: 13px; }
  .whyn-stat-num { font-size: 30px; }
}
@media (max-width: 480px) {
  .whyn-video-frame { aspect-ratio: 4 / 3; }
  .whyn-ctrl-btn { width: 42px; height: 42px; }
  .whyn-ctrl-ghost { width: 38px; height: 38px; }
  .whyn-time { font-size: 11px; }
}


/* ============ Footer V6 ============ */
.footer-v6 {
  background: #0A0E1A !important;
  color: rgba(255,255,255,0.78);
  padding: 64px 0 0;
  position: relative;
  direction: rtl;
}
[data-theme="dark"] .footer-v6 { background: #06080F !important; }
.footer-v6::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
  opacity: 0.85;
}
.footer-grid-v6 {
  display: grid;
  gap: 40px 32px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  align-items: start;
}
/* Tablet: 2fr / 1fr / 1fr keeps the About column clearly dominant */
@media (min-width: 720px) and (max-width: 1099px) {
  .footer-grid-v6 { grid-template-columns: 2fr 1fr 1fr; gap: 32px 28px; }
}
/* Desktop: exact 50% / 25% / 25% */
@media (min-width: 1100px) {
  .footer-grid-v6 { grid-template-columns: 2fr 1fr 1fr; gap: 56px; }
}
.footer-v6 .footer-col { min-width: 0; display: flex; flex-direction: column; }
.footer-v6 .footer-col h3,
.footer-v6 .footer-col h4 {
  color: #f8f9fa; font-size: 16px; font-weight: 800;
  margin: 0 0 20px; letter-spacing: 0.3px; line-height: 1.4;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  text-transform: none;
}
.footer-v6 .footer-col-brand h3,
.footer-v6 .footer-col-brand h4 { border-bottom-color: rgba(255,255,255,0.14); }
.footer-v6 .footer-col-brand .footer-logo-link {
  display: inline-block; margin-bottom: 16px; color: #fff;
  border-radius: 6px;
}
.footer-v6 .footer-col-brand .logo-svg { height: 56px; width: auto; color: #fff; }
.footer-v6 .footer-brand-desc {
  font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.70);
  margin: 0 0 20px; max-width: 540px;
}
.footer-v6 .footer-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-v6 .footer-cta-row .btn { padding: 10px 16px; font-size: 13.5px; }
.footer-v6 .footer-links-list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px;
}
.footer-v6 .footer-links-list a {
  color: rgba(255,255,255,0.72); font-size: 14px; text-decoration: none;
  transition: color .15s ease, transform .15s ease;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 2px 0; border-radius: 4px; line-height: 1.6;
}
.footer-v6 .footer-links-list a::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25); flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
.footer-v6 .footer-links-list a:hover { color: #fff; transform: translateX(-3px); }
.footer-v6 .footer-links-list a:hover::before { background: #4285F4; transform: scale(1.3); }

/* Social icons — wrap nicely in the narrower 25% column */
.footer-v6 .footer-social-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px;
}
.footer-v6 .social-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .2s ease;
}
.footer-v6 .social-icon:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.footer-v6 .social-icon[aria-label="واتساب"]:hover { background: #25D366; border-color: #25D366; color: #fff; }
.footer-v6 .social-icon[aria-label="فيسبوك"]:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.footer-v6 .social-icon[aria-label="لينكدإن"]:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.footer-v6 .social-icon[aria-label="يوتيوب"]:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.footer-v6 .social-icon[aria-label="انستغرام"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent; color: #fff;
}
.footer-v6 .social-icon[aria-label="X (Twitter)"]:hover { background: #fff; border-color: #fff; color: #000; }
.footer-v6 .social-icon[aria-label="اتصال"]:hover { background: #1A73E8; border-color: #1A73E8; color: #fff; }
.footer-v6 .social-icon[aria-label="البريد الإلكتروني"]:hover { background: #EA4335; border-color: #EA4335; color: #fff; }

.footer-v6 .footer-info-block { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.footer-v6 .footer-info-line { font-size: 13.5px; color: rgba(255,255,255,0.78); margin: 0; line-height: 1.7; }
.footer-v6 .footer-info-line strong { color: #fff; font-weight: 700; margin-inline-end: 6px; }
.footer-v6 .footer-info-cities { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-v6 .footer-info-cities a {
  color: inherit; text-decoration: underline; text-underline-offset: 2px;
  transition: color .15s ease; border-radius: 3px;
}
.footer-v6 .footer-info-cities a:hover { color: #fff; }
.footer-v6 .footer-info-hours { color: rgba(255,255,255,0.68); font-size: 13px; }

.footer-v6 .footer-bar-v6 {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px 0; display: flex; flex-direction: column;
  gap: 12px; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,0.55); text-align: center;
}
@media (min-width: 720px) {
  .footer-v6 .footer-bar-v6 { flex-direction: row; text-align: start; }
}
.footer-v6 .footer-bar-left, .footer-v6 .footer-bar-right {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.footer-v6 .footer-legal-num { color: rgba(255,255,255,0.65); font-size: 12.5px; letter-spacing: 0.3px; }
.footer-v6 .footer-legal-sep { color: rgba(255,255,255,0.30); margin: 0 4px; }

/* Accessibility — visible keyboard focus on every interactive element */
.footer-v6 a:focus-visible,
.footer-v6 button:focus-visible {
  outline: 2px solid #4285F4;
  outline-offset: 3px;
  border-radius: 6px;
  color: #fff;
}
.footer-v6 .social-icon:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  background: rgba(255,255,255,0.14);
}

@media (max-width: 719px) {
  .footer-v6 { padding-top: 48px; padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .footer-v6 .footer-grid-v6 { gap: 36px; }
  .footer-v6 .footer-col h3,
  .footer-v6 .footer-col h4 { margin-bottom: 16px; padding-bottom: 12px; font-size: 15px; }
  .footer-v6 .footer-col-brand .logo-svg { height: 48px; }
  .footer-v6 .footer-brand-desc { font-size: 13.5px; }
  .footer-v6 .footer-social-grid { gap: 8px; }
  .footer-v6 .social-icon { width: 42px; height: 42px; }
  .footer-v6 .footer-bar-v6 { padding-bottom: 8px; font-size: 12px; }
  .footer-v6 .footer-cta-row .btn { flex: 1; justify-content: center; min-width: 140px; }
}


/* ============================================
   FOOTER ABOUT — READ MORE EXPANDABLE
   ============================================ */
.footer-about-text .about-lead {
  color: #fff; font-weight: 700; font-size: 15px; line-height: 1.65;
  margin: 0 0 10px;
}
.footer-about-text > p {
  color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.85;
  margin: 0 0 12px;
}
.footer-about-more-wrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  opacity: 0;
}
.footer-about-more-wrap.is-expanded {
  grid-template-rows: 1fr; opacity: 1;
}
.footer-about-more-inner {
  overflow: hidden;
}
.footer-about-more-inner p {
  color: rgba(255,255,255,0.70); font-size: 14px; line-height: 1.85;
  margin: 0 0 12px;
}
.footer-about-more-inner ul {
  list-style: disc; padding-right: 20px; margin: 0 0 14px;
  color: rgba(255,255,255,0.70);
}
.footer-about-more-inner li {
  margin-bottom: 8px; line-height: 1.75; font-size: 14px;
}
.footer-read-more-btn {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; padding: 8px 18px; border-radius: 10px;
  font-family: inherit; font-size: 13.5px; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; transition: all 0.2s ease;
}
.footer-read-more-btn:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25);
}
.footer-read-more-btn .btn-icon {
  width: 14px; height: 14px; transition: transform 0.3s ease;
}
.footer-read-more-btn.is-expanded .btn-icon {
  transform: rotate(180deg);
}
@media (prefers-reduced-motion: reduce) {
  .footer-about-more-wrap { transition: none; }
  .footer-read-more-btn .btn-icon { transition: none; }
}


/* ===== Footer styles ===== */
  .our-work-section {
    padding: 80px 0 60px;
    background: var(--background, #fff);
  }
  .our-work-section .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  .our-work-section .ow-head { text-align: center; margin-bottom: 48px; }
  .our-work-section .ow-head h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--foreground, #0b1220);
  }
  .our-work-section .ow-head p {
    font-size: 16px;
    color: var(--muted-foreground, #5b6473);
    margin: 0;
  }
  .ow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
  }
  .ow-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
  }
  .ow-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 10px;
    background-color: #ffffff;
    background-image: url('../images/is-logo-256.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 65% auto;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .ow-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    opacity: 0;
    transition: opacity .5s ease, transform 1.2s ease;
  }
  .ow-thumb img.is-loaded { opacity: 1; }
  .ow-thumb img.is-fallback { opacity: 0 !important; }

  .ow-card:hover .ow-thumb {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }
  .ow-card:hover .ow-thumb img { transform: translateY(-6%); }
  .ow-name {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: var(--foreground, #111827);
    line-height: 1.5;
  }
  .ow-card:hover .ow-name { color: var(--primary, #1a73e8); }
  @media (max-width: 992px) {
    .ow-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  }
  @media (max-width: 600px) {
    .ow-grid { grid-template-columns: 1fr; gap: 32px; }
    .our-work-section { padding: 56px 0 40px; }
  }

/* ============================================
   HERO SCENE — Animated website transformation
   ============================================ */
.hero-scene {
  position: relative;
  min-height: 0;
  direction: rtl;
  isolation: isolate;
  overflow: visible;
  padding-top: 0;
  /* Light-mode brand tokens */
  --hs-blue: #4285f4;
  --hs-cyan: #4DD0E1;
  --hs-mint: #34A853;
  --hs-text: #0b1730;
  --hs-text-dim: #5b6b8c;
  --hs-line: rgba(15, 30, 70, 0.08);
  --hs-surface: #ffffff;
  --hs-surface-2: #f4f7fc;
  --hs-placeholder: #e3ebf7;
  --hs-frame-border: #d8e3f3;
  --hs-frame-bar: #f6f8fc;
  --hs-frame-bg: #e8f0fe;
}

/* Ambient glow/particles layer (replaces removed Mac frame background) */
.hs-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.hs-glow {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.hs-glow-a {
  width: 420px; height: 420px;
  top: -60px; right: -80px;
  background: radial-gradient(circle, rgba(66,133,244,0.35), transparent 70%);
  animation: hsPulse 6s ease-in-out infinite;
}
.hs-glow-b {
  width: 360px; height: 360px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(77,208,225,0.30), transparent 70%);
  animation: hsPulse 7s ease-in-out infinite reverse;
}
@keyframes hsPulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hs-particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--hs-cyan); opacity: 0.7;
  box-shadow: 0 0 12px var(--hs-cyan);
  animation: hsFloatY 7s ease-in-out infinite;
}
.hs-particle.p1 { top: 18%; left: 12%; animation-delay: 0s; }
.hs-particle.p2 { top: 70%; left: 20%; animation-delay: 1.2s; background: var(--hs-blue); box-shadow: 0 0 12px var(--hs-blue); }
.hs-particle.p3 { top: 30%; left: 78%; animation-delay: 2s; }
.hs-particle.p4 { top: 85%; left: 65%; animation-delay: 3s; background: var(--hs-mint); box-shadow: 0 0 12px var(--hs-mint); }
.hs-particle.p5 { top: 50%; left: 50%; animation-delay: 1.5s; width: 3px; height: 3px; }
.hs-particle.p6 { top: 12%; left: 55%; animation-delay: 2.6s; width: 5px; height: 5px; }
@keyframes hsFloatY {
  0%,100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-22px); opacity: 1; }
}


.hs-glow {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}
.hs-glow-a {
  width: 380px; height: 380px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(66,133,244,0.55), transparent 70%);
  animation: hsPulse 6s ease-in-out infinite;
}
.hs-glow-b {
  width: 340px; height: 340px;
  bottom: -90px; left: -60px;
  background: radial-gradient(circle, rgba(77,208,225,0.45), transparent 70%);
  animation: hsPulse 7s ease-in-out infinite reverse;
}
@keyframes hsPulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hs-particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--hs-cyan); opacity: 0.7;
  box-shadow: 0 0 12px var(--hs-cyan);
  animation: hsFloatY 7s ease-in-out infinite;
}
.hs-particle.p1 { top: 18%; left: 12%; animation-delay: 0s; }
.hs-particle.p2 { top: 70%; left: 20%; animation-delay: 1.2s; background: var(--hs-blue); box-shadow: 0 0 12px var(--hs-blue); }
.hs-particle.p3 { top: 30%; left: 78%; animation-delay: 2s; }
.hs-particle.p4 { top: 85%; left: 65%; animation-delay: 3s; background: var(--hs-mint); box-shadow: 0 0 12px var(--hs-mint); }
.hs-particle.p5 { top: 50%; left: 50%; animation-delay: 1.5s; width: 3px; height: 3px; }
.hs-particle.p6 { top: 12%; left: 55%; animation-delay: 2.6s; width: 5px; height: 5px; }
@keyframes hsFloatY {
  0%,100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-22px); opacity: 1; }
}

/* Browser mockup */
.hs-browser {
  position: relative; z-index: 2;
  width: 100%;
  margin: 0;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid var(--hs-frame-border);
  border-radius: 18px;
  box-shadow: 0 40px 90px -30px rgba(15, 30, 70, 0.28), 0 12px 30px -12px rgba(15, 30, 70, 0.14), inset 0 1px 0 rgba(255,255,255,0.7);
  overflow: hidden;
  animation: hsRise 0.9s ease both;
}

@keyframes hsRise {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hs-browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid #eaf0f9;
  background: #f6f8fc;
  direction: ltr;
}
.hs-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06); }
.hs-dot-r { background: #ff5f57; }
.hs-dot-y { background: #febc2e; }
.hs-dot-g { background: #28c840; }
.hs-url {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ffffff;
  border: 1px solid #e3ebf7;
  color: var(--hs-text-dim);
  font-size: 11px; font-weight: 500;
  padding: 5px 12px; border-radius: 8px;
  margin-inline: 8px;
  min-width: 180px;
  direction: ltr;
}
.hs-url svg { width: 11px; height: 11px; color: var(--hs-mint); }
.hs-nav-pill {
  width: 38px; height: 5px; border-radius: 3px;
  background: #e3ebf7;
}

.hs-btn-start {
  margin-left: auto;
  background: #4285f4;
  color: #fff; border: 0; cursor: pointer;
  padding: 6px 14px; border-radius: 8px;
  font-family: inherit; font-size: 12px; font-weight: 700;
  box-shadow: 0 6px 16px -4px rgba(66,133,244,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  direction: rtl;
}
.hs-btn-start:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 10px 22px -4px rgba(66,133,244,0.6); }
.hs-btn-start:active { transform: translateY(0); filter: brightness(0.95); box-shadow: 0 4px 10px -4px rgba(66,133,244,0.5); }
.hs-phone-cta { transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease; }
.hs-phone-cta:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 10px 22px -6px rgba(66,133,244,0.55); }
.hs-phone-cta:active { transform: translateY(0); filter: brightness(0.95); }


.hs-browser-body { padding: 24px; }
.hs-hero-block {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 20px; align-items: center;
}
.hs-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(66,133,244,0.35), rgba(77,208,225,0.25));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.hs-thumb-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  animation: hsShine 3.5s ease-in-out infinite;
}
@keyframes hsShine {
  0% { transform: translateX(-100%); }
  60%,100% { transform: translateX(100%); }
}
.hs-copy { display: flex; flex-direction: column; gap: 10px; text-align: right; }
.hs-title {
  font-size: 16px; font-weight: 800;
  background: linear-gradient(90deg, var(--hs-blue), #0b1730);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1.4;
  margin-top: -60px;
}

.hs-line {
  height: 6px; border-radius: 3px;
  background: var(--hs-placeholder); width: 100%;
}
.hs-line.short { width: 70%; }
.hs-cta-row { display: flex; gap: 8px; margin-top: 4px; justify-content: flex-start; }
.hs-cta-primary {
  background: #4285f4;
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 8px;
  box-shadow: 0 6px 14px -4px rgba(66,133,244,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}
.hs-cta-primary:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 10px 22px -6px rgba(66,133,244,0.6); }
.hs-cta-primary:active { transform: translateY(0); filter: brightness(0.95); box-shadow: 0 4px 10px -4px rgba(66,133,244,0.5); }
.hs-cta-secondary {
  color: var(--hs-text-dim); font-size: 11px; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.hs-cta-secondary:hover { color: var(--hs-blue); background: rgba(66,133,244,0.08); }
.hs-cta-secondary:active { color: #1A73E8; background: rgba(66,133,244,0.14); }


.hs-cards-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 20px;
}
.hs-mini-card {
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 10px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.hs-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(66,133,244,0.35);
  box-shadow: 0 10px 24px -14px rgba(66,133,244,0.35);
}
.hs-mini-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: #4285f4;
  opacity: 0.95;
}
.hs-mini-line {
  height: 5px; border-radius: 3px;
  background: var(--hs-placeholder); width: 80%;
}
.hs-mini-line.short { width: 55%; }

/* Floating chips & cards (light surfaces) */
.hs-chip, .hs-card, .hs-phone {
  position: absolute; z-index: 3;
  background: var(--hs-surface);
  border: 1px solid #e3ebf7;
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(15, 30, 70, 0.22), 0 2px 6px rgba(15, 30, 70, 0.04);
  color: var(--hs-text);
}

.hs-chip-responsive {
  top: 32px; right: 60px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: var(--hs-text);
}
/* Inline variant: sits inside the browser bar (where the start button was) */
.hs-chip-responsive.hs-chip-inline {
  position: static;
  margin-inline-start: auto;
  padding: 6px 12px;
  font-size: 11.5px;
  background: #ffffff;
  border: 1px solid #e3ebf7;
  box-shadow: 0 4px 10px -4px rgba(15, 30, 70, 0.12);
  direction: rtl;
}
.hs-chip-devices {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  color: #4285f4;
  line-height: 1;
}
.hs-chip-devices svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.18s ease, color 0.18s ease;
}
.hs-chip-devices svg:hover { color: #1a73e8; transform: translateY(-1px); }
@media (max-width: 480px) {
  .hs-chip-devices { gap: 4px; }
  .hs-chip-devices svg { width: 14px; height: 14px; flex: 0 0 14px; }
}


/* Inline visits card (sits inside .hs-hero-block, NOT absolute) */
.hs-card-visits {
  padding: 14px 16px;
  min-width: 0;
  direction: rtl;
}
.hs-card-visits.hs-card-inline {
  position: static;
  width: 100%;
  align-self: stretch;
}
.hs-card-label { font-size: 10.5px; color: var(--hs-text-dim); font-weight: 600; }
.hs-card-stat {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 6px; direction: ltr; justify-content: flex-end;
}
.hs-stat-num {
  font-size: 24px; font-weight: 800; color: var(--hs-text);
  letter-spacing: -0.02em;
}

.hs-stat-delta {
  display: inline-flex; align-items: center; gap: 2px;
  color: var(--hs-mint); font-size: 11.5px; font-weight: 700;
}
.hs-stat-delta svg { width: 12px; height: 12px; }
.hs-bars {
  display: flex; align-items: flex-end; gap: 5px;
  height: 44px; margin-top: 10px; direction: ltr;
}
.hs-bars span {
  flex: 1;
  height: var(--h);
  background: #4285f4;
  border-radius: 3px;
  opacity: 0.85;
  animation: hsBarGrow 1.2s ease both;
}
.hs-bars span:nth-child(1) { animation-delay: 0.1s; }
.hs-bars span:nth-child(2) { animation-delay: 0.2s; }
.hs-bars span:nth-child(3) { animation-delay: 0.3s; }
.hs-bars span:nth-child(4) { animation-delay: 0.4s; }
.hs-bars span:nth-child(5) { animation-delay: 0.5s; }
.hs-bars span:nth-child(6) { animation-delay: 0.6s; }
.hs-bars span:nth-child(7) { animation-delay: 0.7s; }
.hs-bars span:nth-child(8) { animation-delay: 0.8s; }
@keyframes hsBarGrow {
  from { height: 0; opacity: 0; }
  to { height: var(--h); opacity: 0.85; }
}

/* Phone mockup (light) */
.hs-phone {
  bottom: 18px; left: 14px;
  width: 175px; padding: 0;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f4f7fc);
}
.hs-phone-notch {
  height: 18px;
  background: #e8f0fe;
  position: relative;
  border-bottom: 1px solid #e3ebf7;
}
.hs-phone-notch::after {
  content: ""; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 6px;
  background: #0b1730; border-radius: 999px;
}
.hs-perf-card {
  margin: 10px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  direction: rtl;
}
.hs-perf-text { flex: 1; text-align: right; }
.hs-perf-title { font-size: 11.5px; font-weight: 700; color: var(--hs-text); }
.hs-perf-sub { font-size: 9.5px; color: var(--hs-text-dim); margin-top: 2px; }
.hs-ring { position: relative; width: 42px; height: 42px; }
.hs-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.hs-ring-bg {
  fill: none; stroke: #e3ebf7; stroke-width: 3;
}
.hs-ring-fg {
  fill: none; stroke: var(--hs-mint); stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 2;
  animation: hsRing 1.6s ease-out both;
}
@keyframes hsRing { from { stroke-dashoffset: 100; } }
.hs-ring-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--hs-text);
}
.hs-phone-body { padding: 4px 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.hs-phone-line { height: 6px; border-radius: 3px; background: var(--hs-placeholder); }
.hs-phone-line.short { width: 65%; }
.hs-phone-cta {
  margin-top: 6px;
  background: #4285f4;
  color: #fff; border: 0; cursor: pointer;

  padding: 8px; border-radius: 8px;
  font-family: inherit; font-size: 11px; font-weight: 700;
  box-shadow: 0 6px 14px -4px rgba(77,208,225,0.45);
}

/* Float animations */
.hs-float { animation: hsFloat 6s ease-in-out infinite; }
.hs-float-rev { animation: hsFloat 7s ease-in-out -2s infinite reverse; }
.hs-float-slow { animation: hsFloat 9s ease-in-out infinite; }
@keyframes hsFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-scene { min-height: 480px; }
  .hs-browser { margin: 16px 12px 28px 60px; }
  .hs-card-visits { top: 12px; left: 12px; min-width: 175px; }
  .hs-chip-responsive { top: 22px; right: 22px; font-size: 11px; }
  .hs-phone { width: 150px; bottom: 12px; left: 8px; }
}
@media (max-width: 768px) {
  .hero-scene { min-height: 440px; }
  .hs-browser { margin: 12px 12px 14px 12px; }
  .hs-browser-body { padding: 16px; }
  .hs-hero-block { grid-template-columns: 1fr; gap: 12px; }
  .hs-cards-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hs-mini-card { padding: 8px; }
  .hs-card-visits { top: 8px; left: 8px; min-width: 150px; padding: 10px 12px; }
  .hs-stat-num { font-size: 20px; }
  .hs-bars { height: 32px; }
  .hs-chip-responsive { top: 14px; right: 12px; padding: 6px 10px; font-size: 10.5px; }
  .hs-phone { display: none !important; }
  .hs-nav-pill:nth-child(n+5) { display: none; }
  .hs-url { min-width: 110px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .hs-float, .hs-float-rev, .hs-float-slow,
  .hs-glow-a, .hs-glow-b, .hs-particle,
  .hs-thumb-shine, .hs-bars span, .hs-ring-fg, .hs-browser {
    animation: none !important;
  }
}
