/* ============================================================
   XERO-ADVANCED — Advanced UI System for Secura Web
   Inspired by files(1)/xero-hero.css
   Palette: White | Orange | Sky-Blue | Dark Royal Blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Extended Design Tokens ── */
:root {
  /* Brand Palette */
  --xo-white:         #ffffff;
  --xo-off-white:     #f8f9ff;
  --xo-orange:        #ff6b00;
  --xo-orange-2:      #ff8c00;
  --xo-orange-glow:   rgba(255, 107, 0, 0.45);
  --xo-sky:           #38bdf8;
  --xo-sky-2:         #0ea5e9;
  --xo-sky-glow:      rgba(56, 189, 248, 0.35);
  --xo-royal:         #1e3a8a;
  --xo-royal-deep:    #0f172a;
  --xo-royal-glow:    rgba(30, 58, 138, 0.4);

  /* Gradients */
  --xo-grad-fire:     linear-gradient(135deg, #ff6b00, #ff8c00);
  --xo-grad-sky:      linear-gradient(135deg, #38bdf8, #0ea5e9);
  --xo-grad-beam:     linear-gradient(90deg, #ff6b00, #38bdf8);
  --xo-grad-hero:     linear-gradient(135deg, #fff8f3 0%, #f0f8ff 50%, #e8f4fd 100%);

  /* Beam colors (for SVG) */
  --xo-beam-start:    #ff6b00;
  --xo-beam-mid:      #ffffff;
  --xo-beam-end:      #38bdf8;

  /* Node shadows */
  --xo-node-shadow:
    6px 6px 14px rgba(30, 58, 138, 0.18),
    -4px -4px 10px rgba(255, 255, 255, 0.9),
    inset 1px 1px 2px rgba(255, 255, 255, 0.8),
    inset 3px 3px 8px rgba(30, 58, 138, 0.1);
  --xo-node-shadow-active:
    8px 8px 20px rgba(30, 58, 138, 0.25),
    -5px -5px 14px rgba(255, 255, 255, 0.95),
    inset 1px 1px 2px rgba(255, 255, 255, 0.9),
    inset 4px 4px 10px rgba(30, 58, 138, 0.15);
}

/* ============================================================
   HERO SECTION — Xero-Card Style
   ============================================================ */

#hero {
  background: var(--xo-grad-hero) !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

/* Hero wrapper card */
.xero-hero-card {
  width: 100%;
  max-width: 100%;
  margin: 80px auto 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid rgba(30, 58, 138, 0.15);
  border-bottom: 1px solid rgba(30, 58, 138, 0.15);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow:
    0 8px 40px rgba(30, 58, 138, 0.05),
    0 40px 120px rgba(30, 58, 138, 0.04);
  padding: 100px 60px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial glow from top — orange + sky blue bleed */
.xero-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% -60%,
      transparent 55%,
      rgba(255, 107, 0, 0.04) 58%,
      rgba(255, 107, 0, 0.10) 62%,
      rgba(255, 150, 30, 0.18) 67%,
      rgba(56, 189, 248, 0.22) 72%,
      rgba(56, 189, 248, 0.30) 76%,
      rgba(14, 165, 233, 0.40) 80%,
      rgba(255, 255, 255, 0.85) 88%,
      rgba(255, 255, 255, 0.98) 93%,
      #ffffff 96%),
    radial-gradient(ellipse at 30% 60%, rgba(255, 107, 0, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(56, 189, 248, 0.06) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}

/* Background grid overlay (masked — visible at edges) */
.xero-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 138, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 138, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 50% -60%, transparent 55%, black 80%);
  mask-image: radial-gradient(ellipse at 50% -60%, transparent 55%, black 80%);
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}

/* Floating orbs */
.xero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.xero-orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,107,0,0.14) 0%, transparent 65%);
  top: -120px; left: -80px;
  animation: xero-float-orb 14s ease-in-out infinite;
}
.xero-orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(56,189,248,0.18) 0%, transparent 65%);
  top: -100px; right: -60px;
  animation: xero-float-orb 16s ease-in-out infinite;
  animation-delay: -7s;
}
.xero-orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(30,58,138,0.10) 0%, transparent 65%);
  bottom: 60px; left: 30%;
  animation: xero-float-orb 18s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes xero-float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -25px) scale(1.06); }
  66%       { transform: translate(-15px, 10px) scale(0.96); }
}

