/* =============================================================================
   Add World — Custom Theme  v2.0
   Stack : Bootstrap 5 + custom CSS (zero other frameworks)
   File  : css/style.css
   =============================================================================
   Table of contents
   01. Design tokens
   02. Base & resets
   03. Custom scrollbar
   04. Page-level utilities (highlight, pill, divider, badge)
   05. Navbar
   06. Buttons
   07. Hero
   08. Section helpers + dot-grid texture
   09. Scroll-reveal (jQuery-driven)
   10. About pillars
   11. Feature cards
   12. Stats band
   13. Use-case cards
   14. Why section
   15. How-it-works (Timeline)
   16. CTA band
   17. Footer
   18. Floating quote button
   19. Back-to-top
   20. Modal
   21. Responsive overrides
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────────────────────
   01. DESIGN TOKENS
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  --aw-gold:          #f5a302;
  --aw-gold-dark:     #c98300;
  --aw-gold-light:    #ffd980;
  --aw-gold-soft:     #fff8eb;
  --aw-gold-glow:     rgba(245, 163, 2, .28);
  --aw-ink:           #0b1220;
  --aw-ink-2:         #1f2937;
  --aw-ink-3:         #374151;
  --aw-surface:       #ffffff;
  --aw-surface-alt:   #f8f9fb;
  --aw-muted:         #6b7280;
  --aw-muted-2:       #9ca3af;
  --aw-border:        rgba(17, 24, 39, .08);
  --aw-border-strong: rgba(17, 24, 39, .14);
  --aw-border-light:  rgba(255, 255, 255, .10);
  --aw-shadow-xs:     0 2px 8px  rgba(17, 24, 39, .05);
  --aw-shadow-sm:     0 4px 16px rgba(17, 24, 39, .08);
  --aw-shadow:        0 12px 36px rgba(17, 24, 39, .11);
  --aw-shadow-lg:     0 24px 72px rgba(17, 24, 39, .18);
  --aw-gold-shadow:   0 10px 28px rgba(245, 163, 2, .36);
  --aw-radius:        12px;
  --aw-radius-lg:     16px;
  --aw-radius-xl:     30px;
  --aw-ease:          cubic-bezier(.4, 0, .2, 1);
  --aw-ease-out:      cubic-bezier(0, 0, .2, 1);
  --aw-t:             .28s;
}

/* ─────────────────────────────────────────────────────────────────────────────
   02. BASE & RESETS
   ───────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  color: var(--aw-ink);
  background: var(--aw-surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
}
p          { margin-bottom: 0; }
a          { color: var(--aw-gold-dark); text-decoration: none; }
a:hover    { color: var(--aw-gold); }
img        { max-width: 100%; display: block; }
::selection { background: var(--aw-gold); color: #fff; }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--aw-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   03. CUSTOM SCROLLBAR (webkit)
   ───────────────────────────────────────────────────────────────────────────── */
::-webkit-scrollbar            { width: 5px; }
::-webkit-scrollbar-track      { background: #f1f2f4; }
::-webkit-scrollbar-thumb      {
  background: linear-gradient(180deg, var(--aw-gold), var(--aw-gold-dark));
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: var(--aw-gold-dark); }

/* ─────────────────────────────────────────────────────────────────────────────
   04. PAGE-LEVEL UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */

/* Inline gold text highlight */
.aw-highlight       { color: var(--aw-gold-dark); }
.aw-highlight-light { color: var(--aw-gold-light); }

/* Eyebrow label */
.aw-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--aw-gold-dark);
  margin-bottom: .6rem;
}
.aw-section--dark .aw-eyebrow { color: var(--aw-gold-light); }

/* Section title */
.aw-section-title {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  letter-spacing: -.02em;
  margin-bottom: .85rem;
}

