/* ==========================================================================
   WebStackRank — Premium Design System
   UAE Digital Agency | v2.0
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
  /* --- Colors: Brand (C5 — Premium SaaS / incident-management palette) ---
     NOTE: variable NAMES kept (--wsr-yellow, --wsr-orange) to avoid 3461 lines
     of churn across the design system. Names are now historical aliases for
     the electric-blue + muted-violet brand colors. */
  --wsr-yellow:            #0A26E6;                         /* electric blue */
  --wsr-orange:            #8D5A74;                         /* muted violet  */
  --wsr-yellow-dim:        rgba(10, 38, 230, 0.15);
  --wsr-yellow-glow:       0 0 40px rgba(10, 38, 230, 0.42);
  --wsr-yellow-glow-lg:    0 0 80px rgba(10, 38, 230, 0.55);
  --wsr-gradient:          linear-gradient(135deg, #0A26E6 0%, #8D5A74 100%);
  --wsr-gradient-r:        linear-gradient(135deg, #8D5A74 0%, #0A26E6 100%);

  /* --- Colors: Dark surfaces (deep navy, not pure black) --- */
  --wsr-bg:                #05050D;
  --wsr-surface:           #0B1020;
  --wsr-surface-2:         #11173A;
  --wsr-surface-3:         #181E5B;
  --wsr-card-bg:           #0E1330;
  --wsr-border:            rgba(158, 164, 192, 0.18);
  --wsr-border-hover:      rgba(10, 38, 230, 0.45);

  /* --- Colors: Text (cool-tinted) --- */
  --wsr-text:              #EFF0F4;
  --wsr-text-secondary:    #BCC1D8;
  --wsr-text-muted:        #9EA4C0;
  --wsr-text-faint:        #555876;

  /* --- Typography --- */
  --wsr-font-en:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wsr-font-ar:           'Cairo', 'Inter', sans-serif;
  --wsr-font-mono:         'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* --- Font Sizes --- */
  --wsr-text-xs:           0.75rem;
  --wsr-text-sm:           0.875rem;
  --wsr-text-base:         1rem;
  --wsr-text-lg:           1.125rem;
  --wsr-text-xl:           1.25rem;
  --wsr-text-2xl:          1.5rem;
  --wsr-text-3xl:          1.875rem;
  --wsr-text-4xl:          2.25rem;
  --wsr-text-5xl:          3rem;

  /* --- Line Heights --- */
  --wsr-leading-tight:     1.2;
  --wsr-leading-snug:      1.375;
  --wsr-leading-normal:    1.6;
  --wsr-leading-relaxed:   1.75;

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

  /* --- Border Radius --- */
  --wsr-radius-sm:         6px;
  --wsr-radius:            12px;
  --wsr-radius-md:         16px;
  --wsr-radius-lg:         20px;
  --wsr-radius-xl:         28px;
  --wsr-radius-2xl:        40px;
  --wsr-radius-full:       9999px;

  /* --- Shadows --- */
  --wsr-shadow-sm:         0 2px 8px rgba(0, 0, 0, 0.4);
  --wsr-shadow:            0 4px 24px rgba(0, 0, 0, 0.5);
  --wsr-shadow-lg:         0 8px 48px rgba(0, 0, 0, 0.6);
  --wsr-shadow-xl:         0 16px 64px rgba(0, 0, 0, 0.7);
  --wsr-shadow-yellow:     0 8px 32px rgba(10, 38, 230, 0.25);
  --wsr-shadow-yellow-lg:  0 12px 48px rgba(10, 38, 230, 0.35);

  /* --- Transitions --- */
  --wsr-ease:              cubic-bezier(0.4, 0, 0.2, 1);
  --wsr-ease-out:          cubic-bezier(0, 0, 0.2, 1);
  --wsr-ease-in:           cubic-bezier(0.4, 0, 1, 1);
  --wsr-ease-bounce:       cubic-bezier(0.34, 1.56, 0.64, 1);
  --wsr-duration-fast:     150ms;
  --wsr-duration:          250ms;
  --wsr-duration-slow:     400ms;
  --wsr-duration-xslow:    600ms;

  /* --- Layout --- */
  --wsr-navbar-height:     72px;
  --wsr-container-max:     1280px;
  --wsr-section-py:        5rem;
  --wsr-section-py-md:     3.5rem;
  --wsr-section-py-sm:     2.5rem;

  /* --- Glassmorphism --- */
  --wsr-glass-bg:          rgba(13, 13, 13, 0.85);
  --wsr-glass-border:      rgba(255, 255, 255, 0.06);
  --wsr-glass-blur:        blur(20px) saturate(180%);
  --wsr-glass-blur-sm:     blur(12px) saturate(160%);
}

/* --- Light Theme: DISABLED (site is dark-only per brand brief) --- */
/* Light-mode overrides intentionally removed to enforce premium dark theme everywhere. */

/* ==========================================================================
   2. BASE RESET & GLOBAL
   ========================================================================== */

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

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

body {
  font-family: var(--wsr-font-en);
  font-size: var(--wsr-text-base);
  line-height: var(--wsr-leading-normal);
  color: var(--wsr-text);
  background-color: var(--wsr-bg);
  padding-top: var(--wsr-navbar-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

[dir="rtl"] body,
body[dir="rtl"] {
  font-family: var(--wsr-font-ar);
}

/* --- Text Selection --- */
::selection {
  background-color: var(--wsr-yellow);
  color: #050505;
}

::-moz-selection {
  background-color: var(--wsr-yellow);
  color: #050505;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--wsr-surface);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--wsr-yellow), var(--wsr-orange));
  border-radius: var(--wsr-radius-full);
  border: 2px solid var(--wsr-surface);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--wsr-yellow);
}

::-webkit-scrollbar-corner {
  background: var(--wsr-surface);
}

/* --- Focus Outline --- */
:focus-visible {
  outline: 2px solid var(--wsr-yellow);
  outline-offset: 3px;
  border-radius: var(--wsr-radius-sm);
}

/* --- Images --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Links --- */
a {
  color: var(--wsr-yellow);
  text-decoration: none;
  transition: color var(--wsr-duration) var(--wsr-ease);
}

a:hover {
  color: var(--wsr-orange);
}

/* --- Lists --- */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- HR --- */
hr {
  border: none;
  border-top: 1px solid var(--wsr-border);
  margin: var(--wsr-space-8) 0;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wsr-font-en);
  font-weight: 700;
  line-height: var(--wsr-leading-tight);
  color: var(--wsr-text);
  letter-spacing: -0.02em;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
  font-family: var(--wsr-font-ar);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.875rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: var(--wsr-text-secondary);
  line-height: var(--wsr-leading-relaxed);
  margin-bottom: var(--wsr-space-4);
}

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

/* --- Gradient Text --- */
.gradient-text,
.text-gradient {
  background: var(--wsr-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.gradient-text-r,
.text-gradient-r {
  background: var(--wsr-gradient-r);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* --- Font Weight Utilities --- */
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

/* --- Text Color Utilities --- */
.text-muted-wsr  { color: var(--wsr-text-muted) !important; }
.text-faint      { color: var(--wsr-text-faint) !important; }
.text-yellow     { color: var(--wsr-yellow) !important; }
.text-orange     { color: var(--wsr-orange) !important; }

/* --- Lead / Subtitle --- */
.lead-wsr {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: var(--wsr-leading-relaxed);
  color: var(--wsr-text-secondary);
  font-weight: 400;
}

/* ==========================================================================
   4. NAVBAR
   ========================================================================== */

.wsr-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  height: var(--wsr-navbar-height);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: var(--wsr-glass-blur);
  -webkit-backdrop-filter: var(--wsr-glass-blur);
  border-bottom: 1px solid var(--wsr-border);
  transition: background var(--wsr-duration) var(--wsr-ease),
              box-shadow var(--wsr-duration) var(--wsr-ease);
}

.wsr-navbar.scrolled {
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(10, 38, 230, 0.08);
}

[data-theme="light"] .wsr-navbar {
  background: rgba(250, 250, 250, 0.88);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .wsr-navbar.scrolled {
  background: rgba(250, 250, 250, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.wsr-navbar .container,
.wsr-navbar .container-xl,
.wsr-navbar .container-fluid {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--wsr-space-6);
}

/* --- Logo --- */
.wsr-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity var(--wsr-duration) var(--wsr-ease);
}

.wsr-logo:hover {
  opacity: 0.9;
  color: inherit;
}

.wsr-logo .logo-ws {
  color: #F5F5F5;
}

[data-theme="light"] .wsr-logo .logo-ws {
  color: #111111;
}

.wsr-logo .logo-rank {
  background: var(--wsr-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Nav Links Container --- */
.wsr-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  flex: 1;
  justify-content: center;
}

/* --- Nav Item wrapper --- */
.wsr-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* --- Nav Link --- */
.wsr-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--wsr-space-1);
  padding: 0 var(--wsr-space-4);
  height: var(--wsr-navbar-height);
  font-size: var(--wsr-text-sm);
  font-weight: 500;
  color: rgba(245, 245, 245, 0.8);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--wsr-duration) var(--wsr-ease);
  cursor: pointer;
}

[data-theme="light"] .wsr-nav-link {
  color: rgba(17, 17, 17, 0.75);
}

.wsr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--wsr-space-4);
  right: var(--wsr-space-4);
  height: 2px;
  background: var(--wsr-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--wsr-duration) var(--wsr-ease);
  border-radius: var(--wsr-radius-full) var(--wsr-radius-full) 0 0;
}

.wsr-nav-link:hover,
.wsr-nav-link:focus-visible,
.wsr-nav-link.active {
  color: var(--wsr-yellow);
}

.wsr-nav-link:hover::after,
.wsr-nav-link.active::after {
  transform: scaleX(1);
}

.wsr-nav-link .nav-arrow {
  font-size: 0.65rem;
  transition: transform var(--wsr-duration) var(--wsr-ease);
  opacity: 0.6;
}

.wsr-nav-item:hover .nav-arrow,
.wsr-nav-item.active .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--wsr-yellow);
}

/* --- Nav Right Actions --- */
.wsr-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-3);
  flex-shrink: 0;
}

/* --- Language Switcher --- */
.wsr-lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-1);
  font-size: var(--wsr-text-sm);
  font-weight: 500;
  color: var(--wsr-text-muted);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-full);
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--wsr-duration) var(--wsr-ease);
  background: transparent;
  text-decoration: none;
}

.wsr-lang-switcher:hover {
  border-color: var(--wsr-yellow);
  color: var(--wsr-yellow);
  background: var(--wsr-yellow-dim);
}

/* --- Theme Toggle --- */
.wsr-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--wsr-radius-full);
  border: 1px solid var(--wsr-border);
  background: transparent;
  color: var(--wsr-text-muted);
  cursor: pointer;
  transition: all var(--wsr-duration) var(--wsr-ease);
  font-size: 1rem;
}

.wsr-theme-toggle:hover {
  border-color: var(--wsr-yellow);
  color: var(--wsr-yellow);
  background: var(--wsr-yellow-dim);
}