/* ============================================================
   BEAM PIPELINE
   ============================================================ */

.xero-pipeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 64px;
  z-index: 2;
}

.xero-beam-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
}

.xero-beam-glow {
  fill: none;
  stroke-width: 3;
  opacity: 0.5;
}

.xero-beam-core {
  fill: none;
  stroke-width: 1;
}

/* Pipeline connector lines */
.xero-pipe-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(30, 58, 138, 0.08) 0%,
    rgba(56, 189, 248, 0.25) 50%,
    rgba(30, 58, 138, 0.08) 100%);
  position: relative;
  z-index: 1;
}

/* Moving dot on pipe line */
.xero-pipe-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px; height: 6px;
  background: var(--xo-sky);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px var(--xo-sky);
  animation: xero-pipe-dot 3s ease-in-out infinite;
}

.xero-pipe-line.right::after {
  animation: xero-pipe-dot-rev 3s ease-in-out infinite;
  animation-delay: -1.5s;
}

@keyframes xero-pipe-dot {
  0%   { left: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes xero-pipe-dot-rev {
  0%   { right: 0%; opacity: 0; left: auto; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { right: 100%; opacity: 0; }
}

/* ── Icon Nodes ── */
.xero-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--xo-node-shadow);
  cursor: pointer;
  position: relative;
  z-index: 4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.xero-node::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(30, 58, 138, 0.18);
  pointer-events: none;
  animation: xero-ring-spin 12s linear infinite;
}

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

.xero-node:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: var(--xo-node-shadow-active);
}

.xero-node svg {
  width: 26px; height: 26px;
  stroke: var(--xo-royal);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Node glow variants */
.xero-node.node-orange svg { stroke: var(--xo-orange); }
.xero-node.node-sky svg    { stroke: var(--xo-sky-2); }

.xero-node.node-orange {
  background: #fff5ee;
}
.xero-node.node-sky {
  background: #f0f9ff;
}

.xero-node.node-orange.active {
  box-shadow:
    6px 6px 14px rgba(255,107,0,0.18),
    -4px -4px 10px rgba(255,255,255,0.9),
    inset 1px 1px 2px rgba(255,255,255,0.8),
    inset 2px 2px 6px rgba(255,107,0,0.12),
    0 0 20px rgba(255,107,0,0.25);
}
.xero-node.node-sky.active {
  box-shadow:
    6px 6px 14px rgba(56,189,248,0.22),
    -4px -4px 10px rgba(255,255,255,0.9),
    inset 1px 1px 2px rgba(255,255,255,0.8),
    inset 2px 2px 6px rgba(56,189,248,0.12),
    0 0 20px rgba(56,189,248,0.30);
}

/* Center node (logo) */
.xero-node-center {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff8f3, #f0f8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  box-shadow:
    10px 10px 24px rgba(30,58,138,0.14),
    -8px -8px 18px rgba(255,255,255,0.95),
    inset 1px 1px 2px rgba(255,255,255,0.9),
    inset 4px 4px 12px rgba(30,58,138,0.08),
    0 0 0 3px rgba(255,107,0,0.12),
    0 0 40px rgba(255,107,0,0.15);
  transition: box-shadow 0.3s ease;
}

.xero-node-center:hover {
  box-shadow:
    12px 12px 30px rgba(30,58,138,0.18),
    -10px -10px 22px rgba(255,255,255,0.98),
    inset 1px 1px 2px rgba(255,255,255,0.95),
    inset 5px 5px 14px rgba(30,58,138,0.1),
    0 0 0 4px rgba(255,107,0,0.20),
    0 0 60px rgba(255,107,0,0.25);
}

.xero-node-center img {
  width: 54px; height: 54px;
  object-fit: contain;
  border-radius: 50%;
  padding: 4px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.xero-node-center::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,0,0.15);
  pointer-events: none;
  animation: xero-ring-spin 8s linear infinite reverse;
}