/* Subtitle */
.aw-section-sub {
  color: var(--aw-muted);
  max-width: 780px;
  line-height: 1.75;
}
.aw-section--dark .aw-section-sub { color: #9ca3af; }

/* Gold accent divider */
.aw-divider {
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--aw-gold), var(--aw-gold-light));
}

/* Capability pill */
.aw-pill {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  background: var(--aw-gold-soft);
  color: var(--aw-gold-dark);
  border: 1px solid rgba(245, 163, 2, .22);
  padding: .34rem .9rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  white-space: nowrap;
}

/* Small badge */
.aw-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .65rem;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.aw-badge-gold {
  background: linear-gradient(135deg, var(--aw-gold), #ffcf60);
  color: #1a1300;
}
.aw-badge-dark {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #e5e7eb;
}

/* ─────────────────────────────────────────────────────────────────────────────
   05. NAVBAR
   ───────────────────────────────────────────────────────────────────────────── */
#aw-navbar {
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(200%) blur(18px);
          backdrop-filter: saturate(200%) blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--aw-t) var(--aw-ease),
    box-shadow   var(--aw-t) var(--aw-ease),
    background   var(--aw-t) var(--aw-ease);
  padding: .7rem 0;
  position: relative;
}

/* Animated gold underline – hidden until scrolled */
#aw-navbar::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--aw-gold), transparent);
  transition: width .5s var(--aw-ease);
}
#aw-navbar.is-scrolled {
  border-color: var(--aw-border);
  box-shadow: var(--aw-shadow-sm);
  background: rgba(255, 255, 255, .97);
}
#aw-navbar.is-scrolled::after { width: 100%; }

/* Brand */
.aw-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  letter-spacing: .2em;
  font-size: .98rem;
  color: var(--aw-ink) !important;
  text-decoration: none;
}
.aw-brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--aw-gold), #ffcf60);
  display: grid; place-items: center;
  color: #1a1300;
  box-shadow: var(--aw-gold-shadow), inset 0 0 0 1px rgba(0,0,0,.07);
  flex-shrink: 0;
  transition: transform var(--aw-t) var(--aw-ease);
}
.aw-brand:hover .aw-brand-mark { transform: rotate(-6deg) scale(1.08); }

/* Nav links */
#aw-navbar .nav-link {
  color: var(--aw-ink) !important;
  font-weight: 500;
  font-size: .91rem;
  padding: .4rem .82rem !important;
  border-radius: 99px;
  transition: background var(--aw-t) var(--aw-ease),
              color     var(--aw-t) var(--aw-ease);
  position: relative;
}
#aw-navbar .nav-link:hover,
#aw-navbar .nav-link.active {
  background: var(--aw-gold-soft);
  color: var(--aw-gold-dark) !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   06. BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn-aw {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  border-radius: 99px;
  letter-spacing: .01em;
  transition:
    transform    var(--aw-t) var(--aw-ease),
    box-shadow   var(--aw-t) var(--aw-ease),
    filter       var(--aw-t) var(--aw-ease),
    background   var(--aw-t) var(--aw-ease);
}
.btn-aw:hover { transform: translateY(-2px); }
.btn-aw:active { transform: translateY(0); }