/* ==========================================================================
   5. MEGA MENU
   ========================================================================== */

.wsr-mega-wrapper {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}

.wsr-mega-menu {
  position: fixed;
  top: var(--wsr-navbar-height);
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  width: min(800px, 92vw);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(10, 38, 230, 0.1);
  border-top: 2px solid var(--wsr-yellow);
  border-radius: 0 0 var(--wsr-radius-lg) var(--wsr-radius-lg);
  padding: var(--wsr-space-6);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8),
              0 0 0 1px rgba(10, 38, 230, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--wsr-duration) var(--wsr-ease),
              visibility var(--wsr-duration) var(--wsr-ease),
              transform var(--wsr-duration) var(--wsr-ease);
  z-index: 1049;
}

[data-theme="light"] .wsr-mega-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 140, 0, 0.15);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.wsr-mega-wrapper:hover .wsr-mega-menu,
.wsr-mega-wrapper:focus-within .wsr-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.wsr-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wsr-space-6);
}

.wsr-mega-col {
  display: flex;
  flex-direction: column;
  gap: var(--wsr-space-1);
}

.wsr-mega-col h6 {
  font-size: var(--wsr-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wsr-yellow);
  margin-bottom: var(--wsr-space-3);
  padding-bottom: var(--wsr-space-2);
  border-bottom: 1px solid var(--wsr-border);
}

.wsr-mega-link {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-2);
  padding: var(--wsr-space-2) var(--wsr-space-3);
  font-size: var(--wsr-text-sm);
  font-weight: 500;
  color: rgba(245, 245, 245, 0.75);
  border-radius: var(--wsr-radius-sm);
  text-decoration: none;
  transition: all var(--wsr-duration) var(--wsr-ease);
  border: 1px solid transparent;
}

[data-theme="light"] .wsr-mega-link {
  color: rgba(17, 17, 17, 0.7);
}

.wsr-mega-link::before {
  content: '›';
  color: var(--wsr-yellow);
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--wsr-duration) var(--wsr-ease);
  flex-shrink: 0;
}

.wsr-mega-link:hover {
  color: var(--wsr-yellow);
  background: rgba(10, 38, 230, 0.06);
  border-color: rgba(10, 38, 230, 0.1);
  padding-left: calc(var(--wsr-space-3) + 4px);
}

.wsr-mega-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.wsr-mega-divider {
  width: 1px;
  background: var(--wsr-border);
  margin: 0 var(--wsr-space-2);
  align-self: stretch;
}

/* Industries mega menu */
.wsr-mega-menu--industries {
  width: min(860px, 92vw);
}

/* ==========================================================================
   6. MOBILE NAV
   ========================================================================== */

.wsr-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: border-color var(--wsr-duration) var(--wsr-ease);
  flex-shrink: 0;
}

.wsr-hamburger:hover {
  border-color: var(--wsr-yellow);
}

.wsr-hamburger span {
  display: block;
  height: 2px;
  background: var(--wsr-text);
  border-radius: 2px;
  transition: all var(--wsr-duration) var(--wsr-ease);
}

.wsr-hamburger span:nth-child(1) { width: 20px; }
.wsr-hamburger span:nth-child(2) { width: 16px; }
.wsr-hamburger span:nth-child(3) { width: 12px; }

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

.wsr-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile Drawer */
.wsr-mobile-menu {
  position: fixed;
  top: var(--wsr-navbar-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1040;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--wsr-duration-slow) var(--wsr-ease);
  padding: var(--wsr-space-6) var(--wsr-space-5);
  border-top: 1px solid var(--wsr-border);
}

[data-theme="light"] .wsr-mobile-menu {
  background: rgba(250, 250, 250, 0.98);
}

.wsr-mobile-menu.open {
  transform: translateX(0);
}

.wsr-nav-backdrop,
.wsr-mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1039;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--wsr-duration) var(--wsr-ease),
              visibility var(--wsr-duration) var(--wsr-ease);
}

.wsr-nav-backdrop.show,
.wsr-mobile-menu-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.wsr-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--wsr-space-4) var(--wsr-space-3);
  font-size: var(--wsr-text-lg);
  font-weight: 600;
  color: var(--wsr-text);
  text-decoration: none;
  border-bottom: 1px solid var(--wsr-border);
  transition: color var(--wsr-duration) var(--wsr-ease);
  min-height: 56px;
}

.wsr-mobile-nav-link:hover {
  color: var(--wsr-yellow);
}

.wsr-mobile-nav-link.active {
  color: var(--wsr-yellow);
}

.wsr-mobile-sub-links {
  display: none;
  padding: var(--wsr-space-3) 0 var(--wsr-space-3) var(--wsr-space-5);
  border-bottom: 1px solid var(--wsr-border);
}

.wsr-mobile-sub-links.open {
  display: block;
}

.wsr-mobile-sub-group {
  margin-bottom: var(--wsr-space-4);
}

.wsr-mobile-sub-group h6 {
  font-size: var(--wsr-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wsr-yellow);
  margin-bottom: var(--wsr-space-2);
}

.wsr-mobile-sub-link {
  display: flex;
  align-items: center;
  padding: var(--wsr-space-2) var(--wsr-space-3);
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-secondary);
  text-decoration: none;
  border-radius: var(--wsr-radius-sm);
  transition: all var(--wsr-duration) var(--wsr-ease);
  min-height: 44px;
}

.wsr-mobile-sub-link:hover {
  color: var(--wsr-yellow);
  background: var(--wsr-yellow-dim);
}

.wsr-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--wsr-space-3);
  margin-top: var(--wsr-space-6);
  padding-top: var(--wsr-space-6);
  border-top: 1px solid var(--wsr-border);
}

/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

/* Shared button base */
.btn-wsr-primary,
.btn-wsr-outline,
.btn-wsr-ghost,
.btn-wsr-cta,
.btn-wsr-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wsr-space-2);
  min-height: 48px;
  padding: 13px 28px;
  font-size: var(--wsr-text-sm);
  font-weight: 700;
  font-family: var(--wsr-font-en);
  letter-spacing: 0.01em;
  border-radius: var(--wsr-radius-full);
  border: none;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--wsr-duration) var(--wsr-ease);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

/* --- Primary Button --- */
.btn-wsr-primary {
  background: var(--wsr-gradient);
  color: #050505;
  box-shadow: 0 4px 20px rgba(10, 38, 230, 0.2);
}

.btn-wsr-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%);
  transform: skewX(-20deg);
}

.btn-wsr-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--wsr-shadow-yellow-lg);
  color: #050505;
}

.btn-wsr-primary:hover::after {
  animation: shimmer 0.6s ease forwards;
}

.btn-wsr-primary:active {
  transform: translateY(0);
}

.btn-wsr-primary.glow {
  animation: glowPulse 2.5s ease-in-out infinite;
}

/* --- Outline Button --- */
.btn-wsr-outline {
  background: transparent;
  color: var(--wsr-yellow);
  border: 1.5px solid var(--wsr-yellow);
}

.btn-wsr-outline:hover {
  background: var(--wsr-yellow-dim);
  border-color: var(--wsr-yellow);
  color: var(--wsr-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10, 38, 230, 0.15);
}

/* Gradient border outline variant */
.btn-wsr-outline-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wsr-space-2);
  min-height: 48px;
  padding: 13px 28px;
  font-size: var(--wsr-text-sm);
  font-weight: 700;
  font-family: var(--wsr-font-en);
  border-radius: var(--wsr-radius-full);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  background: var(--wsr-bg);
  color: var(--wsr-yellow);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all var(--wsr-duration) var(--wsr-ease);
}

.btn-wsr-outline-gradient::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: var(--wsr-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-wsr-outline-gradient:hover {
  background: var(--wsr-gradient);
  color: #050505;
  transform: translateY(-2px);
  box-shadow: var(--wsr-shadow-yellow);
}

/* --- Ghost Button --- */
.btn-wsr-ghost {
  background: transparent;
  color: var(--wsr-text-secondary);
  border: none;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: var(--wsr-radius-sm);
}

.btn-wsr-ghost .arrow {
  display: inline-block;
  transition: transform var(--wsr-duration) var(--wsr-ease-bounce);
}

.btn-wsr-ghost:hover {
  color: var(--wsr-yellow);
}

.btn-wsr-ghost:hover .arrow {
  transform: translateX(5px);
}

/* --- CTA Button (large) --- */
.btn-wsr-cta {
  background: #050505;
  color: var(--wsr-yellow);
  font-size: var(--wsr-text-base);
  padding: 16px 40px;
  min-height: 56px;
  border: 2px solid rgba(5, 5, 5, 0.3);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-wsr-cta:hover {
  background: rgba(5, 5, 5, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: var(--wsr-yellow);
}

/* --- White Button --- */
.btn-wsr-white {
  background: #ffffff;
  color: #111111;
  font-weight: 700;
}

.btn-wsr-white:hover {
  background: #f0f0f0;
  color: #050505;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
}

/* --- Button Sizes --- */
.btn-wsr-sm {
  min-height: 36px;
  padding: 8px 20px;
  font-size: var(--wsr-text-xs);
  border-radius: var(--wsr-radius-full);
}

.btn-wsr-lg {
  min-height: 56px;
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: var(--wsr-radius-full);
}

/* WhatsApp Nav Button */
.btn-wsr-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: var(--wsr-space-2);
  min-height: 44px;
  padding: 10px 18px;
  font-size: var(--wsr-text-sm);
  font-weight: 600;
  color: #fff;
  background: #25D366;
  border-radius: var(--wsr-radius-full);
  text-decoration: none;
  transition: all var(--wsr-duration) var(--wsr-ease);
  white-space: nowrap;
}

.btn-wsr-whatsapp-nav:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.wsr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--wsr-bg);
}

.wsr-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 38, 230, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 38, 230, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.wsr-hero-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    transparent 40%,
    var(--wsr-bg) 100%);
}

.wsr-hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(10, 38, 230, 0.12) 0%,
    rgba(141, 90, 116, 0.06) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

.wsr-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.wsr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--wsr-space-2);
  padding: 6px 16px 6px 8px;
  background: rgba(10, 38, 230, 0.1);
  border: 1px solid rgba(10, 38, 230, 0.25);
  border-radius: var(--wsr-radius-full);
  font-size: var(--wsr-text-xs);
  font-weight: 600;
  color: var(--wsr-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--wsr-space-6);
}

.wsr-hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--wsr-yellow);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

.wsr-hero-stats {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-8);
  margin-top: var(--wsr-space-10);
  padding-top: var(--wsr-space-8);
  border-top: 1px solid var(--wsr-border);
}

.wsr-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wsr-hero-stat-num {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  background: var(--wsr-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wsr-hero-stat-label {
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-muted);
  font-weight: 500;
}

.wsr-hero-divider {
  width: 1px;
  height: 40px;
  background: var(--wsr-border);
}

/* Floating UI elements */
.wsr-hero-float-card {
  position: absolute;
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-md);
  padding: var(--wsr-space-4);
  box-shadow: var(--wsr-shadow-lg);
  animation: float 5s ease-in-out infinite;
  z-index: 1;
}