.xero-node-center::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed rgba(56,189,248,0.18);
  pointer-events: none;
  animation: xero-ring-spin 16s linear infinite;
}

/* Splash effect */
.xero-splash {
  position: absolute;
  top: 50%; left: 50%;
  width: 110px; height: 110px;
  margin: -55px 0 0 -55px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 107, 0, 0.5) 0%,
    rgba(56, 189, 248, 0.3) 50%,
    transparent 70%);
  opacity: 0;
  transform: scale(0.4);
  pointer-events: none;
  z-index: 2;
}
.xero-splash.animate {
  animation: xero-splash-burst 0.9s ease-out forwards;
}

@keyframes xero-splash-burst {
  0%   { transform: scale(0.4); opacity: 0.9; }
  40%  { opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   HERO CONTENT
   ============================================================ */

.xero-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  width: 100%;
}

/* Hero badge */
.xero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 999px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.22);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--xo-orange);
  margin-bottom: 28px;
}
.xero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--xo-orange);
  box-shadow: 0 0 8px var(--xo-orange);
  animation: xero-badge-pulse 2s ease-in-out infinite;
}
@keyframes xero-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ============================================================
   PARTNER LOGOS ROW (replacing brands)
   ============================================================ */

.xero-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
  padding: 32px 0 8px;
  position: relative;
  z-index: 2;
}

.xero-partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}
.xero-partner-item:hover {
  color: var(--xo-orange);
  transform: translateY(-1px);
}

.xero-partner-item svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  stroke-width: 2;
  color: var(--xo-orange);
}

/* Divider line above partners */
.xero-partners-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(30,58,138,0.10) 20%,
    rgba(56,189,248,0.18) 50%,
    rgba(30,58,138,0.10) 80%,
    transparent 100%);
  margin: 20px 0 0;
}

/* ============================================================
   SECTION — ADVANCED CARD STYLES
   ============================================================ */

/* Glassmorphism product cards */
.xero-glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 58, 138, 0.10);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.xero-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
    rgba(255, 107, 0, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.xero-glass-card:hover {
  border-color: rgba(255, 107, 0, 0.30);
  box-shadow:
    0 8px 40px rgba(255, 107, 0, 0.10),
    0 2px 8px rgba(30, 58, 138, 0.08);
  transform: translateY(-6px);
}

.xero-glass-card:hover::before { opacity: 1; }

/* Shimmer border on hover */
.xero-glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255,107,0,0) 0%,
    rgba(255,107,0,0.6) 40%,
    rgba(56,189,248,0.6) 60%,
    rgba(56,189,248,0) 100%);
  background-size: 300% 300%;
  -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;
  transition: opacity 0.4s ease;
  animation: xero-border-slide 3s linear infinite;
}

.xero-glass-card:hover::after { opacity: 1; }