.btn-aw-primary {
  background: linear-gradient(135deg, var(--aw-gold), #ffbb38);
  color: #1a1300;
  border: 0;
  padding: .72rem 1.5rem;
  box-shadow: var(--aw-gold-shadow);
}
.btn-aw-primary:hover {
  color: #1a1300;
  filter: brightness(1.07);
  box-shadow: 0 16px 36px rgba(245, 163, 2, .52);
}

.btn-aw-ghost {
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  padding: .72rem 1.5rem;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.btn-aw-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }

.btn-aw-outline {
  background: transparent;
  color: var(--aw-ink);
  border: 1.5px solid var(--aw-border-strong);
  padding: .72rem 1.5rem;
}
.btn-aw-outline:hover {
  background: var(--aw-gold-soft);
  border-color: rgba(245,163,2,.35);
  color: var(--aw-gold-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
   07. HERO
   ───────────────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

/* Video layer */
#hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -3;
}

/* Overlay gradient */
#hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1600px 800px at 75%  0%,  rgba(245,163,2,.22), transparent 55%),
    radial-gradient(900px  600px at 20% 100%, rgba(11,18,32,.6),   transparent 60%),
    linear-gradient(180deg,
      rgba(11,18,32,.48)  0%,
      rgba(11,18,32,.70) 50%,
      rgba(11,18,32,.97) 100%
    );
}

/* Dot-grid texture */
#hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Ambient glow orb (decorative) */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(245,163,2,.14);
  top: -120px; right: 10%;
  animation: awFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  background: rgba(11,18,32,.5);
  bottom: 0; left: 5%;
  animation: awFloat 11s ease-in-out infinite reverse;
}
@keyframes awFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.04); }
}

/* Eyebrow badge in hero */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .42rem 1.1rem;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--aw-gold-light);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--aw-gold);
  box-shadow: 0 0 0 0 rgba(245,163,2,.5);
  animation: awPulse 2s ease-out infinite;
}
@keyframes awPulse {
  0%   { box-shadow: 0 0 0 0   rgba(245,163,2,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(245,163,2,0);  }
  100% { box-shadow: 0 0 0 0   rgba(245,163,2,0);   }
}

/* Hero headline */
#hero h1 {
  font-size: clamp(2.3rem, 5.8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.06;
  background: linear-gradient(120deg, #fff 15%, var(--aw-gold-light) 50%, #fff 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

#hero .hero-lead {
  color: rgba(255,255,255,.80);
  font-size: clamp(.97rem, 1.3vw, 1.16rem);
  max-width: 660px;
  line-height: 1.75;
}

/* Trust bar */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  letter-spacing: .05em;
}
.hero-trust .trust-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--aw-gold); opacity: .7; flex-shrink: 0;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
}
.hero-scroll-cue .mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero-scroll-cue .wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,.6);
  border-radius: 99px;
  animation: awWheel 1.8s ease-in-out infinite;
}
@keyframes awWheel {
  0%,100% { opacity: .25; transform: translateY(0); }
  50%      { opacity: 1;   transform: translateY(5px); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   08. SECTION HELPERS + DOT-GRID TEXTURE
   ───────────────────────────────────────────────────────────────────────────── */
.aw-section       { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.aw-section--alt  {
  background: var(--aw-surface-alt);
  position: relative;
}
.aw-section--alt::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(17,24,39,.045) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.aw-section--dark {
  background: var(--aw-ink);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}
.aw-section--dark h2,
.aw-section--dark h3 { color: #fff; }

/* decorative light glow in dark sections */
.aw-section--dark::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,163,2,.06), transparent 65%);
  top: -150px; right: -100px;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   09. SCROLL-REVEAL  (jQuery toggles .aw-visible)
   ───────────────────────────────────────────────────────────────────────────── */
.aw-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--aw-ease-out), transform .7s var(--aw-ease-out);
}
.aw-reveal.aw-visible   { opacity: 1; transform: none; }

.aw-reveal.delay-1 { transition-delay: .10s; }
.aw-reveal.delay-2 { transition-delay: .20s; }
.aw-reveal.delay-3 { transition-delay: .30s; }
.aw-reveal.delay-4 { transition-delay: .40s; }
.aw-reveal.delay-5 { transition-delay: .50s; }
.aw-reveal.delay-6 { transition-delay: .60s; }

/* Scale-in variant for icons */
.aw-reveal-scale {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .6s var(--aw-ease-out), transform .6s var(--aw-ease-out);
}
.aw-reveal-scale.aw-visible { opacity: 1; transform: scale(1); }

/* ─────────────────────────────────────────────────────────────────────────────
   10. ABOUT PILLARS
   ───────────────────────────────────────────────────────────────────────────── */