.wsr-hero-float-card:nth-child(even) {
  animation-delay: -2.5s;
}

/* ==========================================================================
   9. SECTIONS
   ========================================================================== */

.wsr-section {
  padding: var(--wsr-section-py) 0;
  position: relative;
}

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

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

.wsr-section-surface2 {
  background-color: var(--wsr-surface-2);
}

/* Section Header */
.wsr-section-title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.wsr-section-title .subtitle {
  display: inline-flex;
  align-items: center;
  gap: var(--wsr-space-2);
  font-size: var(--wsr-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wsr-yellow);
  margin-bottom: var(--wsr-space-4);
}

.wsr-section-title .subtitle::before,
.wsr-section-title .subtitle::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--wsr-gradient);
}

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

.wsr-section-title .description {
  max-width: 580px;
  margin: 0 auto;
  color: var(--wsr-text-muted);
  font-size: var(--wsr-text-lg);
  line-height: var(--wsr-leading-relaxed);
}

/* Section divider */
.wsr-section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(10, 38, 230, 0.15) 30%,
    rgba(10, 38, 230, 0.15) 70%,
    transparent 100%);
}

/* CTA Band */
.wsr-cta-band {
  background: var(--wsr-gradient);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.wsr-cta-band h2 {
  color: #ffffff;
  margin-bottom: var(--wsr-space-4);
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.wsr-cta-band p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* ==========================================================================
   10. CARDS
   ========================================================================== */

.wsr-card {
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-lg);
  padding: var(--wsr-space-6);
  transition: all var(--wsr-duration-slow) var(--wsr-ease);
  position: relative;
  overflow: hidden;
}

.wsr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--wsr-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;                                /* C5.1 fix: don't intercept clicks on cards (was blocking inputs in login form etc.) */
  transition: opacity var(--wsr-duration) var(--wsr-ease);
}

.wsr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wsr-shadow-lg);
  border-color: rgba(10, 38, 230, 0.15);
}

.wsr-card:hover::before {
  opacity: 1;
}

/* Glass Card */
.wsr-card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: var(--wsr-glass-blur-sm);
  -webkit-backdrop-filter: var(--wsr-glass-blur-sm);
  border: 1px solid rgba(10, 38, 230, 0.08);
  border-radius: var(--wsr-radius-lg);
  padding: var(--wsr-space-6);
  transition: all var(--wsr-duration-slow) var(--wsr-ease);
}

.wsr-card-glass:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(10, 38, 230, 0.18);
  transform: translateY(-4px);
}

/* Service Card */
.wsr-service-card {
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-lg);
  padding: var(--wsr-space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--wsr-duration-slow) var(--wsr-ease);
  cursor: pointer;
  height: 100%;
}

.wsr-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wsr-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--wsr-duration-slow) var(--wsr-ease);
}

.wsr-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 38, 230, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--wsr-yellow-glow);
}

.wsr-service-card:hover::after {
  transform: scaleX(1);
}

.wsr-service-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wsr-yellow-dim);
  border: 1px solid rgba(10, 38, 230, 0.2);
  border-radius: var(--wsr-radius);
  font-size: 1.75rem;
  color: var(--wsr-yellow);
  margin-bottom: var(--wsr-space-5);
  transition: all var(--wsr-duration) var(--wsr-ease);
}

.wsr-service-card:hover .wsr-service-card-icon {
  background: var(--wsr-gradient);
  color: #050505;
  border-color: transparent;
  box-shadow: var(--wsr-shadow-yellow);
}

.wsr-service-card h3,
.wsr-service-card h4 {
  margin-bottom: var(--wsr-space-3);
}

.wsr-service-card p {
  margin-bottom: var(--wsr-space-5);
}

/* Industry Card */
.wsr-industry-card {
  background: var(--wsr-surface-2);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-md);
  padding: var(--wsr-space-5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--wsr-space-3);
  transition: all var(--wsr-duration) var(--wsr-ease);
  text-decoration: none;
  color: var(--wsr-text);
  height: 100%;
}

.wsr-industry-card:hover {
  border-color: rgba(10, 38, 230, 0.2);
  background: var(--wsr-surface-3);
  transform: translateY(-3px);
  box-shadow: var(--wsr-shadow);
  color: var(--wsr-text);
}

.wsr-industry-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wsr-yellow-dim);
  border-radius: var(--wsr-radius);
  font-size: 1.375rem;
  color: var(--wsr-yellow);
}

/* Result Card */
.wsr-result-card {
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-lg);
  padding: var(--wsr-space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--wsr-duration-slow) var(--wsr-ease);
}

.wsr-result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left,
    rgba(10, 38, 230, 0.04) 0%,
    transparent 60%);
  pointer-events: none;
}

.wsr-result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 38, 230, 0.2);
  box-shadow: var(--wsr-shadow-xl);
}

.wsr-metric-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--wsr-space-1);
  padding: 4px 12px;
  background: rgba(10, 38, 230, 0.1);
  border: 1px solid rgba(10, 38, 230, 0.25);
  border-radius: var(--wsr-radius-full);
  font-size: var(--wsr-text-sm);
  font-weight: 700;
  color: var(--wsr-yellow);
  margin-bottom: var(--wsr-space-4);
}

/* Process Card */
.wsr-process-card {
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-lg);
  padding: var(--wsr-space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--wsr-duration-slow) var(--wsr-ease);
}

.wsr-process-card .step-number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(10, 38, 230, 0.04);
  pointer-events: none;
  transition: color var(--wsr-duration-slow) var(--wsr-ease);
}

.wsr-process-card:hover .step-number {
  color: rgba(10, 38, 230, 0.07);
}

.wsr-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 38, 230, 0.15);
  box-shadow: var(--wsr-shadow-lg);
}

.wsr-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--wsr-gradient);
  color: #050505;
  font-weight: 800;
  font-size: var(--wsr-text-sm);
  border-radius: var(--wsr-radius-full);
  margin-bottom: var(--wsr-space-4);
  flex-shrink: 0;
}

/* ==========================================================================
   11. TRUST STRIP
   ========================================================================== */

.wsr-trust-strip {
  padding: var(--wsr-space-5) 0;
  border-top: 1px solid var(--wsr-border);
  border-bottom: 1px solid var(--wsr-border);
  background: var(--wsr-surface);
  overflow: hidden;
}

.wsr-trust-inner {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-10);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 var(--wsr-space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.wsr-trust-inner::-webkit-scrollbar {
  display: none;
}

.wsr-trust-item {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-2);
  flex-shrink: 0;
  font-size: var(--wsr-text-sm);
  font-weight: 600;
  color: var(--wsr-text-muted);
  white-space: nowrap;
  transition: color var(--wsr-duration) var(--wsr-ease);
}

.wsr-trust-item:hover {
  color: var(--wsr-text-secondary);
}

.wsr-trust-item .trust-icon {
  color: var(--wsr-yellow);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.wsr-trust-divider {
  width: 1px;
  height: 20px;
  background: var(--wsr-border);
  flex-shrink: 0;
}

/* ==========================================================================
   12. FORMS
   ========================================================================== */

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

.wsr-form-label {
  display: block;
  font-size: var(--wsr-text-sm);
  font-weight: 600;
  color: var(--wsr-text-muted);
  margin-bottom: var(--wsr-space-2);
  letter-spacing: 0.01em;
}

.wsr-form-label .required {
  color: var(--wsr-yellow);
  margin-left: 3px;
}

.wsr-form-control {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  font-size: var(--wsr-text-base);
  font-family: var(--wsr-font-en);
  color: var(--wsr-text);
  background-color: var(--wsr-surface-2);
  border: 1.5px solid var(--wsr-border);
  border-radius: var(--wsr-radius);
  transition: border-color var(--wsr-duration) var(--wsr-ease),
              box-shadow var(--wsr-duration) var(--wsr-ease),
              background-color var(--wsr-duration) var(--wsr-ease);
  -webkit-appearance: none;
  appearance: none;
}

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

.wsr-form-control:focus {
  outline: none;
  border-color: var(--wsr-yellow);
  box-shadow: 0 0 0 3px rgba(10, 38, 230, 0.12);
  background-color: var(--wsr-surface-3);
}

.wsr-form-control:hover:not(:focus) {
  border-color: rgba(10, 38, 230, 0.2);
}

[data-theme="light"] .wsr-form-control {
  background-color: #fff;
  color: #111;
  border-color: rgba(0,0,0,0.12);
}

[data-theme="light"] .wsr-form-control:focus {
  background-color: #fff;
}

.wsr-form-select {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 14px 44px 14px 18px;
  font-size: var(--wsr-text-base);
  font-family: var(--wsr-font-en);
  color: var(--wsr-text);
  background-color: var(--wsr-surface-2);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFD400' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 12px;
  border: 1.5px solid var(--wsr-border);
  border-radius: var(--wsr-radius);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--wsr-duration) var(--wsr-ease),
              box-shadow var(--wsr-duration) var(--wsr-ease);
}

.wsr-form-select:focus {
  outline: none;
  border-color: var(--wsr-yellow);
  box-shadow: 0 0 0 3px rgba(10, 38, 230, 0.12);
}

textarea.wsr-form-control {
  min-height: 140px;
  resize: vertical;
  line-height: var(--wsr-leading-relaxed);
}

.wsr-form-feedback {
  font-size: var(--wsr-text-xs);
  margin-top: var(--wsr-space-2);
}

.wsr-form-feedback.valid  { color: #22c55e; }
.wsr-form-feedback.invalid { color: #ef4444; }

/* Newsletter inline form */
.wsr-newsletter-form {
  display: flex;
  gap: var(--wsr-space-2);
  align-items: stretch;
}

.wsr-newsletter-form .wsr-form-control {
  border-radius: var(--wsr-radius-full);
  min-height: 46px;
  flex: 1;
}

.wsr-newsletter-form .btn-wsr-primary {
  min-height: 46px;
  padding: 10px 20px;
  font-size: var(--wsr-text-sm);
  flex-shrink: 0;
}

/* ==========================================================================
   13. FAQ ACCORDION
   ========================================================================== */

.wsr-faq {
  max-width: 780px;
  margin: 0 auto;
}

.wsr-faq-item {
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius);
  margin-bottom: var(--wsr-space-3);
  overflow: hidden;
  transition: border-color var(--wsr-duration) var(--wsr-ease);
}

.wsr-faq-item.open {
  border-color: rgba(10, 38, 230, 0.2);
}

.wsr-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wsr-space-4);
  padding: var(--wsr-space-5) var(--wsr-space-6);
  font-size: var(--wsr-text-base);
  font-weight: 600;
  color: var(--wsr-text);
  cursor: pointer;
  transition: color var(--wsr-duration) var(--wsr-ease);
  min-height: 64px;
  -webkit-user-select: none;
  user-select: none;
}

.wsr-faq-question:hover {
  color: var(--wsr-yellow);
}