@keyframes xero-border-slide {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================================
   ICON NODE — WHY/FEATURE CARDS
   ============================================================ */

.xero-feature-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.xero-feature-node.orange-node {
  background: #fff5ee;
  box-shadow:
    4px 4px 10px rgba(255,107,0,0.15),
    -3px -3px 8px rgba(255,255,255,0.9),
    inset 1px 1px 2px rgba(255,255,255,0.8);
}
.xero-feature-node.sky-node {
  background: #f0f9ff;
  box-shadow:
    4px 4px 10px rgba(56,189,248,0.18),
    -3px -3px 8px rgba(255,255,255,0.9),
    inset 1px 1px 2px rgba(255,255,255,0.8);
}
.xero-feature-node.royal-node {
  background: #f0f4ff;
  box-shadow:
    4px 4px 10px rgba(30,58,138,0.15),
    -3px -3px 8px rgba(255,255,255,0.9),
    inset 1px 1px 2px rgba(255,255,255,0.8);
}

/* ============================================================
   STATS — Neumorphic Rings
   ============================================================ */

.xero-stat-ring {
  position: relative;
  width: 90px; height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.xero-stat-ring svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}

.xero-stat-ring .ring-bg {
  fill: none;
  stroke: rgba(30,58,138,0.08);
  stroke-width: 3;
}

.xero-stat-ring .ring-fill {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 2s cubic-bezier(0.4,0,0.2,1);
}

.xero-stat-ring.orange .ring-fill { stroke: var(--xo-orange); }
.xero-stat-ring.sky    .ring-fill { stroke: var(--xo-sky-2); }
.xero-stat-ring.royal  .ring-fill { stroke: var(--xo-royal); }

.xero-stat-ring.animated .ring-fill { stroke-dashoffset: 30; }

/* ============================================================
   BACKGROUND SECTIONS
   ============================================================ */

/* Alternate sections — light royal blue tint */
.xero-bg-royal {
  background: linear-gradient(180deg, #f8f9ff 0%, #f0f4ff 100%);
}

/* Deep section — dark royal blue */
.xero-bg-deep {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  color: #ffffff;
}

/* Grain texture overlay */
.xero-bg-deep::before,
.xero-bg-royal-deep::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   ANIMATED HEADING UNDERLINE
   ============================================================ */

.xero-heading-line {
  display: inline-block;
  position: relative;
}

.xero-heading-line::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 3px;
  width: 0;
  background: var(--xo-grad-beam);
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.xero-heading-line.revealed::after {
  width: 100%;
}

/* ============================================================
   PRODUCT CARDS — Xero Style
   ============================================================ */

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

.xero-product-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(30,58,138,0.10);
  border-radius: 20px;
  padding: 30px 28px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.xero-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--xo-grad-beam);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.xero-product-card:hover {
  border-color: rgba(255,107,0,0.25);
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(255,107,0,0.12),
    0 4px 16px rgba(30,58,138,0.08);
}

.xero-product-card:hover::before { transform: scaleX(1); }

.xero-prod-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.xero-prod-icon.orange-bg {
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,140,0,0.08));
  box-shadow:
    3px 3px 8px rgba(255,107,0,0.15),
    -2px -2px 6px rgba(255,255,255,0.9);
}
.xero-prod-icon.sky-bg {
  background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(14,165,233,0.08));
  box-shadow:
    3px 3px 8px rgba(56,189,248,0.18),
    -2px -2px 6px rgba(255,255,255,0.9);
}
.xero-prod-icon.royal-bg {
  background: linear-gradient(135deg, rgba(30,58,138,0.10), rgba(15,23,42,0.06));
  box-shadow:
    3px 3px 8px rgba(30,58,138,0.15),
    -2px -2px 6px rgba(255,255,255,0.9);
}

.xero-product-card:hover .xero-prod-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* ============================================================
   WHY CARDS — Neumorphic
   ============================================================ */

.xero-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.xero-why-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(30,58,138,0.08);
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.xero-why-card::before {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
}

.xero-why-card.orange-glow::before {
  background: radial-gradient(circle, rgba(255,107,0,0.15), transparent 70%);
}
.xero-why-card.sky-glow::before {
  background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 70%);
}

.xero-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,107,0,0.20);
  box-shadow:
    0 20px 50px rgba(30,58,138,0.10),
    0 4px 16px rgba(255,107,0,0.08);
}

.xero-why-card:hover::before {
  opacity: 1;
  bottom: -30px;
}

.xero-why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  transition: all 0.3s ease;
}

.xero-why-icon.orange-node {
  background: linear-gradient(135deg, #fff8f3, #fff0e6);
  box-shadow:
    5px 5px 12px rgba(255,107,0,0.18),
    -4px -4px 10px rgba(255,255,255,0.95),
    inset 1px 1px 2px rgba(255,255,255,0.9);
}
.xero-why-icon.sky-node {
  background: linear-gradient(135deg, #f0f9ff, #e6f4ff);
  box-shadow:
    5px 5px 12px rgba(56,189,248,0.18),
    -4px -4px 10px rgba(255,255,255,0.95),
    inset 1px 1px 2px rgba(255,255,255,0.9);
}
.xero-why-icon.royal-node {
  background: linear-gradient(135deg, #f0f4ff, #e6eaff);
  box-shadow:
    5px 5px 12px rgba(30,58,138,0.15),
    -4px -4px 10px rgba(255,255,255,0.95),
    inset 1px 1px 2px rgba(255,255,255,0.9);
}

.xero-why-card:hover .xero-why-icon {
  transform: scale(1.12) rotate(-5deg);
}

/* ============================================================
   TECH STACK — Floating Nodes
   ============================================================ */

.xero-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.xero-tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(30,58,138,0.10);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--xo-royal-deep);
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.xero-tech-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--xo-grad-beam);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.xero-tech-item:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255,107,0,0.30);
  color: var(--xo-orange);
  box-shadow: 0 8px 24px rgba(255,107,0,0.15);
}