.aw-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--aw-radius);
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  height: 100%;
  transition: transform var(--aw-t) var(--aw-ease),
              box-shadow var(--aw-t) var(--aw-ease),
              border-color var(--aw-t) var(--aw-ease);
}
.aw-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--aw-shadow);
  border-color: rgba(245,163,2,.28);
}
.aw-pillar .picon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--aw-gold-soft);
  color: var(--aw-gold-dark);
  display: grid; place-items: center;
  transition: background var(--aw-t) var(--aw-ease);
}
.aw-pillar:hover .picon {
  background: linear-gradient(135deg, var(--aw-gold), #ffcf60);
  color: #1a1300;
}
.aw-pillar h4 { font-size: .95rem; margin-bottom: .2rem; }
.aw-pillar p  { color: var(--aw-muted); font-size: .88rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   11. FEATURE CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.aw-feature-card {
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 1.9rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform    var(--aw-t) var(--aw-ease),
    box-shadow   var(--aw-t) var(--aw-ease),
    border-color var(--aw-t) var(--aw-ease);
}
.aw-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--aw-shadow);
  border-color: rgba(245,163,2,.28);
}

/* Top accent bar on hover */
.aw-feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aw-gold), var(--aw-gold-light));
  border-radius: var(--aw-radius) var(--aw-radius) 0 0;
  opacity: 0;
  transition: opacity var(--aw-t) var(--aw-ease);
}
.aw-feature-card:hover::before { opacity: 1; }

/* Watermark card number */
.aw-feature-card::after {
  content: attr(data-num);
  position: absolute;
  top: -.15em; right: .5rem;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
  color: rgba(17,24,39,.035);
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  transition: color var(--aw-t) var(--aw-ease);
}
.aw-feature-card:hover::after { color: rgba(245,163,2,.07); }

/* Icon box */
.aw-feature-card .icon-box {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--aw-gold-soft);
  color: var(--aw-gold-dark);
  display: grid; place-items: center;
  margin-bottom: 1.15rem;
  transition:
    background  var(--aw-t) var(--aw-ease),
    transform   var(--aw-t) var(--aw-ease),
    box-shadow  var(--aw-t) var(--aw-ease);
}
.aw-feature-card:hover .icon-box {
  background: linear-gradient(135deg, var(--aw-gold), #ffcf60);
  color: #1a1300;
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(245,163,2,.35);
}

.aw-feature-card h3 { font-size: 1.03rem; margin-bottom: .45rem; }
.aw-feature-card p  { color: var(--aw-muted); font-size: .93rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   12. STATS BAND  (glassmorphism boxes)
   ───────────────────────────────────────────────────────────────────────────── */
.aw-stats-band {
  background: linear-gradient(135deg, var(--aw-ink) 0%, #162035 50%, var(--aw-ink-2) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.aw-stats-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
/* Large decorative glow */
.aw-stats-band::after {
  content: "";
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,163,2,.08), transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

.aw-stat-box {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--aw-radius);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  position: relative; z-index: 1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition:
    transform     var(--aw-t) var(--aw-ease),
    border-color  var(--aw-t) var(--aw-ease),
    box-shadow    var(--aw-t) var(--aw-ease);
}
.aw-stat-box:hover {
  transform: translateY(-5px);
  border-color: rgba(245,163,2,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}

.aw-stat-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: rgba(245,163,2,.12);
  border: 1px solid rgba(245,163,2,.18);
  color: var(--aw-gold);
  display: grid; place-items: center;
  margin: 0 auto .9rem;
  transition: background var(--aw-t) var(--aw-ease), transform var(--aw-t) var(--aw-ease);
}
.aw-stat-box:hover .aw-stat-icon {
  background: rgba(245,163,2,.22);
  transform: scale(1.1);
}

.aw-stat-num {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--aw-gold), var(--aw-gold-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.aw-stat-label {
  color: #9ca3af;
  font-size: .85rem;
  letter-spacing: .07em;
  margin-top: .4rem;
  display: block;
}

/* ─────────────────────────────────────────────────────────────────────────────
   13. USE-CASE CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.aw-usecase-card {
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition:
    transform   var(--aw-t) var(--aw-ease),
    box-shadow  var(--aw-t) var(--aw-ease);
}
.aw-usecase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--aw-shadow);
}

/* Image wrapper */
.aw-usecase-img {
  position: relative;
  overflow: hidden;
  background: #e9eaec;
}
.aw-usecase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--aw-ease);
}
.aw-usecase-card:hover .aw-usecase-img img { transform: scale(1.08); }

/* Hover overlay reveal */
.aw-usecase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,18,32,.9) 0%, rgba(11,18,32,.35) 60%, transparent 100%);
  display: flex; align-items: flex-end; padding: 1.1rem 1.2rem;
  opacity: 0;
  transition: opacity var(--aw-t) var(--aw-ease);
}
.aw-usecase-card:hover .aw-usecase-overlay { opacity: 1; }
.aw-usecase-explore {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--aw-gold-light);
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
}
.aw-usecase-explore svg {
  transition: transform var(--aw-t) var(--aw-ease);
}
.aw-usecase-card:hover .aw-usecase-explore svg { transform: translateX(4px); }

