/* ================================================================
   ADMEXA — premium-theme.css  v4
   Deep navy · vivid red accents · glass morphism
   All text guaranteed visible. No background-clip tricks.
================================================================ */

/* ── Tokens ── */
:root {
  --bg:          #04060f;
  --bg-2:        #080d1c;
  --bg-3:        #0d1228;
  --bg-4:        #121830;
  --red:         #c0392b;
  --orange:      #e05a2a;
  --red-glow:    rgba(192,57,43,0.22);
  --glass:       rgba(255,255,255,0.05);
  --glass-b:     rgba(255,255,255,0.09);
  --white:       #ffffff;
  --white-70:    rgba(255,255,255,0.72);
  --white-45:    rgba(255,255,255,0.45);
  --white-25:    rgba(255,255,255,0.25);
}

/* ── Reset base ── */
*, *::before, *::after { box-sizing: border-box; }
body { background: var(--bg) !important; color: var(--white) !important; }

/* ================================================================
   NAV
================================================================ */
nav {
  background: rgba(4,6,15,0.9) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}
.nav-logo-text { color: #fff !important; font-weight: 700 !important; }
nav ul a { color: rgba(255,255,255,0.6) !important; font-size: 13px !important; letter-spacing: .5px !important; }
nav ul a:hover { color: #fff !important; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(192,57,43,0.4) !important;
}
.nav-cta:hover { background: var(--orange) !important; }
.burger span { background: rgba(255,255,255,0.75) !important; }
.mobile-menu {
  background: rgba(4,6,15,0.97) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  backdrop-filter: blur(28px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}
.mobile-menu a { color: rgba(255,255,255,0.7) !important; }

/* ================================================================
   HERO — rich gradient background + vivid text
================================================================ */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(192,57,43,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(40,80,200,0.1) 0%, transparent 60%),
    linear-gradient(160deg, #04060f 0%, #0a0e20 55%, #110818 100%) !important;
  min-height: 100vh !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Animated grain texture overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* Grid lines */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
}

/* Hero content ALWAYS on top */
.hero-grid, .hero-content, .hero-visual, .hero-tag,
.hero-btns, .hero-visual-block {
  position: relative !important;
  z-index: 20 !important;
}

.hero-grid {
  padding: 0 60px !important;
  gap: 80px !important;
  align-items: center !important;
  min-height: 100vh !important;
}

.hero-content h1 {
  font-size: 58px !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 28px !important;
}
.hero-content h1 span {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}
.hero-content p {
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.72) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.72) !important;
  max-width: 460px !important;
  margin-bottom: 44px !important;
}
.hero-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 7px 16px !important;
  border: 1px solid rgba(192,57,43,0.4) !important;
  border-radius: 100px !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  font-weight: 700 !important;
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
  background: rgba(192,57,43,0.08) !important;
  margin-bottom: 28px !important;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* Stat cards */
.hero-stat-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 16px !important;
  padding: 28px 32px !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
  transition: border-color .3s, background .3s, transform .3s !important;
}
.hero-stat-card:hover {
  border-color: rgba(192,57,43,0.3) !important;
  background: rgba(255,255,255,0.07) !important;
  transform: translateX(8px) !important;
}
.hero-stat-card.accent {
  border-color: rgba(192,57,43,0.2) !important;
  background: rgba(192,57,43,0.06) !important;
}
.hsc-num {
  font-size: 46px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 8px !important;
}
.hsc-num span { color: var(--orange) !important; -webkit-text-fill-color: var(--orange) !important; }
.hsc-label {
  font-size: 12px !important;
  color: rgba(255,255,255,0.45) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.45) !important;
  letter-spacing: .5px !important;
}

/* Buttons */
.btn-primary, .cta-btn, .nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 14px 32px !important;
  letter-spacing: .3px !important;
  box-shadow: 0 6px 28px rgba(192,57,43,0.38) !important;
  transition: transform .2s, box-shadow .2s, background .2s !important;
  cursor: pointer !important;
}
.btn-primary:hover, .cta-btn:hover {
  background: var(--orange) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 40px rgba(192,57,43,0.5) !important;
}
.btn-outline {
  background: transparent !important;
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  padding: 14px 28px !important;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.55) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* ================================================================
   STATS BAR