.wsr-faq-item.open .wsr-faq-question {
  color: var(--wsr-yellow);
}

.wsr-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 38, 230, 0.3);
  color: var(--wsr-yellow);
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  transition: all var(--wsr-duration) var(--wsr-ease);
  font-weight: 300;
}

.wsr-faq-item.open .wsr-faq-icon {
  background: var(--wsr-yellow);
  color: #050505;
  border-color: var(--wsr-yellow);
  transform: rotate(45deg);
}

.wsr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--wsr-duration-slow) var(--wsr-ease);
}

.wsr-faq-item.open .wsr-faq-answer {
  max-height: 600px;
}

.wsr-faq-answer-inner {
  padding: 0 var(--wsr-space-6) var(--wsr-space-5);
  color: var(--wsr-text-muted);
  line-height: var(--wsr-leading-relaxed);
  border-top: 1px solid var(--wsr-border);
  padding-top: var(--wsr-space-4);
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */

.wsr-footer {
  background: #080808;
  border-top: 1px solid var(--wsr-border);
  padding: clamp(3.5rem, 7vw, 6rem) 0 0;
}

[data-theme="light"] .wsr-footer {
  background: #f0f0f0;
}

.wsr-footer-brand p {
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-muted);
  line-height: var(--wsr-leading-relaxed);
  margin: var(--wsr-space-4) 0;
}

.wsr-footer-heading {
  font-size: var(--wsr-text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wsr-yellow);
  margin-bottom: var(--wsr-space-5);
}

.wsr-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--wsr-space-2);
}

.wsr-footer-link {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-2);
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: all var(--wsr-duration) var(--wsr-ease);
  min-height: 36px;
}

.wsr-footer-link::before {
  content: '›';
  color: var(--wsr-yellow);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--wsr-duration) var(--wsr-ease);
  font-size: 1rem;
}

.wsr-footer-link:hover {
  color: var(--wsr-yellow);
  padding-left: var(--wsr-space-4);
}

.wsr-footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Social Icons */
.wsr-footer-social {
  display: flex;
  gap: var(--wsr-space-2);
  flex-wrap: wrap;
}

.wsr-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--wsr-surface-2);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius);
  color: var(--wsr-text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--wsr-duration) var(--wsr-ease);
}

.wsr-footer-social-link:hover {
  background: var(--wsr-yellow);
  border-color: var(--wsr-yellow);
  color: #050505;
  transform: translateY(-2px);
  box-shadow: var(--wsr-shadow-yellow);
}

/* Footer contact info */
.wsr-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--wsr-space-3);
  margin-bottom: var(--wsr-space-3);
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-muted);
}

.wsr-footer-contact-item .icon {
  color: var(--wsr-yellow);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.wsr-footer-contact-item a {
  color: var(--wsr-text-muted);
  transition: color var(--wsr-duration) var(--wsr-ease);
}

.wsr-footer-contact-item a:hover {
  color: var(--wsr-yellow);
}

/* Footer Bottom */
.wsr-footer-bottom {
  border-top: 1px solid var(--wsr-border);
  padding: var(--wsr-space-5) 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wsr-space-4);
  flex-wrap: wrap;
}

.wsr-footer-bottom-text {
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-faint);
}

.wsr-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-4);
  flex-wrap: wrap;
}

.wsr-footer-bottom-link {
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-faint);
  text-decoration: none;
  transition: color var(--wsr-duration) var(--wsr-ease);
}

.wsr-footer-bottom-link:hover {
  color: var(--wsr-yellow);
}

/* ==========================================================================
   15. BREADCRUMB
   ========================================================================== */

.wsr-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--wsr-space-1);
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-muted);
  padding: var(--wsr-space-3) 0;
}

.wsr-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-1);
}

.wsr-breadcrumb-link {
  color: var(--wsr-text-muted);
  text-decoration: none;
  transition: color var(--wsr-duration) var(--wsr-ease);
}

.wsr-breadcrumb-link:hover {
  color: var(--wsr-yellow);
}

.wsr-breadcrumb-separator {
  color: var(--wsr-yellow);
  font-size: 1rem;
  line-height: 1;
  opacity: 0.7;
  margin: 0 2px;
}

.wsr-breadcrumb-current {
  color: var(--wsr-text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   16. BADGES & PILLS
   ========================================================================== */

.wsr-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--wsr-space-1);
  padding: 3px 10px;
  background: var(--wsr-yellow);
  color: #050505;
  font-size: var(--wsr-text-xs);
  font-weight: 700;
  border-radius: var(--wsr-radius-full);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.wsr-badge-outline {
  background: transparent;
  color: var(--wsr-yellow);
  border: 1.5px solid var(--wsr-yellow);
}

.wsr-badge-dim {
  background: var(--wsr-yellow-dim);
  color: var(--wsr-yellow);
  border: 1px solid rgba(10, 38, 230, 0.2);
}

.wsr-badge-orange {
  background: var(--wsr-orange);
  color: #050505;
}

.wsr-badge-green {
  background: #22c55e;
  color: #050505;
}

.wsr-badge-red {
  background: #ef4444;
  color: #fff;
}

.wsr-badge-surface {
  background: var(--wsr-surface-2);
  color: var(--wsr-text-muted);
  border: 1px solid var(--wsr-border);
}

/* Tag pills */
.wsr-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--wsr-space-1);
  padding: 5px 12px;
  background: var(--wsr-surface-2);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-full);
  font-size: var(--wsr-text-xs);
  font-weight: 500;
  color: var(--wsr-text-muted);
  white-space: nowrap;
  transition: all var(--wsr-duration) var(--wsr-ease);
}

.wsr-tag:hover {
  border-color: rgba(10, 38, 230, 0.3);
  color: var(--wsr-yellow);
  background: var(--wsr-yellow-dim);
}

.wsr-tag-yellow {
  background: rgba(10, 38, 230, 0.08);
  border-color: rgba(10, 38, 230, 0.2);
  color: var(--wsr-yellow);
}

/* ==========================================================================
   17. FLASH MESSAGES / ALERTS
   ========================================================================== */

.wsr-alert {
  display: flex;
  align-items: flex-start;
  gap: var(--wsr-space-3);
  padding: var(--wsr-space-4) var(--wsr-space-5);
  border-radius: var(--wsr-radius);
  border: 1px solid transparent;
  font-size: var(--wsr-text-sm);
  margin-bottom: var(--wsr-space-4);
  position: relative;
}

.wsr-alert-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.wsr-alert-close {
  position: absolute;
  top: var(--wsr-space-3);
  right: var(--wsr-space-4);
  background: none;
  border: none;
  cursor: pointer;
  color: currentColor;
  opacity: 0.6;
  font-size: 1rem;
  padding: 4px;
  transition: opacity var(--wsr-duration) var(--wsr-ease);
}

.wsr-alert-close:hover { opacity: 1; }

.wsr-alert-success {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.wsr-alert-error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.wsr-alert-warning {
  background: rgba(10, 38, 230, 0.08);
  border-color: rgba(10, 38, 230, 0.2);
  color: var(--wsr-yellow);
}

.wsr-alert-info {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

/* ==========================================================================
   18. WHATSAPP FLOATING BUTTON
   ========================================================================== */

.wsr-whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--wsr-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.625rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all var(--wsr-duration) var(--wsr-ease);
  animation: waBounce 3s ease-in-out 2s infinite;
}

.wsr-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  color: #fff;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  animation: none;
}

.wsr-whatsapp-btn .wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #25D366;
  color: #fff;
  font-size: var(--wsr-text-xs);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--wsr-radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--wsr-duration) var(--wsr-ease);
  pointer-events: none;
  top: 50%;
  margin-top: -14px;
}

.wsr-whatsapp-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wsr-whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: waRipple 2.5s ease-out infinite;
}

[dir="rtl"] .wsr-whatsapp-btn {
  right: auto;
  left: 32px;
}

[dir="rtl"] .wsr-whatsapp-btn .wa-tooltip {
  right: auto;
  left: calc(100% + 12px);
  transform: translateX(-8px);
}

[dir="rtl"] .wsr-whatsapp-btn:hover .wa-tooltip {
  transform: translateX(0);
}

/* ==========================================================================
   19. COUNTER ANIMATION
   ========================================================================== */

.wsr-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.wsr-counter-wrap {
  text-align: center;
  padding: var(--wsr-space-6);
}

.wsr-counter-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  background: var(--wsr-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wsr-counter-label {
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-muted);
  font-weight: 500;
  margin-top: var(--wsr-space-2);
}

/* ==========================================================================
   20. ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(10, 38, 230, 0.25);
  }
  50% {
    box-shadow: 0 0 50px rgba(10, 38, 230, 0.5), 0 0 80px rgba(141, 90, 116, 0.2);
  }
}

@keyframes heroGlowPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.7;
  }
  33% {
    transform: translateX(-50%) scale(1.08) translateY(-10px);
    opacity: 1;
  }
  66% {
    transform: translateX(-50%) scale(0.95) translateY(8px);
    opacity: 0.85;
  }
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 160%; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

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

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  20%       { transform: translateY(-8px); }
  40%       { transform: translateY(0); }
  60%       { transform: translateY(-4px); }
  80%       { transform: translateY(0); }
}

@keyframes waRipple {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

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

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* --- Animate on Scroll --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--wsr-duration-xslow) var(--wsr-ease-out),
              transform var(--wsr-duration-xslow) var(--wsr-ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes for staggered animations */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* Static entrance utilities */
.fade-in-up    { animation: fadeInUp 0.6s var(--wsr-ease-out) both; }
.fade-in       { animation: fadeIn 0.5s var(--wsr-ease-out) both; }
.slide-in-right { animation: slideInRight 0.5s var(--wsr-ease-out) both; }

/* ==========================================================================
   21. UTILITY CLASSES
   ========================================================================== */

.gap-wsr-1 { gap: var(--wsr-space-1); }
.gap-wsr-2 { gap: var(--wsr-space-2); }
.gap-wsr-3 { gap: var(--wsr-space-3); }
.gap-wsr-4 { gap: var(--wsr-space-4); }
.gap-wsr-6 { gap: var(--wsr-space-6); }
.gap-wsr-8 { gap: var(--wsr-space-8); }

.border-yellow  { border-color: rgba(10, 38, 230, 0.2) !important; }
.border-subtle  { border-color: var(--wsr-border) !important; }

.bg-wsr-surface  { background-color: var(--wsr-surface) !important; }
.bg-wsr-surface2 { background-color: var(--wsr-surface-2) !important; }
.bg-wsr-card     { background-color: var(--wsr-card-bg) !important; }
.bg-gradient-wsr { background: var(--wsr-gradient) !important; }

.rounded-wsr    { border-radius: var(--wsr-radius) !important; }
.rounded-wsr-lg { border-radius: var(--wsr-radius-lg) !important; }
.rounded-wsr-xl { border-radius: var(--wsr-radius-xl) !important; }