/* Card body */
.aw-usecase-body {
  padding: 1.35rem 1.5rem 1.6rem;
  flex: 1;
}
.aw-usecase-tag {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--aw-gold-dark);
  margin-bottom: .32rem; display: block;
}
.aw-usecase-card h3 { font-size: 1.1rem; margin-bottom: .38rem; }
.aw-usecase-card p  { color: var(--aw-muted); font-size: .93rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   14. WHY SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.aw-why-card {
  background: var(--aw-surface);
  border: 1px solid var(--aw-border);
  border-left: 3px solid transparent;
  border-radius: var(--aw-radius);
  padding: 1.5rem 1.6rem;
  height: 100%;
  display: flex; gap: 1.1rem; align-items: flex-start;
  transition:
    border-color  var(--aw-t) var(--aw-ease),
    transform     var(--aw-t) var(--aw-ease),
    box-shadow    var(--aw-t) var(--aw-ease);
}
.aw-why-card:hover {
  border-left-color: var(--aw-gold);
  border-color: rgba(245,163,2,.22);
  transform: translateX(4px);
  box-shadow: var(--aw-shadow-sm);
}

.aw-why-num {
  flex: 0 0 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--aw-gold), #ffcf60);
  color: #1a1300;
  font-weight: 800; font-size: .9rem;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(245,163,2,.32);
  transition: transform var(--aw-t) var(--aw-ease), box-shadow var(--aw-t) var(--aw-ease);
}
.aw-why-card:hover .aw-why-num {
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(245,163,2,.48);
}

.aw-why-card h3 { font-size: .98rem; margin-bottom: .28rem; }
.aw-why-card p  { color: var(--aw-muted); font-size: .9rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   15. HOW IT WORKS — TIMELINE
   ───────────────────────────────────────────────────────────────────────────── */
.aw-timeline         { position: relative; padding-left: 0; }
.aw-timeline::before {
  content: "";
  position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg,
    var(--aw-gold) 0%, rgba(245,163,2,.3) 70%, rgba(255,255,255,.04) 100%);
}

.aw-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: .75rem 0;
  position: relative;
}