================================================================ */
.stats-bar {
  background: rgba(255,255,255,0.03) !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  padding: 36px 60px !important;
}
.stat-num {
  font-size: 30px !important;
  font-weight: 800 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  line-height: 1 !important;
}
.stat-num span { color: var(--orange) !important; -webkit-text-fill-color: var(--orange) !important; }
.stat-label {
  font-size: 9px !important;
  letter-spacing: 2.5px !important;
  color: rgba(255,255,255,0.38) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.38) !important;
  margin-top: 6px !important;
}

/* ================================================================
   SECTIONS
================================================================ */
.sec { padding: 96px 60px !important; }
.white-sec, .light-sec { background: var(--bg-2) !important; }
.dark-sec    { background: var(--bg-3) !important; position: relative; overflow: hidden; }
.darkest-sec { background: var(--bg)   !important; position: relative; overflow: hidden; }

/* Subtle accent orb on dark sections */
.dark-sec::before, .darkest-sec::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.07) 0%, transparent 65%);
  top: -200px; right: -150px; pointer-events: none; z-index: 0;
}
.dark-sec > *, .darkest-sec > * { position: relative; z-index: 1; }

/* ================================================================
   ALL TEXT — guarantee visibility
================================================================ */
h1, h2, h3, h4, h5 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}
p, li, span, label, td, th { color: rgba(255,255,255,0.68) !important; -webkit-text-fill-color: rgba(255,255,255,0.68) !important; }

/* Override for specific known coloured elements */
.sec-label {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
  font-size: 10px !important;
  letter-spacing: 3.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}
.sec-title {
  font-size: 42px !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 20px !important;
}
.sec-sub {
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.58) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.58) !important;
  max-width: 580px !important;
  margin-bottom: 52px !important;
}

/* ================================================================
   CARDS — glass morphism with vivid hover
================================================================ */
.srv-card, .why-card, .gp-card, .chaos-card, .gain-step, .me-step {
  background: var(--glass) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s !important;
  padding: 28px !important;
}
.srv-card:hover, .why-card:hover, .gp-card:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(192,57,43,0.35) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(192,57,43,0.2) !important;
}
.srv-card h3, .why-card h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 10px !important;
}
.srv-num {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  color: rgba(192,57,43,0.7) !important;
  -webkit-text-fill-color: rgba(192,57,43,0.7) !important;
  margin-bottom: 14px !important;
}
.srv-tag {
  font-size: 9px !important;
  letter-spacing: 1.5px !important;
  color: rgba(255,255,255,0.28) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.28) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding-top: 12px !important;
  margin-top: 16px !important;
}

/* ================================================================
   GLASS TILES (services)
================================================================ */
.glass-tile {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 20px !important;
  -webkit-backdrop-filter: blur(16px) !important;
  backdrop-filter: blur(16px) !important;
  transition: background .3s, border-color .3s, transform .35s, box-shadow .35s !important;
  overflow: hidden !important;
}
.glass-tile::before { display: none !important; }
.glass-tile:hover {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(192,57,43,0.3) !important;
  transform: translateY(-7px) !important;
  box-shadow: 0 28px 64px rgba(0,0,0,0.5) !important;
}
.glass-tile-icon { font-size: 30px !important; margin-bottom: 16px !important; }
.glass-tile-content h4 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 10px !important;
}
.glass-tile-tags span {
  font-size: 10px !important;
  color: rgba(255,255,255,0.42) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.42) !important;
  border-color: rgba(255,255,255,0.1) !important;
  background: rgba(255,255,255,0.04) !important;
  border-radius: 100px !important;
  padding: 4px 12px !important;
}
.glass-tile-num {
  color: rgba(255,255,255,0.18) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.18) !important;
}