.overflow-hidden { overflow: hidden; }
.aspect-video    { aspect-ratio: 16/9; }
.aspect-square   { aspect-ratio: 1/1; }
.aspect-4x3      { aspect-ratio: 4/3; }

.wsr-divider-y {
  width: 1px;
  align-self: stretch;
  background: var(--wsr-border);
}

.highlight {
  position: relative;
  display: inline;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: rgba(10, 38, 230, 0.15);
  z-index: -1;
  border-radius: 2px;
}

.wsr-icon-row {
  display: flex;
  align-items: flex-start;
  gap: var(--wsr-space-3);
}

.wsr-icon-row .icon {
  color: var(--wsr-yellow);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.wsr-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--wsr-space-2);
}

.wsr-check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--wsr-space-3);
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text-secondary);
  line-height: var(--wsr-leading-relaxed);
}

.wsr-check-list li::before {
  content: '\2713';
  width: 20px;
  height: 20px;
  background: rgba(10, 38, 230, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--wsr-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.wsr-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--wsr-gradient);
  color: #050505;
  font-size: var(--wsr-text-sm);
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.wsr-skeleton {
  background: linear-gradient(90deg,
    var(--wsr-surface-2) 25%,
    var(--wsr-surface-3) 50%,
    var(--wsr-surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--wsr-radius-sm);
}

.wsr-img-hover {
  overflow: hidden;
  border-radius: var(--wsr-radius-lg);
}

.wsr-img-hover img {
  transition: transform var(--wsr-duration-slow) var(--wsr-ease);
}

.wsr-img-hover:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   22. RTL SUPPORT
   ========================================================================== */

[dir="rtl"] {
  font-family: var(--wsr-font-ar);
}

[dir="rtl"] .wsr-nav-links {
  direction: rtl;
}

[dir="rtl"] .wsr-mega-menu {
  left: auto;
  right: 50%;
  transform: translateX(50%) translateY(-12px);
}

[dir="rtl"] .wsr-mega-wrapper:hover .wsr-mega-menu,
[dir="rtl"] .wsr-mega-wrapper:focus-within .wsr-mega-menu {
  transform: translateX(50%) translateY(0);
}

[dir="rtl"] .wsr-footer-link {
  padding-left: 0;
}

[dir="rtl"] .wsr-footer-link::before {
  content: '\2039';
}

[dir="rtl"] .wsr-footer-link:hover {
  padding-right: var(--wsr-space-4);
  padding-left: 0;
}

[dir="rtl"] .wsr-mega-link {
  flex-direction: row-reverse;
}

[dir="rtl"] .wsr-mega-link::before {
  content: '\2039';
}

[dir="rtl"] .btn-wsr-ghost:hover .arrow {
  transform: translateX(-5px);
}

[dir="rtl"] .wsr-section-title .subtitle::before,
[dir="rtl"] .wsr-section-title .subtitle::after {
  content: '';
}

[dir="rtl"] .wsr-breadcrumb {
  direction: rtl;
}

[dir="rtl"] .wsr-form-select {
  background-position: left 14px center;
  padding-left: 44px;
  padding-right: 18px;
}

[dir="rtl"] .wsr-newsletter-form {
  flex-direction: row-reverse;
}

/* ==========================================================================
   23. LIGHT THEME OVERRIDES
   ========================================================================== */

[data-theme="light"] .wsr-card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

[data-theme="light"] .wsr-card-glass {
  background: rgba(255,255,255,0.7);
}

[data-theme="light"] .wsr-service-card,
[data-theme="light"] .wsr-result-card,
[data-theme="light"] .wsr-process-card {
  background: #fff;
}

[data-theme="light"] .wsr-industry-card {
  background: #f5f5f5;
}

[data-theme="light"] .wsr-faq-item {
  background: #fff;
}

[data-theme="light"] .wsr-trust-strip {
  background: #f5f5f5;
}

[data-theme="light"] .wsr-hero {
  background-color: #FAFAFA;
}

[data-theme="light"] .wsr-hero-grid {
  background-image:
    linear-gradient(rgba(255,140,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,140,0,0.06) 1px, transparent 1px);
}

[data-theme="light"] .wsr-mobile-menu {
  background: rgba(250, 250, 250, 0.98);
}

[data-theme="light"] .wsr-mobile-nav-link {
  color: #111;
}

/* ==========================================================================
   24. PORTFOLIO / PROJECT CARDS
   ========================================================================== */

.wsr-portfolio-card {
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-lg);
  overflow: hidden;
  transition: all var(--wsr-duration-slow) var(--wsr-ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--wsr-text);
}

.wsr-portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 38, 230, 0.2);
  box-shadow: var(--wsr-shadow-xl), var(--wsr-yellow-glow);
  color: var(--wsr-text);
}

.wsr-portfolio-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.wsr-portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wsr-duration-slow) var(--wsr-ease);
}

.wsr-portfolio-card:hover .wsr-portfolio-card-img img {
  transform: scale(1.06);
}

.wsr-portfolio-card-body {
  padding: var(--wsr-space-5) var(--wsr-space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   25. BLOG CARD
   ========================================================================== */

.wsr-blog-card {
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-lg);
  overflow: hidden;
  transition: all var(--wsr-duration-slow) var(--wsr-ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--wsr-text);
}

.wsr-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 38, 230, 0.15);
  box-shadow: var(--wsr-shadow-lg);
  color: var(--wsr-text);
}

.wsr-blog-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.wsr-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wsr-duration-slow) var(--wsr-ease);
}

.wsr-blog-card:hover .wsr-blog-card-img img {
  transform: scale(1.04);
}

.wsr-blog-card-body {
  padding: var(--wsr-space-5) var(--wsr-space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wsr-blog-meta {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-3);
  font-size: var(--wsr-text-xs);
  color: var(--wsr-text-muted);
  margin-bottom: var(--wsr-space-3);
}

/* ==========================================================================
   26. TESTIMONIAL CARD
   ========================================================================== */

.wsr-testimonial-card {
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-lg);
  padding: var(--wsr-space-8);
  position: relative;
  transition: all var(--wsr-duration-slow) var(--wsr-ease);
  height: 100%;
}

.wsr-testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--wsr-space-4);
  right: var(--wsr-space-6);
  font-size: 5rem;
  line-height: 1;
  color: rgba(10, 38, 230, 0.08);
  font-family: Georgia, serif;
  font-weight: 900;
}

[dir="rtl"] .wsr-testimonial-card::before {
  right: auto;
  left: var(--wsr-space-6);
}

.wsr-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 38, 230, 0.15);
  box-shadow: var(--wsr-shadow-lg);
}

.wsr-stars {
  display: flex;
  gap: 3px;
  color: var(--wsr-yellow);
  font-size: 0.875rem;
  margin-bottom: var(--wsr-space-4);
}

.wsr-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--wsr-space-3);
  margin-top: var(--wsr-space-5);
  padding-top: var(--wsr-space-5);
  border-top: 1px solid var(--wsr-border);
}

.wsr-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(10, 38, 230, 0.2);
  flex-shrink: 0;
}

.wsr-testimonial-name {
  font-weight: 600;
  font-size: var(--wsr-text-sm);
  color: var(--wsr-text);
  margin-bottom: 2px;
}

.wsr-testimonial-role {
  font-size: var(--wsr-text-xs);
  color: var(--wsr-text-muted);
}

/* ==========================================================================
   27. PRICING CARD
   ========================================================================== */

.wsr-pricing-card {
  background: var(--wsr-card-bg);
  border: 1px solid var(--wsr-border);
  border-radius: var(--wsr-radius-xl);
  padding: var(--wsr-space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--wsr-duration-slow) var(--wsr-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wsr-pricing-card.featured {
  border-color: rgba(10, 38, 230, 0.3);
  background: linear-gradient(160deg,
    rgba(10, 38, 230, 0.04) 0%,
    var(--wsr-card-bg) 60%);
}

.wsr-pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--wsr-gradient);
}

.wsr-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wsr-shadow-xl);
}

.wsr-pricing-card.featured:hover {
  box-shadow: var(--wsr-shadow-yellow-lg);
}

.wsr-pricing-price {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin: var(--wsr-space-4) 0 var(--wsr-space-1);
}

.wsr-pricing-price sup {
  font-size: 0.45em;
  font-weight: 600;
  vertical-align: top;
  margin-top: 0.3em;
}

.wsr-pricing-features {
  flex: 1;
  margin: var(--wsr-space-6) 0;
}

/* ==========================================================================
   28. PAGE HERO (inner pages)
   ========================================================================== */

.wsr-page-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--wsr-surface);
  border-bottom: 1px solid var(--wsr-border);
  position: relative;
  overflow: hidden;
}

.wsr-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,38,230,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,38,230,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ==========================================================================
   29. TABLE STYLES
   ========================================================================== */

.wsr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--wsr-text-sm);
}

.wsr-table th {
  text-align: left;
  padding: var(--wsr-space-3) var(--wsr-space-4);
  background: var(--wsr-surface-2);
  color: var(--wsr-text-muted);
  font-weight: 600;
  font-size: var(--wsr-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--wsr-border);
}

.wsr-table td {
  padding: var(--wsr-space-4);
  border-bottom: 1px solid var(--wsr-border);
  color: var(--wsr-text-secondary);
  vertical-align: middle;
}

.wsr-table tr:last-child td {
  border-bottom: none;
}

.wsr-table tr:hover td {
  background: rgba(10, 38, 230, 0.02);
}

/* ==========================================================================
   30. RESPONSIVE — MOBILE BREAKPOINTS
   ========================================================================== */

/* 1200px */
@media (max-width: 1200px) {
  .wsr-nav-link {
    padding: 0 var(--wsr-space-3);
  }

  .wsr-mega-menu {
    width: min(720px, 94vw);
  }
}

/* 992px — tablet */
@media (max-width: 992px) {
  :root {
    --wsr-section-py: var(--wsr-section-py-md);
  }

  .wsr-nav-links,
  .wsr-nav-actions .btn-wsr-primary,
  .wsr-nav-actions .wsr-lang-switcher,
  .wsr-nav-actions .wsr-theme-toggle {
    display: none !important;
  }

  .wsr-hamburger {
    display: flex;
  }

  .wsr-hero-stats {
    gap: var(--wsr-space-6);
    flex-wrap: wrap;
  }

  .wsr-mega-menu {
    display: none !important;
  }

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

  .wsr-footer-bottom-links {
    justify-content: center;
  }
}