.aw-step-pin {
  flex: 0 0 56px; height: 56px;
  border-radius: 50%;
  background: var(--aw-ink-2);
  border: 2px solid rgba(245,163,2,.45);
  color: var(--aw-gold);
  font-weight: 800; font-size: 1rem;
  display: grid; place-items: center;
  box-shadow: 0 0 0 7px rgba(245,163,2,.07);
  transition:
    background   var(--aw-t) var(--aw-ease),
    color        var(--aw-t) var(--aw-ease),
    border-color var(--aw-t) var(--aw-ease),
    box-shadow   var(--aw-t) var(--aw-ease);
  position: relative; z-index: 1;
}
.aw-step.is-active .aw-step-pin,
.aw-step:hover     .aw-step-pin {
  background: var(--aw-gold);
  color: #1a1300;
  border-color: var(--aw-gold);
  box-shadow: 0 0 0 10px rgba(245,163,2,.12), var(--aw-gold-shadow);
}

/* Step card body */
.aw-step-body {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--aw-radius);
  padding: 1.3rem 1.5rem;
  flex: 1;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: border-color var(--aw-t) var(--aw-ease),
              background   var(--aw-t) var(--aw-ease);
}
.aw-step:hover     .aw-step-body,
.aw-step.is-active .aw-step-body {
  border-color: rgba(245,163,2,.22);
  background: rgba(245,163,2,.04);
}

.aw-step-body h3 { color: #fff; font-size: 1.05rem; margin-bottom: .32rem; }
.aw-step-body p  { color: #9ca3af; margin: 0; font-size: .93rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   16. CTA BAND
   ───────────────────────────────────────────────────────────────────────────── */
.aw-cta-band {
  border-radius: var(--aw-radius-xl);
  padding: clamp(2.5rem, 5.5vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(900px 400px at 90% 0%,  rgba(245,163,2,.3),  transparent 55%),
    radial-gradient(600px 300px at 10% 100%, rgba(99,102,241,.12), transparent 60%),
    linear-gradient(135deg, var(--aw-ink) 0%, #162035 60%, var(--aw-ink-2) 100%);
  color: #fff;
  box-shadow: var(--aw-shadow-lg);
  position: relative; overflow: hidden;
}

/* Decorative rings */
.aw-cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.aw-cta-ring-1 { width: 380px; height: 380px; top: -120px; right: -80px; }
.aw-cta-ring-2 { width: 250px; height: 250px; top:  -40px; right:  20px; border-color: rgba(245,163,2,.1); }
.aw-cta-ring-3 { width: 160px; height: 160px; top:   20px; right:  90px; border-color: rgba(245,163,2,.08); }

/* ─────────────────────────────────────────────────────────────────────────────
   17. FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
#aw-footer {
  background: var(--aw-ink);
  color: #cbd5e1;
  padding: 5rem 0 2rem;
  position: relative;
}

/* Gold accent top border */
#aw-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,
    transparent 0%, var(--aw-gold-dark) 25%, var(--aw-gold-light) 50%,
    var(--aw-gold-dark) 75%, transparent 100%);
}

#aw-footer h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
#aw-footer a              { color: #94a3b8; text-decoration: none; }
#aw-footer a:hover        { color: var(--aw-gold); }
#aw-footer hr             { border-color: rgba(255,255,255,.06); margin: 2.5rem 0 1.5rem; }
#aw-footer ul li          { display: flex; align-items: center; gap: .45rem; }
#aw-footer ul li + li     { margin-top: .6rem; }
#aw-footer ul li::before  {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--aw-gold);
  flex-shrink: 0; opacity: .6;
}

/* Social icons */
.aw-social-icons      { display: flex; gap: .55rem; flex-wrap: wrap; }
.aw-social-icons a {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #94a3b8;
  text-decoration: none;
  transition:
    background   var(--aw-t) var(--aw-ease),
    color        var(--aw-t) var(--aw-ease),
    transform    var(--aw-t) var(--aw-ease),
    border-color var(--aw-t) var(--aw-ease);
}
.aw-social-icons a:hover {
  background: var(--aw-gold);
  border-color: var(--aw-gold);
  color: #1a1300;
  transform: translateY(-3px);
}

/* Footer brand */
.aw-footer-brand {
  font-weight: 800; letter-spacing: .2em; font-size: .96rem;
  color: #fff !important; display: inline-flex; align-items: center; gap: .6rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   18. FLOATING QUOTE BUTTON
   ───────────────────────────────────────────────────────────────────────────── */
#aw-float-quote {
  position: fixed; right: 20px; bottom: 20px; z-index: 1040;
}
#aw-float-quote .btn-aw-primary {
  box-shadow: 0 14px 36px rgba(245,163,2,.50);
}