/* ================================================================
   DIVISION CARDS & OTHER CARDS
================================================================ */
.division-card, .geo-card, .principle-card, .comp-card {
  background: var(--glass) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
  transition: transform .3s, border-color .3s !important;
  padding: 26px !important;
}
.division-card:hover, .geo-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(192,57,43,0.3) !important;
}
.division-tags span {
  background: rgba(192,57,43,0.1) !important;
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
  border-radius: 100px !important;
  padding: 4px 12px !important;
  font-size: 10px !important;
}

/* ================================================================
   CTA SECTION
================================================================ */
.cta-sec {
  background: linear-gradient(135deg, #04060f 0%, #120818 100%) !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  padding: 64px 60px !important;
}
.cta-compact { max-width: 700px; margin: 0 auto; }
.cta-compact-text h2 {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 12px !important;
}

/* ================================================================
   SRV-CTA-ROW
================================================================ */
.srv-cta-row {
  background: var(--glass) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
  padding: 28px 32px !important;
  margin-top: 40px !important;
}

/* ================================================================
   PHOTO SECTIONS
================================================================ */
.photo-banner img { filter: brightness(.55) saturate(.8) !important; }
.photo-strip-item img { filter: brightness(.65) saturate(.85) !important; }
.photo-banner-overlay h3 { color: #fff !important; -webkit-text-fill-color: #fff !important; }
.photo-banner-overlay h3 span { color: var(--orange) !important; -webkit-text-fill-color: var(--orange) !important; }

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: #020408 !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
}
.footer-col h5 {
  font-size: 9px !important;
  letter-spacing: 2.5px !important;
  color: rgba(255,255,255,0.3) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.3) !important;
}
footer a:hover { color: #fff !important; -webkit-text-fill-color: #fff !important; }

/* ================================================================
   CONTACT FORMS
================================================================ */
.cta-form input, .cta-form textarea,
.contact-form input, .contact-form textarea, .contact-form select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-radius: 10px !important;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3) !important; opacity: 1 !important; }
input:focus, textarea:focus {
  border-color: rgba(192,57,43,0.45) !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12) !important;
  outline: none !important;
}

/* ================================================================
   PAGE HEROES (inner pages)
================================================================ */
.page-hero {
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(192,57,43,0.15) 0%, transparent 60%),
              linear-gradient(160deg, #04060f 0%, #0d1228 100%) !important;
  padding: 100px 60px !important;
  position: relative !important;
  overflow: hidden !important;
}
.page-hero-title {
  font-size: 48px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 20px !important;
}
.page-hero-sub {
  font-size: 17px !important;
  line-height: 1.72 !important;
  color: rgba(255,255,255,0.6) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.6) !important;
  max-width: 560px !important;
}