/* 768px — mobile */
@media (max-width: 768px) {
  :root {
    --wsr-section-py: var(--wsr-section-py-sm);
  }

  h1 {
    font-size: clamp(1.875rem, 7vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .wsr-hero-stats {
    gap: var(--wsr-space-5);
  }

  .wsr-hero-divider {
    display: none;
  }

  .wsr-service-card {
    padding: var(--wsr-space-5);
  }

  .wsr-section-title .description {
    font-size: var(--wsr-text-base);
  }

  .wsr-trust-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .wsr-footer {
    padding-top: var(--wsr-space-12);
  }

  .wsr-whatsapp-btn {
    width: 52px;
    height: 52px;
    font-size: 1.375rem;
    bottom: 24px;
    right: 20px;
  }

  .wsr-newsletter-form {
    flex-direction: column;
  }

  .wsr-newsletter-form .btn-wsr-primary {
    width: 100%;
  }

  .btn-wsr-primary,
  .btn-wsr-outline {
    width: 100%;
    justify-content: center;
  }

  .btn-wsr-primary.btn-inline,
  .btn-wsr-outline.btn-inline {
    width: auto;
  }
}

/* 576px */
@media (max-width: 576px) {
  .wsr-hero-badge {
    font-size: 0.65rem;
  }

  .wsr-faq-question {
    font-size: var(--wsr-text-sm);
    padding: var(--wsr-space-4);
  }

  .wsr-faq-answer-inner {
    padding: 0 var(--wsr-space-4) var(--wsr-space-4);
  }

  .wsr-process-card,
  .wsr-result-card,
  .wsr-card {
    padding: var(--wsr-space-5);
  }
}

/* 375px */
@media (max-width: 375px) {
  :root {
    --wsr-navbar-height: 64px;
  }

  body {
    padding-top: 64px;
  }

  .wsr-logo {
    font-size: 1.2rem;
  }

  h1 {
    font-size: clamp(1.625rem, 8vw, 2rem);
  }

  .btn-wsr-lg {
    padding: 14px 24px;
    font-size: var(--wsr-text-sm);
  }

  .wsr-hero-stats {
    gap: var(--wsr-space-4);
  }
}

/* 320px — minimum safe */
@media (max-width: 320px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.375rem; }

  .wsr-service-card {
    padding: var(--wsr-space-4);
  }

  .wsr-section-title .subtitle {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   31. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .wsr-whatsapp-btn,
  .wsr-hero-glow,
  .wsr-hero-float-card,
  .wsr-whatsapp-btn::before {
    animation: none;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   32. PRINT STYLES
   ========================================================================== */

@media print {
  .wsr-navbar,
  .wsr-whatsapp-btn,
  .wsr-mobile-menu,
  .wsr-nav-backdrop {
    display: none !important;
  }

  body {
    padding-top: 0;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .wsr-hero-glow,
  .wsr-hero-grid {
    display: none;
  }
}

/* ============ C4 NEW COMPONENTS ============ */

/* 1. Marquee / Ticker Scroll Strip */
.wsr-marquee-wrap { overflow: hidden; }
.wsr-marquee-track { display: flex; gap: 2rem; width: max-content; animation: marqueeScroll 30s linear infinite; }
.wsr-marquee-track:hover { animation-play-state: paused; }
.wsr-marquee-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--wsr-text-muted); white-space: nowrap; }
.wsr-marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--wsr-yellow); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 2. Tech Stack Grid / Badges */
.wsr-tech-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.wsr-tech-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 8px 16px; background: var(--wsr-surface-2); border: 1px solid var(--wsr-border); border-radius: var(--wsr-radius-full); font-size: 0.8125rem; font-weight: 600; color: var(--wsr-text-secondary); transition: all 0.25s ease; cursor: default; }
.wsr-tech-badge:hover { border-color: rgba(10,38,230,0.3); color: var(--wsr-yellow); background: rgba(10,38,230,0.06); transform: translateY(-2px); }
.wsr-tech-badge .tech-icon { font-size: 1rem; color: var(--wsr-yellow); }

/* 3. Pricing Cards */
.wsr-pricing-card { background: var(--wsr-card-bg); border: 1px solid var(--wsr-border); border-radius: var(--wsr-radius-xl); padding: 2.5rem; position: relative; overflow: hidden; transition: all 0.4s ease; height: 100%; }
.wsr-pricing-card.featured { border-color: var(--wsr-yellow); background: linear-gradient(135deg, rgba(10,38,230,0.05) 0%, rgba(141,90,116,0.03) 100%); }
.wsr-pricing-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, #0A26E6, #8D5A74); }
.wsr-pricing-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.5); border-color: rgba(10,38,230,0.2); }
.wsr-pricing-card.featured:hover { box-shadow: 0 24px 64px rgba(10,38,230,0.15); }
.wsr-pricing-badge { display: inline-flex; align-items: center; padding: 4px 14px; background: var(--wsr-gradient); color: #050505; font-size: 0.75rem; font-weight: 700; border-radius: var(--wsr-radius-full); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.wsr-pricing-price { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; line-height: 1; color: var(--wsr-text); }
.wsr-pricing-price .currency { font-size: 1.5rem; font-weight: 700; vertical-align: top; margin-top: 0.5rem; display: inline-block; color: var(--wsr-yellow); }
.wsr-pricing-price .period { font-size: 0.875rem; font-weight: 500; color: var(--wsr-text-muted); margin-left: 4px; }
.wsr-pricing-features { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.wsr-pricing-features li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--wsr-text-secondary); line-height: 1.5; }
.wsr-pricing-features li::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='rgba(10,38,230,0.15)'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23FFD400' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat; margin-top: 1px; }
.wsr-pricing-features li.disabled { color: var(--wsr-text-faint); }
.wsr-pricing-features li.disabled::before { filter: grayscale(1) opacity(0.3); }

/* 4. Stat Counter Cards */
.wsr-stat-card { text-align: center; padding: 2rem; background: var(--wsr-card-bg); border: 1px solid var(--wsr-border); border-radius: var(--wsr-radius-lg); transition: all 0.3s ease; }
.wsr-stat-card:hover { border-color: rgba(10,38,230,0.2); transform: translateY(-4px); }
.wsr-stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1; background: linear-gradient(135deg, #0A26E6, #8D5A74); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.wsr-stat-label { font-size: 0.875rem; color: var(--wsr-text-muted); margin-top: 0.5rem; font-weight: 500; }

/* 5. Announcement Bar */
.wsr-announcement { background: var(--wsr-gradient); padding: 8px 1rem; text-align: center; font-size: 0.8125rem; font-weight: 600; color: #050505; position: relative; z-index: 1060; }
.wsr-announcement a { color: #050505; text-decoration: underline; }
.wsr-announcement a:hover { color: rgba(5,5,5,0.7); }
.wsr-announcement-close { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #050505; font-size: 1rem; line-height: 1; padding: 4px; opacity: 0.7; }
.wsr-announcement-close:hover { opacity: 1; }

/* 6. Feature Row */
.wsr-feature-row { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem; border-radius: var(--wsr-radius-lg); border: 1px solid transparent; transition: all 0.3s ease; }
.wsr-feature-row:hover { background: rgba(10,38,230,0.03); border-color: rgba(10,38,230,0.1); }
.wsr-feature-icon { width: 52px; height: 52px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,38,230,0.1); border: 1px solid rgba(10,38,230,0.2); border-radius: var(--wsr-radius); font-size: 1.5rem; color: var(--wsr-yellow); transition: all 0.3s ease; }
.wsr-feature-row:hover .wsr-feature-icon { background: var(--wsr-gradient); color: #050505; border-color: transparent; }
.wsr-feature-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.375rem; }
.wsr-feature-body p { font-size: 0.875rem; color: var(--wsr-text-muted); margin: 0; line-height: 1.6; }

/* 7. Tab Navigation */
.wsr-tabs { display: flex; gap: 0.5rem; padding: 6px; background: var(--wsr-surface-2); border-radius: var(--wsr-radius-full); flex-wrap: wrap; }
.wsr-tab-btn { padding: 8px 20px; border-radius: var(--wsr-radius-full); border: none; background: transparent; color: var(--wsr-text-muted); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.25s ease; white-space: nowrap; }
.wsr-tab-btn.active, .wsr-tab-btn:hover { background: var(--wsr-gradient); color: #050505; }
.wsr-tab-panel { display: none; }
.wsr-tab-panel.active { display: block; }

/* 8. Service Badge Pills */
.wsr-service-pills { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.wsr-service-pill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 7px 16px; background: var(--wsr-surface-2); border: 1px solid var(--wsr-border); border-radius: var(--wsr-radius-full); font-size: 0.8125rem; font-weight: 600; color: var(--wsr-text-secondary); text-decoration: none; transition: all 0.25s ease; }
.wsr-service-pill:hover { border-color: rgba(10,38,230,0.35); color: var(--wsr-yellow); background: rgba(10,38,230,0.05); transform: translateY(-2px); }
.wsr-service-pill .pill-icon { font-size: 0.875rem; color: var(--wsr-yellow); }

/* 9. Country / Location Grid */
.wsr-location-card { background: var(--wsr-surface-2); border: 1px solid var(--wsr-border); border-radius: var(--wsr-radius-md); padding: 1.75rem; transition: all 0.25s ease; text-decoration: none; color: var(--wsr-text); display: block; height: 100%; }
.wsr-location-card:hover { border-color: rgba(10,38,230,0.2); background: var(--wsr-surface-3); transform: translateY(-3px); color: var(--wsr-text); }
.wsr-location-flag { display: inline-flex; align-items: center; justify-content: center; min-width: 56px; height: 32px; padding: 0 0.625rem; margin-bottom: 0.875rem; border-radius: 6px; background: var(--wsr-yellow-dim); border: 1px solid rgba(10,38,230,0.25); color: var(--wsr-yellow); font-family: var(--wsr-font-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1; }
.wsr-location-name { font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.375rem; color: var(--wsr-text); }
.wsr-location-desc { font-size: 0.875rem; line-height: 1.7; color: var(--wsr-text-muted); margin-bottom: 0; }

/* 10. Gradient Divider / Glowing Divider */
.wsr-divider-glow { width: 100%; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(10,38,230,0.3) 25%, rgba(141,90,116,0.3) 75%, transparent 100%); margin: 0; }
.wsr-divider-dot { display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.wsr-divider-dot::before, .wsr-divider-dot::after { content: ''; flex: 1; height: 1px; background: var(--wsr-border); }
.wsr-divider-dot span { width: 8px; height: 8px; background: var(--wsr-gradient); border-radius: 50%; margin: 0 0.75rem; }

/* 11. AI / Cyber Glow Section Background */
.wsr-section-cyber { position: relative; background: var(--wsr-bg); overflow: hidden; }
.wsr-section-cyber::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(10,38,230,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(10,38,230,0.025) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.wsr-section-cyber::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 400px; background: radial-gradient(ellipse at center, rgba(10,38,230,0.06) 0%, rgba(141,90,116,0.03) 40%, transparent 70%); pointer-events: none; }
.wsr-cyber-card { background: rgba(17,17,17,0.8); border: 1px solid rgba(10,38,230,0.1); border-radius: var(--wsr-radius-lg); padding: 2rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); position: relative; z-index: 1; transition: all 0.3s ease; }
.wsr-cyber-card:hover { border-color: rgba(10,38,230,0.25); box-shadow: 0 0 40px rgba(10,38,230,0.08); transform: translateY(-4px); }

/* 12. Typing Cursor Animation */
.wsr-typing-cursor { display: inline-block; width: 3px; height: 1em; background: var(--wsr-yellow); margin-left: 2px; vertical-align: text-bottom; animation: blinkCursor 1s step-end infinite; }
@keyframes blinkCursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* 13. Blog Card (C4 extended) */
.wsr-blog-thumb { width: 100%; height: 200px; background: var(--wsr-surface-2); overflow: hidden; position: relative; }
.wsr-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.wsr-blog-card:hover .wsr-blog-thumb img { transform: scale(1.05); }
.wsr-blog-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--wsr-surface-2), var(--wsr-surface-3)); }
.wsr-blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.wsr-blog-category { display: inline-flex; align-items: center; padding: 3px 12px; background: rgba(10,38,230,0.1); border: 1px solid rgba(10,38,230,0.2); border-radius: var(--wsr-radius-full); font-size: 0.75rem; font-weight: 700; color: var(--wsr-yellow); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; text-decoration: none; }
.wsr-blog-title { font-size: 1.0625rem; font-weight: 700; color: var(--wsr-text); line-height: 1.4; margin-bottom: 0.625rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wsr-blog-excerpt { font-size: 0.875rem; color: var(--wsr-text-muted); line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.wsr-blog-date { font-size: 0.75rem; color: var(--wsr-text-faint); font-weight: 500; }
.wsr-blog-read-more { font-size: 0.8125rem; font-weight: 600; color: var(--wsr-yellow); text-decoration: none; display: flex; align-items: center; gap: 4px; transition: gap 0.2s ease; }
.wsr-blog-read-more:hover { gap: 8px; color: var(--wsr-orange); }

/* 14. Portfolio Card (C4 extended) */
.wsr-portfolio-thumb { width: 100%; height: 220px; overflow: hidden; position: relative; background: var(--wsr-surface-3); }
.wsr-portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.wsr-portfolio-card:hover .wsr-portfolio-thumb img { transform: scale(1.08); }
.wsr-portfolio-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(10,38,230,0.06), rgba(141,90,116,0.04)); font-size: 2.5rem; color: rgba(10,38,230,0.3); }
.wsr-portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,5,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s ease; }
.wsr-portfolio-card:hover .wsr-portfolio-overlay { opacity: 1; }
.wsr-portfolio-body { padding: 1.25rem; flex: 1; }
.wsr-portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0.625rem; }
.wsr-portfolio-tag { padding: 3px 10px; background: rgba(10,38,230,0.08); border-radius: var(--wsr-radius-full); font-size: 0.6875rem; font-weight: 600; color: var(--wsr-yellow); text-transform: uppercase; letter-spacing: 0.06em; }
.wsr-portfolio-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.375rem; }
.wsr-portfolio-desc { font-size: 0.8125rem; color: var(--wsr-text-muted); line-height: 1.5; }