/* ============================================================
   TESTIMONIAL CARDS — Glassmorphism
   ============================================================ */

.xero-testimonial-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(30,58,138,0.10);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(16px);
}

.xero-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(255,107,0,0.08);
  pointer-events: none;
  font-weight: 900;
}

.xero-testimonial-card:hover {
  border-color: rgba(56,189,248,0.30);
  box-shadow:
    0 20px 50px rgba(30,58,138,0.10),
    0 0 0 1px rgba(56,189,248,0.15);
  transform: translateY(-4px);
}

/* Stars */
.xero-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.xero-star {
  width: 16px; height: 16px;
  color: #f59e0b;
}

/* ============================================================
   PARTNER/AWARD LOGOS — Infinite Scroll
   ============================================================ */

.xero-logo-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.xero-logo-track-wrapper::before,
.xero-logo-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.xero-logo-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.xero-logo-track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}

.xero-logo-track {
  display: flex;
  gap: 48px;
  animation: xero-logo-scroll 28s linear infinite;
  width: max-content;
}

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

/* ============================================================
   CTA SECTION — Dark Royal Blue
   ============================================================ */

.xero-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.xero-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(56,189,248,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.xero-cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   NAVBAR — Xero Enhanced
   ============================================================ */

.navbar.xero-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(30,58,138,0.10);
  box-shadow: 0 2px 20px rgba(30,58,138,0.06);
}

/* Gradient nav underline */
.nav-links a::after {
  background: var(--xo-grad-beam) !important;
}

/* ============================================================
   SECTION TAGS — Enhanced
   ============================================================ */

.xero-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.xero-section-tag.orange-tag {
  color: var(--xo-orange);
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.22);
}

.xero-section-tag.sky-tag {
  color: var(--xo-sky-2);
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.22);
}

.xero-section-tag.royal-tag {
  color: var(--xo-royal);
  background: rgba(30,58,138,0.08);
  border: 1px solid rgba(30,58,138,0.22);
}

.xero-section-tag .tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: xero-badge-pulse 2s ease-in-out infinite;
}

/* ============================================================
   GRADIENT TEXT — Extended Palette
   ============================================================ */