/* ================================================================
   MODEL NODES
================================================================ */
.model-node {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.1) !important;
  border-radius: 14px !important;
}
.model-node.active {
  background: rgba(192,57,43,0.1) !important;
  border-color: rgba(192,57,43,0.35) !important;
}
.model-node h4 { color: #fff !important; -webkit-text-fill-color: #fff !important; }
.model-node p  { color: rgba(255,255,255,0.45) !important; -webkit-text-fill-color: rgba(255,255,255,0.45) !important; }
.model-arrow { border-color: rgba(255,255,255,0.2) !important; }

/* ================================================================
   DIV BADGES
================================================================ */
.div-badge { font-size: 11px !important; font-weight: 600 !important; }

/* ================================================================
   SCROLLBAR + SELECTION
================================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(192,57,43,0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(192,57,43,0.6); }
::selection { background: rgba(192,57,43,0.25); color: #fff; }

/* ================================================================
   EXPERTISE ROW
================================================================ */
.expertise-item span { color: rgba(255,255,255,0.65) !important; -webkit-text-fill-color: rgba(255,255,255,0.65) !important; }
.expertise-sep { color: rgba(255,255,255,0.18) !important; }

/* ================================================================
   INFOGRAPHIC LEGEND
================================================================ */
.infographic-legend-item { color: rgba(255,255,255,0.5) !important; -webkit-text-fill-color: rgba(255,255,255,0.5) !important; }

/* ================================================================
   MOTION — ensure reveals work
================================================================ */
.reveal-up { opacity: 0; transform: translateY(32px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.reveal-up.in { opacity: 1 !important; transform: none !important; }
.reveal-fade { opacity: 0; transition: opacity .9s ease; }
.reveal-fade.in { opacity: 1 !important; }

/* Hero text never hidden by reveal */
.hero-content h1, .hero-content p, .hero-tag, .hero-btns { opacity: 1 !important; transform: none !important; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .sec { padding: 72px 32px !important; }
  .hero-grid { padding: 0 32px !important; gap: 48px !important; }
  .page-hero { padding: 80px 32px !important; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr !important; padding: 48px 24px !important; }
  .hero-content h1 { font-size: 38px !important; }
  .sec-title { font-size: 28px !important; }
  .sec { padding: 56px 24px !important; }
  .page-hero { padding: 64px 24px !important; }
  .page-hero-title { font-size: 32px !important; }
  .hsc-num { font-size: 32px !important; }
}

/* ================================================================
   HERO ENTRANCE — pure CSS, no JS dependency
================================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-tag {
  animation: heroFadeUp .7s cubic-bezier(.16,1,.3,1) .1s both !important;
}
.hero-content h1 {
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .25s both !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}
.hero-content h1 span {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}
.hero-content p {
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .4s both !important;
  opacity: 1 !important;
  color: rgba(255,255,255,0.72) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.72) !important;
}
.hero-btns {
  animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .55s both !important;
}

/* Stat cards staggered */
.hero-stat-card {
  opacity: 0 !important;
  animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) both !important;
}
.hero-visual-block .hero-stat-card:nth-child(1) { animation-delay: .35s !important; }
.hero-visual-block .hero-stat-card:nth-child(2) { animation-delay: .5s !important; }
.hero-visual-block .hero-stat-card:nth-child(3) { animation-delay: .65s !important; }

/* Stat card text always white */
.hsc-num { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.hsc-num span { color: var(--orange) !important; -webkit-text-fill-color: var(--orange) !important; }
.hsc-label { color: rgba(255,255,255,0.45) !important; -webkit-text-fill-color: rgba(255,255,255,0.45) !important; }

/* ================================================================
   WHAT WE DO — vivid card grid (hero-style)
================================================================ */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.wwd-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s, border-color .3s, box-shadow .35s;
  cursor: default;
}
.wwd-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--accent), 0.7) 50%,
    transparent 100%);
}
.wwd-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent), 0.1) 0%, transparent 65%);
  pointer-events: none;
  transition: opacity .3s;
}
.wwd-card:hover {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(var(--accent), 0.35) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(var(--accent), 0.15) !important;
}
.wwd-card:hover::after { opacity: 1.5; }

.wwd-expand { grid-column: span 1; }

.wwd-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(var(--accent), 0.7) !important;
  -webkit-text-fill-color: rgba(var(--accent), 0.7) !important;
  margin-bottom: 20px;
}
.wwd-icon {
  font-size: 22px;
  color: rgba(var(--accent), 0.85) !important;
  -webkit-text-fill-color: rgba(var(--accent), 0.85) !important;
  margin-bottom: 16px;
}
.wwd-card h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 12px !important;
  line-height: 1.3 !important;
}
.wwd-card p {
  font-size: 13px !important;
  line-height: 1.68 !important;
  color: rgba(255,255,255,0.52) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.52) !important;
}
.wwd-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, rgba(var(--accent),0.8), transparent);
  transition: width .5s cubic-bezier(.16,1,.3,1);
  border-radius: 0 0 0 20px;
}
.wwd-card:hover .wwd-bar { width: 60%; }

@media (max-width: 900px) {
  .wwd-grid { grid-template-columns: repeat(2,1fr); }
  .wwd-expand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .wwd-grid { grid-template-columns: 1fr; }
  .wwd-expand { grid-column: span 1; }
}