/* 15. Animated Gradient Border on Input Focus */
.wsr-form-control { display: block; width: 100%; padding: 12px 16px; font-size: 0.9375rem; font-family: inherit; background: var(--wsr-surface-2); color: var(--wsr-text); border: 1.5px solid var(--wsr-border); border-radius: var(--wsr-radius); transition: border-color 0.25s ease, box-shadow 0.25s ease; outline: none; }
.wsr-form-control::placeholder { color: var(--wsr-text-faint); }
.wsr-form-control:focus { border-color: var(--wsr-yellow); box-shadow: 0 0 0 3px rgba(10,38,230,0.1); }
.wsr-form-control:hover:not(:focus) { border-color: rgba(255,255,255,0.12); }
textarea.wsr-form-control { resize: vertical; min-height: 120px; }
select.wsr-form-control { cursor: pointer; }
.wsr-form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--wsr-text-secondary); margin-bottom: 6px; }

/* 16. Newsletter Section */
.wsr-newsletter-section { background: linear-gradient(135deg, rgba(10,38,230,0.06) 0%, rgba(141,90,116,0.04) 100%); border: 1px solid rgba(10,38,230,0.1); border-radius: var(--wsr-radius-xl); padding: 3rem; }
.wsr-newsletter-form { display: flex; gap: 0.75rem; max-width: 480px; }
.wsr-newsletter-form .wsr-form-control { flex: 1; border-radius: var(--wsr-radius-full); }
@media (max-width: 480px) { .wsr-newsletter-form { flex-direction: column; } }

/* 17. Keyframe Animations (new ones only — shimmer, float, glowPulse, heroGlowPulse, fadeInUp already defined above) */
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

/* 18. Animate On Scroll — scoped delay utilities (base class already defined above) */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* 19. Page Hero Component (C4 glow variant) */
.wsr-page-hero-glow { position: absolute; top: 0; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(10,38,230,0.08) 0%, transparent 65%); pointer-events: none; }

/* 20. Responsive Utilities */
@media (max-width: 768px) {
  .wsr-pricing-card { padding: 1.75rem; }
  .wsr-newsletter-section { padding: 2rem 1.5rem; }
  .wsr-stat-card { padding: 1.25rem; }
}
@media (max-width: 480px) {
  .wsr-tech-badge { padding: 6px 12px; font-size: 0.75rem; }
  .wsr-tabs { gap: 0.25rem; padding: 4px; }
  .wsr-tab-btn { padding: 6px 14px; font-size: 0.8125rem; }
}
@media (max-width: 320px) {
  .wsr-pricing-card { padding: 1.25rem; }
  .wsr-pricing-price { font-size: 2rem; }
}

/* ============ END C4 NEW COMPONENTS ============ */

/* ============================================================
   C4.1 — PLACEHOLDER BADGES, FORM FLASH, NARROW-MOBILE FIXES
   ============================================================ */

/* "Article in pipeline" / "Case study coming soon" pill */
.wsr-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10, 38, 230, 0.08);
  border: 1px solid rgba(10, 38, 230, 0.22);
  color: var(--wsr-yellow);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
}
.wsr-coming-soon-badge .bi { font-size: 0.75rem; }

/* Disabled "read more" variant on blog cards */
.wsr-blog-read-more--disabled {
  color: var(--wsr-text-muted) !important;
  cursor: default;
  pointer-events: none;
}
.wsr-blog-read-more--disabled .bi { color: var(--wsr-text-muted); }

/* Form flash banners (newsletter success/error without JS) */
.wsr-form-flash {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.wsr-form-flash--success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ade80;
}
.wsr-form-flash--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
}
.wsr-form-flash .bi { font-size: 1rem; flex-shrink: 0; }

/* ===== Narrow mobile (≤ 360px) — covers iPhone SE 1st gen / Galaxy Fold closed ===== */
@media (max-width: 360px) {
  .wsr-section { padding: 3rem 0; }

  .container, .container-xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Hero title scales harder */
  .wsr-page-hero-title,
  h1 { font-size: clamp(1.4rem, 7vw, 1.8rem); line-height: 1.25; }

  /* Buttons stack and stretch */
  .btn-wsr-primary,
  .btn-wsr-outline {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.9rem;
    justify-content: center;
  }
  .btn-wsr-primary .bi,
  .btn-wsr-outline .bi { font-size: 0.85rem; }

  /* Pill rows: don't overflow horizontally */
  .wsr-service-pill { padding: 6px 12px; font-size: 0.75rem; }

  /* Card padding */
  .wsr-card,
  .wsr-blog-card,
  .wsr-portfolio-card,
  .wsr-feature-row,
  .wsr-pricing-card { padding: 1rem; }

  /* Pricing price */
  .wsr-pricing-price { font-size: 1.75rem; }

  /* Stats */
  .wsr-hero-stats { gap: 0.875rem; }
  .wsr-hero-stat-value { font-size: 1.5rem; }

  /* Newsletter form stacks */
  .wsr-newsletter-form { flex-direction: column; gap: 0.5rem; }
  .wsr-newsletter-form input,
  .wsr-newsletter-form .btn-wsr-primary { width: 100%; }

  /* Footer columns each go full width to avoid cramped 2-col grid */
  .wsr-footer .col-6 { flex: 0 0 100%; max-width: 100%; }
  .wsr-footer-heading { margin-top: 1.5rem; }

  /* Tab bar wraps cleanly */
  .wsr-tabs { flex-wrap: wrap; }
  .wsr-tab-btn { padding: 5px 11px; font-size: 0.75rem; }

  /* Coming-soon badge in blog/portfolio meta — let it sit below read-more */
  .wsr-blog-meta,
  .wsr-portfolio-tags { flex-wrap: wrap; gap: 0.5rem; }
}

/* ===== Extreme narrow (≤ 300px) — Galaxy Fold inner, very old devices ===== */
@media (max-width: 300px) {
  .container, .container-xl {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.15rem; }
  .wsr-logo { font-size: 1.05rem; }
  .wsr-section-title .subtitle { font-size: 0.6rem; }
  .wsr-coming-soon-badge { font-size: 0.65rem; padding: 3px 8px; }
}

/* ============ END C4.1 ============ */

/* ===========================================================================
   C5 — SAAS / INCIDENT-MANAGEMENT THEME OVERLAY
   Premium dark navy + electric blue + violet aesthetic. Overrides only the
   visual layer of existing components — no structural change, no Blade churn.
   Layered AFTER the design system so it wins on cascade.
   =========================================================================== */

/* ---- 1. Ambient site background: navy + radial glow + subtle grid ------ */
body {
  background:
    radial-gradient(1100px 600px at 15% -10%, rgba(10, 38, 230, 0.18) 0%, transparent 55%),
    radial-gradient(900px 500px at 95% 8%,    rgba(141, 90, 116, 0.12) 0%, transparent 60%),
    radial-gradient(700px 700px at 50% 110%,  rgba(10, 38, 230, 0.10) 0%, transparent 65%),
    var(--wsr-bg) !important;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(158, 164, 192, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 164, 192, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 75%);
}

/* Make sure foreground content sits above the grid overlay */
.wsr-navbar, .wsr-announcement, main, footer, .wsr-section, section {
  position: relative;
  z-index: 1;
}

/* ---- 2. Card glass upgrade ---------------------------------------------- */
.wsr-card,
.wsr-service-card,
.wsr-feature-row,
.wsr-industry-card,
.wsr-process-card,
.wsr-pricing-card,
.wsr-cyber-card,
.wsr-stat-card,
.wsr-blog-card,
.wsr-portfolio-card,
.wsr-location-card,
.wsr-card-glass {
  background: linear-gradient(180deg, rgba(17, 23, 58, 0.72) 0%, rgba(14, 19, 48, 0.68) 100%) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--wsr-border) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 32px rgba(5, 5, 13, 0.45);
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 350ms ease;
}

.wsr-card:hover,
.wsr-service-card:hover,
.wsr-feature-row:hover,
.wsr-industry-card:hover,
.wsr-process-card:hover,
.wsr-pricing-card:hover,
.wsr-stat-card:hover,
.wsr-blog-card:hover,
.wsr-portfolio-card:hover,
.wsr-location-card:hover {
  border-color: var(--wsr-border-hover) !important;
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 48px rgba(5, 5, 13, 0.6),
    0 0 36px rgba(10, 38, 230, 0.18);
}

