/* ===== HUB PAGE LAYOUT — adapted from svoi.uk for StartNewLife light theme =====
 * Used by /database/, /database/lawyers, /database/gp etc.
 * Brand colors: purple #6B4C9A, gold #D4A24C, yellow #F0D638, dark #2D2A3E
 */

.hub { max-width: 1100px; margin: 0 auto; padding: 1rem 1.25rem 4rem; }
.hub h1 { font-size: 2rem; font-weight: 800; margin: 0 0 0.25rem; line-height: 1.3; color: #2D2A3E; }
.hub .meta { font-size: 0.85rem; color: #6E6A7A; margin-bottom: 1rem; }
.hub .breadcrumb { font-size: 0.85rem; color: #6E6A7A; margin-bottom: 0.6rem; }
.hub .breadcrumb a { color: #6B4C9A; text-decoration: none; }
.hub .breadcrumb a:hover { text-decoration: underline; }

/* ===== TLDR BLOCK ===== */
.tldr { background: linear-gradient(135deg, #2D2A3E, #6B4C9A); color: #fff; border-radius: 16px; padding: 1.25rem 1.5rem; margin: 1.25rem 0 1.5rem; box-shadow: 0 4px 20px rgba(107, 76, 154, 0.18); }
.tldr-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #F0D638; margin-bottom: 0.5rem; }
.tldr p { font-size: 1.05rem; line-height: 1.6; margin: 0; color: #fff; }
.tldr p + p { margin-top: 0.5rem; }
.tldr strong { color: #F0D638; }

/* ===== FACTS ROW (BigFacts) ===== */
.facts-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.75rem; margin: 1.5rem 0; }
.fact { background: #fff; border: 1px solid #E2E0E6; border-left: 5px solid #6B4C9A; border-radius: 14px; padding: 1.25rem 1rem; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.fact:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(45, 42, 62, 0.08); }
.fact-number { font-size: 2.25rem; font-weight: 800; line-height: 1; margin-bottom: 0.35rem; color: #6B4C9A; letter-spacing: -0.02em; }
.fact-label { font-size: 0.92rem; font-weight: 600; color: #2D2A3E; }
.fact-sub { font-size: 0.78rem; color: #6E6A7A; margin-top: 0.25rem; }
.fact-c-purple { border-left-color: #6B4C9A; } .fact-c-purple .fact-number { color: #6B4C9A; }
.fact-c-gold { border-left-color: #D4A24C; } .fact-c-gold .fact-number { color: #D4A24C; }
.fact-c-green { border-left-color: #22c55e; } .fact-c-green .fact-number { color: #22c55e; }
.fact-c-blue { border-left-color: #3b82f6; } .fact-c-blue .fact-number { color: #3b82f6; }
.fact-c-orange { border-left-color: #f59e0b; } .fact-c-orange .fact-number { color: #f59e0b; }
.fact-c-red { border-left-color: #ef4444; } .fact-c-red .fact-number { color: #ef4444; }

/* ===== PICK GRID (colored navigation cards) ===== */
.pick { margin: 1.5rem 0 2rem; }
.pick h2 { font-size: 1.2rem; font-weight: 700; margin: 0 0 0.75rem; color: #2D2A3E; }
.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.pick-card { display: flex; flex-direction: column; align-items: center; text-align: center; border-radius: 16px; padding: 1.25rem 0.85rem; color: #fff; transition: all 0.25s; cursor: pointer; text-decoration: none; position: relative; overflow: hidden; border: none; min-height: 130px; justify-content: center; }
.pick-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.25s; background: rgba(255,255,255,0.1); }
.pick-card:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.pick-card:hover::before { opacity: 1; }
.pick-blue { background: linear-gradient(160deg, #1e40af, #3b82f6); }
.pick-green { background: linear-gradient(160deg, #047857, #10b981); }
.pick-purple { background: linear-gradient(160deg, #6B4C9A, #8B6FBA); }
.pick-orange { background: linear-gradient(160deg, #c2410c, #f97316); }
.pick-yellow { background: linear-gradient(160deg, #b45309, #D4A24C); }
.pick-red { background: linear-gradient(160deg, #991b1b, #ef4444); }
.pick-teal { background: linear-gradient(160deg, #0f766e, #14b8a6); }
.pick-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.pick-card strong { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.pick-amount { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.pick-sub { font-size: 0.72rem; color: rgba(255,255,255,0.78); margin-top: 0.25rem; }

/* ===== TOPIC ACCORDIONS (color-coded) ===== */
.topic { background: #fff; border: 1px solid #E2E0E6; border-radius: 14px; margin-bottom: 0.6rem; overflow: hidden; transition: all 0.25s; }
.topic:hover { box-shadow: 0 2px 12px rgba(45, 42, 62, 0.06); }
.topic[open] { box-shadow: 0 4px 24px rgba(45, 42, 62, 0.1); }
.topic-c-blue { border-left: 4px solid #3b82f6; }
.topic-c-green { border-left: 4px solid #22c55e; }
.topic-c-purple { border-left: 4px solid #6B4C9A; }
.topic-c-orange { border-left: 4px solid #f59e0b; }
.topic-c-yellow { border-left: 4px solid #D4A24C; }
.topic-c-red { border-left: 4px solid #ef4444; }
.topic-c-teal { border-left: 4px solid #14b8a6; }
.topic-c-blue[open] summary { background: linear-gradient(90deg, rgba(59,130,246,0.06), transparent); }
.topic-c-green[open] summary { background: linear-gradient(90deg, rgba(34,197,94,0.06), transparent); }
.topic-c-purple[open] summary { background: linear-gradient(90deg, rgba(107,76,154,0.06), transparent); }
.topic-c-orange[open] summary { background: linear-gradient(90deg, rgba(245,158,11,0.06), transparent); }
.topic-c-yellow[open] summary { background: linear-gradient(90deg, rgba(212,162,76,0.06), transparent); }
.topic-c-red[open] summary { background: linear-gradient(90deg, rgba(239,68,68,0.06), transparent); }
.topic-c-teal[open] summary { background: linear-gradient(90deg, rgba(20,184,166,0.06), transparent); }

.topic summary { display: flex; align-items: center; gap: 0.85rem; padding: 1rem 1.25rem; cursor: pointer; list-style: none; transition: background 0.2s; }
.topic summary::-webkit-details-marker { display: none; }
.topic summary::marker { display: none; content: ''; }
.topic-icon { font-size: 1.5rem; flex-shrink: 0; }
.topic summary > div { flex: 1; min-width: 0; }
.topic summary strong { display: block; font-size: 1rem; margin-bottom: 0.1rem; color: #2D2A3E; }
.topic-hint { display: block; font-size: 0.82rem; color: #6E6A7A; font-weight: 400; }
.topic-arrow { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.topic-arrow::before { content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-right: 2px solid #9894A3; border-bottom: 2px solid #9894A3; transform: translate(-50%, -60%) rotate(45deg); transition: transform 0.25s; }
.topic[open] .topic-arrow::before { transform: translate(-50%, -40%) rotate(-135deg); }
.topic-body { padding: 0 1.25rem 1.25rem; border-top: 1px solid #F0EFF2; padding-top: 1.25rem; }
.topic-body h3 { font-size: 1.05rem; font-weight: 600; margin: 1.5rem 0 0.75rem; color: #2D2A3E; }
.topic-body h3:first-child { margin-top: 0; }
.topic-body p { line-height: 1.65; font-size: 0.95rem; margin-bottom: 0.75rem; color: #4A4756; }

/* ===== STICKY CTA ===== */
.sticky-cta { position: sticky; bottom: 1rem; z-index: 50; display: flex; justify-content: center; margin-top: 2rem; pointer-events: none; }
.sticky-btn { pointer-events: auto; display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, #6B4C9A, #8B6FBA); color: #fff; padding: 0.95rem 2.25rem; border-radius: 50px; font-weight: 800; font-size: 1rem; box-shadow: 0 6px 28px rgba(107, 76, 154, 0.4), 0 0 0 1px rgba(107, 76, 154, 0.15); transition: all 0.25s; text-decoration: none; }
.sticky-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(107, 76, 154, 0.55); color: #fff; }
.sticky-arrow { font-size: 1.1rem; transition: transform 0.2s; }
.sticky-btn:hover .sticky-arrow { transform: translateX(3px); }

/* ===== FAQ section ===== */
.hub .faq { margin: 2.5rem 0; }
.hub .faq h2 { font-size: 1.4rem; font-weight: 700; margin: 0 0 1rem; color: #2D2A3E; }
.hub .faq > details { background: #fff; border: 1px solid #E2E0E6; border-radius: 14px; padding: 1rem 1.25rem; margin-bottom: 0.5rem; transition: box-shadow 0.2s; }
.hub .faq > details:hover { box-shadow: 0 2px 8px rgba(45,42,62,0.05); }
.hub .faq > details[open] { box-shadow: 0 4px 16px rgba(45,42,62,0.08); }
.hub .faq > details > summary { font-weight: 600; cursor: pointer; color: #2D2A3E; list-style: none; }
.hub .faq > details > summary::-webkit-details-marker { display: none; }
.hub .faq > details > summary::after { content: '+'; float: right; color: #9894A3; font-size: 1.4rem; line-height: 1; transition: transform 0.2s; }
.hub .faq > details[open] > summary::after { content: '−'; }
.hub .faq > details > p { margin: 0.75rem 0 0; color: #4A4756; line-height: 1.65; font-size: 0.95rem; }

/* ===== RELATED TOPICS ===== */
.related { margin: 2.5rem 0 1rem; padding: 1.5rem 0 0; border-top: 1px solid #E2E0E6; }
.related-title { font-size: 1.15rem; font-weight: 800; color: #2D2A3E; margin: 0 0 1rem; display: flex; align-items: center; gap: 0.55rem; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 0.55rem; }
.related-card { display: flex; align-items: center; gap: 0.65rem; padding: 0.85rem 1rem; background: #fff; border: 1px solid #E2E0E6; border-radius: 12px; color: #2D2A3E; text-decoration: none; font-size: 0.92rem; min-height: 48px; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.related-icon { font-size: 1.15rem; flex-shrink: 0; }
.related-text { flex: 1; min-width: 0; font-weight: 600; }
.related-arrow { color: #9894A3; font-size: 1rem; }
.related-card:hover { border-color: #6B4C9A; background: #FAFAFB; color: #6B4C9A; }
.related-card:hover .related-arrow { color: #6B4C9A; }

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .hub { padding: 0.75rem 1rem 4rem; }
  .hub h1 { font-size: 1.6rem; }
  .pick-grid { grid-template-columns: repeat(2, 1fr); }
  .pick-amount { font-size: 1rem; }
  .fact-number { font-size: 1.85rem; }
  .sticky-btn { font-size: 0.92rem; padding: 0.8rem 1.65rem; }
}

/* ============================================================
   SUPER-APP STYLE (Uzum/Kaspi-inspired for StartNewLife home)
   ============================================================ */

/* Search hero */
.sa-search { max-width: 760px; margin: 1.5rem auto 1rem; padding: 0 1rem; }
.sa-search-wrap { position: relative; }
.sa-search input {
  width: 100%;
  padding: 1.125rem 1.25rem 1.125rem 3.25rem;
  border: 2px solid #E2E0E6;
  background: #fff;
  border-radius: 18px;
  font-size: 1.05rem;
  color: #2D2A3E;
  outline: none;
  box-shadow: 0 4px 20px rgba(45, 42, 62, 0.06);
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.sa-search input::placeholder { color: #9894A3; }
.sa-search input:focus { border-color: #6B4C9A; box-shadow: 0 6px 28px rgba(107, 76, 154, 0.18); }
.sa-search-icon { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); width: 1.35rem; height: 1.35rem; pointer-events: none; color: #9894A3; }

/* Hero compact */
.sa-hero { max-width: 900px; margin: 0 auto; padding: 1.5rem 1rem 0; text-align: center; }
.sa-hero h1 { font-size: 2.5rem; font-weight: 900; line-height: 1.1; color: #2D2A3E; margin: 0 0 0.75rem; letter-spacing: -0.02em; }
.sa-hero h1 em { font-style: normal; background: linear-gradient(135deg, #6B4C9A, #F0D638); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sa-hero-sub { font-size: 1.1rem; color: #5C5870; margin: 0 0 1.25rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.sa-hero-ctas { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.sa-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.75rem; border-radius: 14px;
  font-size: 1rem; font-weight: 800; text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.sa-btn:active { transform: scale(0.97); }
.sa-btn-primary { background: #6B4C9A; color: #fff; box-shadow: 0 6px 20px rgba(107, 76, 154, 0.28); }
.sa-btn-primary:hover { color: #fff; box-shadow: 0 8px 28px rgba(107, 76, 154, 0.4); transform: translateY(-1px); }
.sa-btn-secondary { background: #F0D638; color: #2D2A3E; box-shadow: 0 6px 20px rgba(240, 214, 56, 0.3); }
.sa-btn-secondary:hover { color: #2D2A3E; box-shadow: 0 8px 28px rgba(240, 214, 56, 0.45); transform: translateY(-1px); }

/* Stats strip (dashboard row) */
.sa-stats { max-width: 900px; margin: 1.25rem auto 0; padding: 0 1rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.sa-stat { background: #fff; border: 1px solid #E2E0E6; border-radius: 14px; padding: 0.85rem 0.75rem; text-align: center; }
.sa-stat-val { font-size: 1.35rem; font-weight: 900; color: #6B4C9A; letter-spacing: -0.02em; line-height: 1; }
.sa-stat-lbl { font-size: 0.72rem; font-weight: 600; color: #6E6A7A; margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* Bento grid — super-app categories */
.sa-bento-wrap { max-width: 1100px; margin: 1.5rem auto 0; padding: 0 1rem; }
.sa-bento-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.85rem; padding: 0 0.25rem; }
.sa-bento-title { font-size: 1rem; font-weight: 800; color: #2D2A3E; margin: 0; }
.sa-bento-more { font-size: 0.85rem; color: #6B4C9A; text-decoration: none; font-weight: 600; }
.sa-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.sa-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #fff; border: 1px solid #E2E0E6; border-radius: 16px;
  padding: 1.1rem 0.6rem; text-align: center; text-decoration: none; color: #2D2A3E;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  min-height: 108px; position: relative;
}
.sa-tile:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(45, 42, 62, 0.1); border-color: #C5C2CC; color: #2D2A3E; }
.sa-tile-icon { font-size: 2rem; margin-bottom: 0.45rem; line-height: 1; }
.sa-tile-title { font-size: 0.9rem; font-weight: 700; line-height: 1.2; color: #2D2A3E; }
.sa-tile-sub { font-size: 0.72rem; font-weight: 500; color: #9894A3; margin-top: 0.15rem; }

/* Tinted variants (Uzum-style colored tiles) */
.sa-tile-v-purple { background: linear-gradient(160deg, #F4F0FA 0%, #EDE4F9 100%); border-color: #E5D9F2; }
.sa-tile-v-purple:hover { border-color: #8B6FBA; }
.sa-tile-v-gold { background: linear-gradient(160deg, #FEF9EC 0%, #FDF3D4 100%); border-color: #F8E89B; }
.sa-tile-v-gold:hover { border-color: #D4A24C; }
.sa-tile-v-green { background: linear-gradient(160deg, #ECFDF5 0%, #D1FAE5 100%); border-color: #A7F3D0; }
.sa-tile-v-green:hover { border-color: #10B981; }
.sa-tile-v-blue { background: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 100%); border-color: #BFDBFE; }
.sa-tile-v-blue:hover { border-color: #3B82F6; }
.sa-tile-v-red { background: linear-gradient(160deg, #FEF2F2 0%, #FEE2E2 100%); border-color: #FECACA; }
.sa-tile-v-red:hover { border-color: #EF4444; }
.sa-tile-v-orange { background: linear-gradient(160deg, #FFF7ED 0%, #FED7AA 100%); border-color: #FDBA74; }
.sa-tile-v-orange:hover { border-color: #F97316; }

/* Section titles on home */
.sa-section { max-width: 1100px; margin: 2rem auto 0; padding: 0 1rem; }
.sa-section-title { font-size: 1.1rem; font-weight: 800; color: #2D2A3E; margin: 0 0 0.85rem; display: flex; align-items: center; gap: 0.5rem; }

/* Crisis ribbon */
.sa-crisis { max-width: 1100px; margin: 1.5rem auto 0; padding: 0 1rem; }
.sa-crisis-inner { background: #FEE2E2; border: 1px solid #FCA5A5; border-radius: 16px; padding: 0.85rem 1rem; }
.sa-crisis-label { font-size: 0.85rem; font-weight: 800; color: #991B1B; margin-bottom: 0.5rem; text-align: center; }
.sa-crisis-btns { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.sa-crisis-btn { padding: 0.55rem 0.95rem; border-radius: 10px; font-size: 0.82rem; font-weight: 800; text-decoration: none; }
.sa-crisis-btn-red { background: #DC2626; color: #fff; }
.sa-crisis-btn-orange { background: #F59E0B; color: #fff; }
.sa-crisis-btn-purple { background: #6B4C9A; color: #fff; }

/* Guide carousel (Kaspi-style product cards) */
.sa-carousel { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.7rem; }
.sa-gcard { background: #fff; border: 1px solid #E2E0E6; border-radius: 16px; padding: 1rem; text-decoration: none; color: #2D2A3E; transition: transform 0.15s, box-shadow 0.15s; display: flex; flex-direction: column; gap: 0.4rem; }
.sa-gcard:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(45, 42, 62, 0.1); color: #2D2A3E; }
.sa-gcard-icon { font-size: 1.75rem; line-height: 1; }
.sa-gcard-title { font-size: 1rem; font-weight: 800; color: #2D2A3E; line-height: 1.3; }
.sa-gcard-sub { font-size: 0.82rem; color: #6E6A7A; line-height: 1.4; }
.sa-gcard-meta { margin-top: auto; padding-top: 0.4rem; font-size: 0.72rem; color: #9894A3; font-weight: 600; }

/* Contact tiles (compact) */
.sa-contacts { max-width: 1100px; margin: 2rem auto 0; padding: 0 1rem 2rem; }
.sa-contacts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.5rem; }
.sa-contact { display: flex; align-items: center; gap: 0.65rem; padding: 0.85rem 1rem; background: #fff; border: 1px solid #E2E0E6; border-radius: 14px; text-decoration: none; color: #2D2A3E; transition: border-color 0.15s, box-shadow 0.15s; min-height: 58px; }
.sa-contact:hover { border-color: #6B4C9A; box-shadow: 0 2px 12px rgba(107, 76, 154, 0.08); color: #2D2A3E; }
.sa-contact-icon { font-size: 1.35rem; flex-shrink: 0; }
.sa-contact-body { flex: 1; min-width: 0; }
.sa-contact-title { font-size: 0.88rem; font-weight: 700; color: #2D2A3E; line-height: 1.2; }
.sa-contact-sub { font-size: 0.74rem; color: #9894A3; line-height: 1.2; margin-top: 0.15rem; }

/* Responsive */
@media (max-width: 820px) {
  .sa-bento { grid-template-columns: repeat(3, 1fr); }
  .sa-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .sa-hero h1 { font-size: 1.9rem; }
  .sa-hero-sub { font-size: 1rem; }
  .sa-hero-ctas { flex-direction: row; }
  .sa-btn { flex: 1; padding: 0.9rem 1rem; font-size: 0.95rem; }
  .sa-bento { grid-template-columns: repeat(3, 1fr); gap: 0.45rem; }
  .sa-tile { min-height: 94px; padding: 0.85rem 0.4rem; }
  .sa-tile-icon { font-size: 1.6rem; }
  .sa-tile-title { font-size: 0.78rem; }
  .sa-tile-sub { display: none; }
  .sa-stats { grid-template-columns: repeat(2, 1fr); }
  .sa-search input { padding: 0.95rem 1rem 0.95rem 2.85rem; font-size: 0.98rem; }
}
@media (max-width: 380px) {
  .sa-bento { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   WOW HERO — animated mesh gradient for homepage
   ============================================================ */
.wow-hero {
  position: relative;
  padding: 3.5rem 1.25rem 2.5rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(at 20% 20%, #8B6FBA 0%, transparent 45%),
    radial-gradient(at 80% 10%, #F0D638 0%, transparent 40%),
    radial-gradient(at 50% 80%, #D4A24C 0%, transparent 45%),
    linear-gradient(135deg, #1f1c33 0%, #2D2A3E 35%, #4A3670 70%, #6B4C9A 100%);
  background-size: 180% 180%;
  animation: meshShift 20s ease-in-out infinite;
  color: #fff;
  border-radius: 0 0 32px 32px;
}
@keyframes meshShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating decorative emoji */
.wow-deco { position: absolute; font-size: 2.5rem; opacity: 0.14; pointer-events: none; user-select: none; animation: wowFloat 8s ease-in-out infinite; z-index: 0; }
.wow-deco-1 { top: 10%; left: 8%; animation-delay: 0s; font-size: 3rem; }
.wow-deco-2 { top: 20%; right: 10%; animation-delay: -2s; font-size: 2.8rem; }
.wow-deco-3 { top: 65%; left: 12%; animation-delay: -4s; font-size: 2.5rem; }
.wow-deco-4 { top: 70%; right: 8%; animation-delay: -6s; font-size: 3rem; }
.wow-deco-5 { top: 45%; left: 4%; animation-delay: -3s; font-size: 2rem; }
.wow-deco-6 { top: 50%; right: 5%; animation-delay: -5s; font-size: 2.2rem; }
@keyframes wowFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

.wow-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }

.wow-badge { display: inline-flex; align-items: center; gap: 0.45rem; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0.45rem 0.95rem; border-radius: 100px; font-size: 0.82rem; font-weight: 700; color: #F0D638; border: 1px solid rgba(240, 214, 56, 0.3); margin-bottom: 1rem; letter-spacing: 0.02em; }
.wow-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #00FF9D; box-shadow: 0 0 12px #00FF9D; animation: wowPulse 2s ease-in-out infinite; }
@keyframes wowPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.wow-h1 { font-size: clamp(2.25rem, 6.5vw, 4.25rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 1rem; color: #fff; }
.wow-h1-gradient { background: linear-gradient(135deg, #F0D638 0%, #FFE066 50%, #FFF4A3 100%); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }
.wow-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 1.5rem; line-height: 1.5; font-weight: 500; }

/* Glass search bar */
.wow-search { max-width: 620px; margin: 0 auto 1.5rem; position: relative; }
.wow-search input {
  width: 100%;
  padding: 1.125rem 1.25rem 1.125rem 3.25rem;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  font-size: 1.05rem;
  color: #fff;
  outline: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}
.wow-search input::placeholder { color: rgba(255,255,255,0.55); }
.wow-search input:focus { border-color: #F0D638; background: rgba(255,255,255,0.12); box-shadow: 0 0 0 4px rgba(240, 214, 56, 0.2); }
.wow-search-icon { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); font-size: 1.25rem; opacity: 0.7; pointer-events: none; }

/* Hero CTAs */
.wow-ctas { display: flex; gap: 0.65rem; justify-content: center; flex-wrap: wrap; }
.wow-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 1.75rem; border-radius: 14px; font-size: 1rem; font-weight: 800; text-decoration: none; transition: transform 0.15s, box-shadow 0.2s; border: none; cursor: pointer; }
.wow-cta:active { transform: scale(0.97); }
.wow-cta-primary { background: #F0D638; color: #2D2A3E; box-shadow: 0 8px 32px rgba(240, 214, 56, 0.35); }
.wow-cta-primary:hover { background: #FFE066; color: #2D2A3E; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240, 214, 56, 0.5); }
.wow-cta-secondary { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.wow-cta-secondary:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

/* Live stats row on hero */
.wow-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem; max-width: 620px; margin: 1.75rem auto 0; padding: 0; }
.wow-stat { background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 0.85rem 0.6rem; text-align: center; }
.wow-stat-val { font-size: 1.5rem; font-weight: 900; color: #F0D638; letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.wow-stat-lbl { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* Ticker (live data marquee) */
.wow-ticker { background: #1f1c33; color: #fff; padding: 0.75rem 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.08); }
.wow-ticker-inner { display: flex; gap: 2.5rem; animation: wowTick 35s linear infinite; white-space: nowrap; }
.wow-ticker-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.wow-ticker-item strong { color: #F0D638; font-weight: 800; }
.wow-ticker-dot { color: #6B4C9A; font-size: 0.6rem; }
@keyframes wowTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Big feature tiles (bento mixed sizes) */
.wow-bento { max-width: 1100px; margin: 2rem auto 0; padding: 0 1rem; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.7rem; }
.wow-feat { grid-column: span 3; background: linear-gradient(135deg, #6B4C9A, #8B6FBA); color: #fff; border-radius: 20px; padding: 1.5rem; text-decoration: none; position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.25s; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; }
.wow-feat:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(107, 76, 154, 0.4); color: #fff; }
.wow-feat-2 { background: linear-gradient(135deg, #D4A24C, #F0D638); color: #2D2A3E; }
.wow-feat-2:hover { color: #2D2A3E; box-shadow: 0 16px 44px rgba(212, 162, 76, 0.4); }
.wow-feat-icon { font-size: 3rem; line-height: 1; opacity: 0.95; }
.wow-feat-eyebrow { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; margin-top: 0.8rem; }
.wow-feat h3 { font-size: 1.5rem; font-weight: 900; margin: 0.3rem 0 0.5rem; line-height: 1.2; letter-spacing: -0.02em; }
.wow-feat p { font-size: 0.92rem; opacity: 0.88; margin: 0 0 0.85rem; line-height: 1.4; }
.wow-feat-arrow { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; font-weight: 800; padding: 0.5rem 0.9rem; background: rgba(255,255,255,0.18); border-radius: 100px; backdrop-filter: blur(8px); }
.wow-feat-2 .wow-feat-arrow { background: rgba(45, 42, 62, 0.15); }

.wow-small { grid-column: span 2; }
/* Small tiles reuse .sa-tile */

@media (max-width: 900px) {
  .wow-bento { grid-template-columns: repeat(2, 1fr); }
  .wow-feat { grid-column: span 2; min-height: 180px; }
  .wow-small { grid-column: span 1; }
}
@media (max-width: 600px) {
  .wow-hero { padding: 2rem 1rem 1.75rem; border-radius: 0 0 24px 24px; }
  .wow-deco { opacity: 0.1; font-size: 2rem; }
  .wow-stats { grid-template-columns: repeat(2, 1fr); }
  .wow-feat { padding: 1.25rem; min-height: 160px; }
  .wow-feat-icon { font-size: 2.5rem; }
  .wow-feat h3 { font-size: 1.25rem; }
}