/* ─────────────────────────────────────────────────────────────────────────────
   19. BACK-TO-TOP
   ───────────────────────────────────────────────────────────────────────────── */
#aw-back-top {
  position: fixed; right: 20px; bottom: 78px; z-index: 1039;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--aw-ink-2);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--aw-shadow-sm);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition:
    opacity    var(--aw-t) var(--aw-ease),
    transform  var(--aw-t) var(--aw-ease),
    background var(--aw-t) var(--aw-ease);
}
#aw-back-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
#aw-back-top:hover      { background: var(--aw-gold); color: #1a1300; border-color: var(--aw-gold); }

/* ─────────────────────────────────────────────────────────────────────────────
   20. MODAL
   ───────────────────────────────────────────────────────────────────────────── */
.modal-content {
  border: 0;
  border-radius: var(--aw-radius-lg);
  overflow: hidden;
  box-shadow: var(--aw-shadow-lg);
}
.aw-modal-header {
  background: linear-gradient(135deg, var(--aw-ink), var(--aw-ink-2));
  color: #fff; border: 0; padding: 1.3rem 1.6rem;
}
.aw-modal-header .btn-close { filter: invert(1) brightness(2); opacity: .7; }
.aw-modal-header .btn-close:hover { opacity: 1; }

/* ─────────────────────────────────────────────────────────────────────────────
   21a. COMPONENT-SPECIFIC HELPERS  (replaces all inline styles)
   ───────────────────────────────────────────────────────────────────────────── */

/* Stats band inner container — sits above the decorative ::after glow */
.aw-stats-z { position: relative; z-index: 1; }

/* CTA inner row — sits above decorative rings */
.aw-cta-inner { position: relative; z-index: 1; }

/* CTA "ready" pulse dot */
.aw-cta-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--aw-gold);
  display: inline-block;
  flex-shrink: 0;
}

/* CTA sub-text */
.aw-cta-sub { color: #94a3b8; }

/* Footer about paragraph */
.aw-footer-about {
  max-width: 460px;
  color: #94a3b8;
  font-size: .95rem;
}

/* Inline SVG icons in footer contact list */
#aw-footer ul li svg { flex-shrink: 0; }

/* Footer copyright bar */
.aw-footer-bar {
  font-size: .83rem;
  color: #475569;
}

/* Modal sub-text */
.aw-modal-sub { font-size: .95rem; }

/* Feature card watermark — prefix with -webkit for Safari */
.aw-feature-card::after {
  -webkit-user-select: none;
          user-select: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   21. RESPONSIVE OVERRIDES
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .aw-timeline::before { left: 27px; }
}

@media (max-width: 767.98px) {
  /* Float button: icon only */
  #aw-float-quote .btn-text { display: none; }
  #aw-float-quote .btn-aw-primary { padding: .72rem .9rem; }

  /* Stats grid — stack vertically with separator */
  .aw-stat-box { border-bottom: 1px solid rgba(255,255,255,.06); }
  .aw-stat-box:last-child { border-bottom: 0; }

  /* Hero scroll cue hidden on small screens */
  .hero-scroll-cue { display: none; }

  /* Back-to-top sits above float button */
  #aw-back-top { bottom: 76px; }

  /* Footer nav lists slightly smaller */
  #aw-footer ul li::before { display: none; }
}

@media (max-width: 575.98px) {
  #hero h1 { font-size: 2rem; }
  .aw-cta-ring { display: none; }
}