/* Featured pricing card — stronger glow */
.wsr-pricing-card.featured {
  background: linear-gradient(180deg, rgba(24, 30, 91, 0.85) 0%, rgba(17, 23, 58, 0.75) 100%) !important;
  border-color: rgba(10, 38, 230, 0.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 48px rgba(5, 5, 13, 0.65),
    0 0 48px rgba(10, 38, 230, 0.32);
}

/* ---- 3. Buttons: pill + gradient + glow on hover ------------------------ */
.btn-wsr-primary {
  background: var(--wsr-gradient) !important;
  color: #fff !important;
  border: 1px solid rgba(10, 38, 230, 0.6) !important;
  border-radius: 999px !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow:
    0 8px 22px rgba(10, 38, 230, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 200ms ease, box-shadow 300ms ease, filter 200ms ease;
}
.btn-wsr-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 14px 32px rgba(10, 38, 230, 0.45),
    0 0 40px rgba(10, 38, 230, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff !important;
}
.btn-wsr-primary:focus-visible {
  outline: 2px solid #BCC1D8;
  outline-offset: 3px;
}

.btn-wsr-outline {
  background: rgba(11, 16, 32, 0.6) !important;
  color: var(--wsr-text) !important;
  border: 1px solid rgba(158, 164, 192, 0.32) !important;
  border-radius: 999px !important;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms ease;
}
.btn-wsr-outline:hover {
  border-color: rgba(10, 38, 230, 0.7) !important;
  color: #fff !important;
  background: rgba(10, 38, 230, 0.12) !important;
  transform: translateY(-2px);
}

/* ---- 4. Process steps: glowing numbered chips -------------------------- */
.wsr-step-badge {
  background: var(--wsr-gradient) !important;
  color: #fff !important;
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  font-size: 1.05rem !important;
  box-shadow:
    0 0 0 4px rgba(10, 38, 230, 0.14),
    0 0 24px rgba(10, 38, 230, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}
.wsr-step-badge::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(10, 38, 230, 0.22);
  animation: c5-pulse-ring 2.6s ease-out infinite;
}
@keyframes c5-pulse-ring {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.5);  opacity: 0; }
}

/* ---- 5. Service / industry / feature card icon: glow chip --------------- */
.wsr-service-card-icon,
.wsr-industry-card-icon,
.wsr-feature-icon {
  background: linear-gradient(135deg, rgba(10, 38, 230, 0.18), rgba(141, 90, 116, 0.10)) !important;
  border: 1px solid rgba(10, 38, 230, 0.3) !important;
  color: #BCC1D8 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 250ms ease;
}
.wsr-service-card:hover .wsr-service-card-icon,
.wsr-industry-card:hover .wsr-industry-card-icon,
.wsr-feature-row:hover .wsr-feature-icon {
  background: var(--wsr-gradient) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow:
    0 0 28px rgba(10, 38, 230, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ---- 6. Hero / page-hero: layered glow halo ----------------------------- */
.wsr-hero,
.wsr-page-hero {
  position: relative;
  isolation: isolate;
}
.wsr-page-hero {
  background:
    radial-gradient(900px 480px at 20% 30%, rgba(10, 38, 230, 0.20) 0%, transparent 60%),
    radial-gradient(700px 400px at 85% 70%, rgba(141, 90, 116, 0.14) 0%, transparent 65%),
    var(--wsr-surface) !important;
  border-bottom: 1px solid var(--wsr-border) !important;
}
.wsr-hero-grid {
  background-image:
    linear-gradient(rgba(10, 38, 230, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 38, 230, 0.06) 1px, transparent 1px) !important;
}

/* Hero badge in C5 */
.wsr-badge,
.wsr-hero-badge {
  background: rgba(10, 38, 230, 0.10) !important;
  border: 1px solid rgba(10, 38, 230, 0.35) !important;
  color: #BCC1D8 !important;
  box-shadow: 0 0 24px rgba(10, 38, 230, 0.18);
}

/* ---- 7. Gradient text — bright, high-contrast on dark navy -------------- */
.gradient-text,
.text-gradient {
  background: linear-gradient(135deg, #6B85FF 0%, #C895D6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- 8. FAQ accordion: card style, smooth focus ------------------------- */
.wsr-faq-item {
  background: linear-gradient(180deg, rgba(17, 23, 58, 0.55) 0%, rgba(14, 19, 48, 0.45) 100%) !important;
  border: 1px solid var(--wsr-border) !important;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 0.875rem;
  transition: border-color 200ms ease, box-shadow 250ms ease;
}
.wsr-faq-item:hover,
.wsr-faq-item.open,
.wsr-faq-item[open] {
  border-color: rgba(10, 38, 230, 0.4) !important;
  box-shadow:
    0 8px 24px rgba(5, 5, 13, 0.4),
    0 0 28px rgba(10, 38, 230, 0.12);
}
.wsr-faq-question {
  color: var(--wsr-text) !important;
  font-weight: 600;
  padding: 1.125rem 1.25rem !important;
}
.wsr-faq-answer {
  color: var(--wsr-text-secondary) !important;
}

/* ---- 9. Footer: dark gradient + glowing top edge ----------------------- */
.wsr-footer {
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 16, 32, 0.7) 30%, var(--wsr-bg) 100%);
  border-top: 1px solid var(--wsr-border);
  position: relative;
}
.wsr-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 38, 230, 0.6), transparent);
  pointer-events: none;
}
.wsr-footer-link {
  color: var(--wsr-text-muted);
  transition: color 200ms ease, transform 200ms ease;
}
.wsr-footer-link:hover {
  color: var(--wsr-text);
  transform: translateX(2px);
}

/* ---- 10. Navbar: glass with bottom-glow line --------------------------- */
.wsr-navbar {
  background: rgba(5, 5, 13, 0.72) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--wsr-border) !important;
}
.wsr-navbar.scrolled {
  background: rgba(5, 5, 13, 0.92) !important;
  box-shadow:
    0 8px 32px rgba(5, 5, 13, 0.6),
    0 0 0 1px var(--wsr-border);
}

/* ---- 11. Announcement bar ---------------------------------------------- */
.wsr-announcement {
  background: linear-gradient(90deg, rgba(10, 38, 230, 0.18) 0%, rgba(141, 90, 116, 0.12) 100%);
  border-bottom: 1px solid rgba(10, 38, 230, 0.25);
  color: var(--wsr-text);
}
.wsr-announcement a {
  color: #BCC1D8;
  text-decoration: underline;
  text-decoration-color: rgba(188, 193, 216, 0.4);
  text-underline-offset: 3px;
}
.wsr-announcement a:hover {
  color: #fff;
  text-decoration-color: currentColor;
}

/* ---- 12. Dividers, lines, marquee track --------------------------------- */
.wsr-divider-glow {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(10, 38, 230, 0.5) 25%,
    rgba(141, 90, 116, 0.5) 75%,
    transparent 100%) !important;
}

/* ---- 13. Subtle scanning shimmer (cards on hover only — minimal cost) -- */
.wsr-service-card,
.wsr-pricing-card,
.wsr-portfolio-card {
  overflow: hidden;
}
.wsr-service-card::before,
.wsr-pricing-card::before,
.wsr-portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(10, 38, 230, 0.10) 50%, transparent 100%);
  transition: left 700ms ease;
  pointer-events: none;
}
.wsr-service-card:hover::before,
.wsr-pricing-card:hover::before,
.wsr-portfolio-card:hover::before {
  left: 130%;
}

/* ---- 14. Section labels / subtitles — cool tint ------------------------- */
.wsr-section-title .subtitle,
.section-label {
  color: #6B85FF !important;
  letter-spacing: 0.16em;
}

/* ---- 15. Form controls: dark glass --------------------------------------- */
.wsr-form-control,
.wsr-form-select {
  background: rgba(11, 16, 32, 0.6) !important;
  border: 1px solid var(--wsr-border) !important;
  color: var(--wsr-text) !important;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.wsr-form-control:focus,
.wsr-form-select:focus {
  border-color: rgba(10, 38, 230, 0.7) !important;
  background: rgba(17, 23, 58, 0.7) !important;
  box-shadow: 0 0 0 4px rgba(10, 38, 230, 0.18) !important;
  outline: none;
}
.wsr-form-control::placeholder {
  color: var(--wsr-text-faint);
}

/* ---- 16. WhatsApp / floating action button -------------------------------- */
.wsr-whatsapp-btn,
.wsr-whatsapp-float {
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.32),
    0 0 0 6px rgba(37, 211, 102, 0.08);
}

/* ---- 17. Coming-soon badge re-tint (was yellow, now cool) --------------- */
.wsr-coming-soon-badge {
  background: rgba(10, 38, 230, 0.10) !important;
  border-color: rgba(10, 38, 230, 0.28) !important;
  color: #9EB0FF !important;
}

/* ---- 18. Service pill, tech badge, tab button -------------------------- */
.wsr-service-pill,
.wsr-tech-badge {
  background: rgba(17, 23, 58, 0.55) !important;
  border: 1px solid var(--wsr-border) !important;
  color: var(--wsr-text-secondary) !important;
  transition: all 200ms ease;
}
.wsr-service-pill:hover,
.wsr-tech-badge:hover {
  border-color: rgba(10, 38, 230, 0.55) !important;
  background: rgba(10, 38, 230, 0.10) !important;
  color: #fff !important;
}
.wsr-service-pill i,
.wsr-tech-badge i { color: #6B85FF !important; }

.wsr-tab-btn {
  background: transparent;
  border: 1px solid var(--wsr-border);
  color: var(--wsr-text-muted);
  border-radius: 999px;
  transition: all 200ms ease;
}
.wsr-tab-btn:hover,
.wsr-tab-btn.active {
  background: rgba(10, 38, 230, 0.16);
  border-color: rgba(10, 38, 230, 0.5);
  color: #fff;
}

/* ---- 19. Trust signal checkmarks — turn green→cool ---------------------- */
.wsr-trust-signal i,
.wsr-trust-signal .check {
  color: #6B85FF !important;
}

/* ---- 20. Location flag pill (used on home + about) ---------------------- */
.wsr-location-flag {
  background: rgba(10, 38, 230, 0.12) !important;
  border: 1px solid rgba(10, 38, 230, 0.3) !important;
  color: #9EB0FF !important;
}

/* ---- 21. Mega menu — glass --------------------------------------------- */
.wsr-mega-menu {
  background: rgba(11, 16, 32, 0.94) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--wsr-border) !important;
  box-shadow:
    0 24px 64px rgba(5, 5, 13, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.wsr-mega-link:hover {
  background: rgba(10, 38, 230, 0.08) !important;
  color: #fff !important;
}

/* ---- 22. Reduce flag/glow on prefers-reduced-motion --------------------- */
@media (prefers-reduced-motion: reduce) {
  .wsr-step-badge::after { animation: none; }
  .wsr-service-card::before,
  .wsr-pricing-card::before,
  .wsr-portfolio-card::before { display: none; }
}

/* ============ END C5 SAAS THEME OVERLAY ============ */