.xero-g-sky {
  background: var(--xo-grad-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xero-g-beam {
  background: var(--xo-grad-beam);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   ERP DASHBOARD MOCKUP — Themed
   ============================================================ */

.xero-dashboard {
  background: linear-gradient(135deg, #f0f4ff, #fff8f3);
  border: 1px solid rgba(30,58,138,0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    12px 12px 30px rgba(30,58,138,0.12),
    -8px -8px 20px rgba(255,255,255,0.9),
    inset 1px 1px 2px rgba(255,255,255,0.9);
  animation: xero-float 7s ease-in-out infinite;
}

@keyframes xero-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}

.xero-dash-stat {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(30,58,138,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow:
    3px 3px 8px rgba(30,58,138,0.10),
    -2px -2px 6px rgba(255,255,255,0.8);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .xero-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .xero-hero-card {
    width: calc(100% - 24px);
    padding: 60px 20px 50px;
    margin: 80px auto 40px;
  }
  .xero-pipeline { max-width: 90%; }
  .xero-pipe-line { flex: none; width: 60px; }
  .xero-why-grid { grid-template-columns: 1fr; }
  .xero-product-grid { grid-template-columns: 1fr; }
  .xero-partners { gap: 28px; }
}

@media (max-width: 480px) {
  .xero-hero-card { border-radius: 18px; margin: 70px auto 30px; }
  .xero-node { width: 40px; height: 40px; }
  .xero-node-center { width: 58px; height: 58px; }
  .xero-node svg { width: 18px; height: 18px; }
}

/* ============================================================
   SECTION-LEVEL OVERRIDES — Enhance existing sections
   ============================================================ */

/* Products section — light sky tint */
#products {
  background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
  position: relative;
}
#products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b00, #38bdf8, #1e3a8a);
}

/* Product cards — glass overlay on existing cards */
.product-card {
  background: rgba(255,255,255,0.88) !important;
  border: 1px solid rgba(30,58,138,0.10) !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1) !important;
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--xo-orange), var(--xo-sky));
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover {
  border-color: rgba(255,107,0,0.22) !important;
  box-shadow: 0 20px 60px rgba(255,107,0,0.10), 0 4px 16px rgba(30,58,138,0.08) !important;
  transform: translateY(-8px) !important;
}
.product-card:hover::after { transform: scaleX(1); }

/* Card icons — neumorphic */
.product-card .card-icon {
  background: linear-gradient(135deg, #fff8f3, #fff0e6) !important;
  border: none !important;
  box-shadow:
    4px 4px 10px rgba(255,107,0,0.14),
    -3px -3px 8px rgba(255,255,255,0.95),
    inset 1px 1px 2px rgba(255,255,255,0.9) !important;
}
.product-card:hover .card-icon {
  box-shadow:
    5px 5px 14px rgba(255,107,0,0.22),
    -4px -4px 10px rgba(255,255,255,0.95),
    inset 1px 1px 2px rgba(255,255,255,0.9),
    0 0 20px rgba(255,107,0,0.20) !important;
}

/* ERP section — royal blue tint */
#erp {
  background: linear-gradient(180deg, #f0f4ff 0%, #e8f0ff 100%) !important;
  position: relative;
}

/* Feature blocks — neumorphic */
.feature-block {
  background: rgba(255,255,255,0.80) !important;
  border: 1px solid rgba(30,58,138,0.08) !important;
  box-shadow:
    3px 3px 10px rgba(30,58,138,0.08),
    -2px -2px 8px rgba(255,255,255,0.85) !important;
  transition: all 0.3s ease !important;
}
.feature-block:hover {
  border-color: rgba(56,189,248,0.25) !important;
  box-shadow:
    6px 6px 20px rgba(30,58,138,0.12),
    -4px -4px 12px rgba(255,255,255,0.9),
    0 0 0 1px rgba(56,189,248,0.15) !important;
  transform: translateY(-3px);
}
.feature-block .f-icon {
  background: linear-gradient(135deg, #fff8f3, #fff0e6) !important;
  border-radius: 50% !important;
  box-shadow:
    3px 3px 8px rgba(255,107,0,0.15),
    -2px -2px 6px rgba(255,255,255,0.9) !important;
}

/* Dashboard mockup — light themed */
.dashboard-mockup {
  background: linear-gradient(135deg, #f0f4ff, #fff8f3) !important;
  border: 1px solid rgba(30,58,138,0.12) !important;
  box-shadow:
    12px 12px 30px rgba(30,58,138,0.12),
    -8px -8px 20px rgba(255,255,255,0.9),
    inset 1px 1px 2px rgba(255,255,255,0.9) !important;
}
.dash-header { background: rgba(30,58,138,0.06) !important; }
.dash-stat {
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(30,58,138,0.08) !important;
  box-shadow: 2px 2px 6px rgba(30,58,138,0.08), -1px -1px 4px rgba(255,255,255,0.8) !important;
}
.ds-lbl { color: rgba(15,23,42,0.5) !important; }

/* Why section */
#why {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

/* Why cards — neumorphic */
.why-card {
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(30,58,138,0.08) !important;
  box-shadow:
    5px 5px 15px rgba(30,58,138,0.08),
    -4px -4px 12px rgba(255,255,255,0.9) !important;
  transition: all 0.4s ease !important;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  border-color: rgba(255,107,0,0.20) !important;
  box-shadow:
    10px 10px 30px rgba(30,58,138,0.12),
    -6px -6px 18px rgba(255,255,255,0.95),
    0 0 0 1px rgba(255,107,0,0.12) !important;
  transform: translateY(-8px) !important;
}
.why-card .why-icon {
  background: linear-gradient(135deg, #fff8f3, #fff0e6) !important;
  box-shadow:
    5px 5px 12px rgba(255,107,0,0.15),
    -4px -4px 10px rgba(255,255,255,0.95),
    inset 1px 1px 2px rgba(255,255,255,0.9) !important;
  border-radius: 50% !important;
}
.why-card:nth-child(even) .why-icon {
  background: linear-gradient(135deg, #f0f9ff, #e6f4ff) !important;
  box-shadow:
    5px 5px 12px rgba(56,189,248,0.15),
    -4px -4px 10px rgba(255,255,255,0.95),
    inset 1px 1px 2px rgba(255,255,255,0.9) !important;
}

/* Industries section — sky tint */
#industries {
  background: linear-gradient(180deg, #f0f8ff 0%, #e6f2ff 100%) !important;
}
.industry-card {
  background: rgba(255,255,255,0.82) !important;
  border: 1px solid rgba(30,58,138,0.08) !important;
  box-shadow:
    4px 4px 12px rgba(30,58,138,0.08),
    -3px -3px 8px rgba(255,255,255,0.9) !important;
  transition: all 0.35s ease !important;
}
.industry-card:hover {
  border-color: rgba(56,189,248,0.30) !important;
  transform: translateY(-6px) scale(1.03) !important;
  box-shadow:
    8px 8px 24px rgba(56,189,248,0.15),
    -5px -5px 14px rgba(255,255,255,0.95) !important;
}
.ind-icon {
  background: linear-gradient(135deg, #f0f9ff, #e6f2ff) !important;
  border-radius: 50% !important;
  box-shadow:
    3px 3px 8px rgba(56,189,248,0.18),
    -2px -2px 6px rgba(255,255,255,0.9) !important;
}

/* Testimonials section */
#testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}
.testimonial-card {
  background: rgba(255,255,255,0.88) !important;
  border: 1px solid rgba(30,58,138,0.08) !important;
  box-shadow:
    5px 5px 18px rgba(30,58,138,0.08),
    -4px -4px 12px rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(16px) !important;
  transition: all 0.4s ease !important;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 18px;
  font-size: 5rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(255,107,0,0.07);
  pointer-events: none;
  font-weight: 900;
}
.testimonial-card:hover {
  border-color: rgba(56,189,248,0.22) !important;
  transform: translateY(-4px) !important;
  box-shadow:
    8px 8px 30px rgba(56,189,248,0.12),
    -5px -5px 16px rgba(255,255,255,0.95) !important;
}
.client-avatar {
  background: linear-gradient(135deg, #ff6b00, #38bdf8) !important;
}
.stars { color: #f59e0b !important; }

/* Tech section */
#tech {
  background: linear-gradient(180deg, #f0f4ff 0%, #e8f0ff 100%) !important;
}
.tech-item {
  background: rgba(255,255,255,0.88) !important;
  border: 1px solid rgba(30,58,138,0.10) !important;
  box-shadow:
    4px 4px 12px rgba(30,58,138,0.08),
    -3px -3px 8px rgba(255,255,255,0.9) !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
}
.tech-item:hover {
  border-color: rgba(255,107,0,0.25) !important;
  color: var(--xo-orange) !important;
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow:
    6px 6px 20px rgba(255,107,0,0.12),
    -4px -4px 12px rgba(255,255,255,0.95) !important;
}

/* Contact section */
#contact {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #0c1a4a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(255,107,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(56,189,248,0.10) 0%, transparent 55%);
  pointer-events: none;
}
#contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
  pointer-events: none;
}
#contact .section-tag {
  color: var(--xo-sky) !important;
  background: rgba(56,189,248,0.10) !important;
  border-color: rgba(56,189,248,0.22) !important;
}
#contact h2, #contact p { color: rgba(255,255,255,0.9) !important; }
#contact p { color: rgba(255,255,255,0.65) !important; }

/* About section */
#about {
  background: linear-gradient(180deg, #f8f9ff 0%, #f0f4ff 100%) !important;
}
.asr-card {
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(30,58,138,0.08) !important;
  box-shadow:
    5px 5px 15px rgba(30,58,138,0.08),
    -4px -4px 12px rgba(255,255,255,0.9) !important;
  transition: all 0.3s ease !important;
}
.asr-card:hover {
  border-color: rgba(255,107,0,0.20) !important;
  transform: translateY(-5px) !important;
  box-shadow:
    8px 8px 24px rgba(255,107,0,0.10),
    -5px -5px 14px rgba(255,255,255,0.95) !important;
}

/* Footer — light sky blue */
footer {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff) !important;
  color: #1e293b !important;
  border-top: 1px solid #bae6fd !important;
}
footer h5 { color: #0f172a !important; font-weight: 700 !important; }
footer p  { color: #334155 !important; font-weight: 500 !important; }
footer a  { color: #1e293b !important; font-weight: 500 !important; }
footer a:hover { color: var(--dr-orange, #ff6500) !important; }
.social-link {
  background: #fff3eb !important;
  border: 1px solid #ff6500 !important;
  color: #ff6500 !important;
  transition: all 0.3s ease !important;
}
.social-link:hover {
  background: #ff6500 !important;
  border-color: #ff6500 !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 4px 15px rgba(255, 101, 0, 0.4) !important;
}
.footer-bottom {
  border-top: 1px solid #bae6fd !important;
  color: #475569 !important;
}
.footer-bottom p {
  color: #334155 !important;
}

/* Navbar — enhanced light */
.navbar:not(.scrolled) {
  background: transparent !important;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.94) !important;
  border-bottom: 1px solid rgba(30,58,138,0.10) !important;
  box-shadow: 0 2px 20px rgba(30,58,138,0.08) !important;
}

/* Section tags — unified */
.section-tag {
  background: rgba(255,107,0,0.08) !important;
  border: 1px solid rgba(255,107,0,0.22) !important;
  color: var(--xo-orange) !important;
}

/* Buttons — enhanced */
.btn-primary {
  background: linear-gradient(135deg, #ff6b00, #ff8c00) !important;
  box-shadow: 0 4px 24px rgba(255,107,0,0.30), 0 2px 8px rgba(255,107,0,0.20) !important;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 40px rgba(255,107,0,0.45), 0 4px 16px rgba(255,107,0,0.30) !important;
}

.btn-outline {
  border: 1px solid rgba(30,58,138,0.20) !important;
  color: var(--xo-royal) !important;
  background: rgba(255,255,255,0.60) !important;
  backdrop-filter: blur(8px) !important;
}
.btn-outline:hover {
  border-color: var(--xo-orange) !important;
  color: var(--xo-orange) !important;
  background: rgba(255,107,0,0.05) !important;
  box-shadow: 0 4px 20px rgba(255,107,0,0.15) !important;
}

/* Stat numbers — hero */
.h-stat .num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--xo-orange), var(--xo-sky-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-stat .lbl {
  color: rgba(15,23,42,0.55);
  font-size: 0.82rem;
  font-weight: 500;
}

/* WhatsApp FAB */
.whatsapp-fab {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35) !important;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(37,211,102,0.50) !important;
}

/* Back-to-top */
.back-top {
  background: linear-gradient(135deg, #ff6b00, #ff8c00) !important;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35) !important;
  color: #fff !important;
}

/* Custom scrollbar */
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--xo-orange), var(--xo-sky)) !important;
}

/* Hero inner for positioning */
.xero-hero-card .hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.xero-hero-card .hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WSB (Why Secura Banner) */
.why-secura-banner {
  background: rgba(255,255,255,0.82) !important;
  border: 1px solid rgba(30,58,138,0.10) !important;
  box-shadow:
    8px 8px 24px rgba(30,58,138,0.08),
    -6px -6px 18px rgba(255,255,255,0.9) !important;
  border-radius: 20px !important;
  position: relative;
  overflow: hidden;
}
.why-secura-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--xo-orange), var(--xo-sky));
}
.wsb-check { filter: none; }
.wsb-item {
  transition: all 0.2s ease;
  padding: 6px 0;
}
.wsb-item:hover { transform: translateX(4px); }

/* Location badges */
.loc-badge {
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(30,58,138,0.12) !important;
  box-shadow:
    3px 3px 8px rgba(30,58,138,0.08),
    -2px -2px 6px rgba(255,255,255,0.9) !important;
  border-radius: 50px !important;
  padding: 6px 14px !important;
}

