/* ==========================================================================
   AURIFY SMM - WHITE TRUST UI DESIGN SYSTEM (FLAWLESS & FULLY RESPONSIVE)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --w-bg: #FFFFFF;
  --w-surface: #F8FAFC;
  --w-surface-alt: #F1F5F9;
  --w-card: #FFFFFF;
  --w-border: #E2E8F0;
  --w-border-hover: #CBD5E1;
  --w-border-subtle: #F1F5F9;
  
  --w-brand: #2563EB;
  --w-brand-hover: #1D4ED8;
  --w-brand-light: #EFF6FF;
  --w-brand-soft: #DBEAFE;
  
  --w-text: #0F172A;
  --w-text-muted: #64748B;
  --w-text-light: #94A3B8;
  
  --w-success: #10B981;
  --w-success-light: #ECFDF5;
  --w-warning: #F59E0B;
  --w-warning-light: #FFFBEB;
  --w-accent: #0EA5E9;
  --w-purple: #8B5CF6;
  
  --w-shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --w-shadow-sm: 0 2px 4px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --w-shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
  --w-shadow-lg: 0 16px 36px -6px rgba(15, 23, 42, 0.1), 0 6px 12px -3px rgba(15, 23, 42, 0.05);
  --w-shadow-xl: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
  
  --w-radius-sm: 8px;
  --w-radius: 12px;
  --w-radius-lg: 16px;
  --w-radius-xl: 24px;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

body.white-theme-active,
body.public-page,
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  background-color: var(--w-bg) !important;
  color: var(--w-text) !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--w-text);
  letter-spacing: -0.025em;
  font-weight: 700;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace !important;
}

.wt-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* -------------------------------------------------------------
   1. TOP URGENT ANNOUNCEMENT TICKER
   ------------------------------------------------------------- */
.wt-top-ticker {
  background: linear-gradient(90deg, #1E40AF 0%, #2563EB 50%, #0EA5E9 100%);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 1040;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}
.wt-top-ticker .badge-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   2. SLEEK WHITE STICKY HEADER / NAVBAR
   ------------------------------------------------------------- */
.wt-navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--w-border);
  transition: all 0.25s ease;
  width: 100%;
}
.wt-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
}
.wt-navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.wt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--w-text) !important;
  flex-shrink: 0;
}
.wt-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.wt-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

/* Nav Links */
.wt-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wt-nav-links li a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--w-text-muted) !important;
  padding: 8px 12px;
  border-radius: var(--w-radius-sm);
  text-decoration: none !important;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.wt-nav-links li a:hover,
.wt-nav-links li a.active {
  color: var(--w-brand) !important;
  background: var(--w-brand-light);
}

/* Nav Actions */
.wt-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wt-currency-select {
  background: var(--w-surface);
  border: 1.5px solid var(--w-border);
  color: var(--w-text);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--w-radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  height: 38px;
}
.wt-currency-select:focus {
  border-color: var(--w-brand);
}

/* Standard Buttons */
.wt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--w-radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
  border: none;
  white-space: nowrap;
  height: 38px;
}
.wt-btn-ghost {
  background: transparent;
  color: var(--w-text) !important;
  border: 1.5px solid var(--w-border);
}
.wt-btn-ghost:hover {
  border-color: var(--w-brand);
  background: var(--w-brand-light);
  color: var(--w-brand) !important;
}
.wt-btn-primary {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.wt-btn-primary:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

/* Hamburger Mobile Toggle */
.wt-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  background: var(--w-surface);
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius-sm);
  padding: 10px 8px;
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
}
.wt-mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--w-text);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile Navigation Drawer & Backdrop */
.wt-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wt-drawer-backdrop.active {
  display: block !important;
  opacity: 1 !important;
}
.wt-mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 99999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.wt-mobile-drawer.active {
  right: 0 !important;
}
.wt-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E2E8F0;
}
.wt-drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #475569;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
}
.wt-drawer-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}
.wt-drawer-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wt-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wt-drawer-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #334155 !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.wt-drawer-links li a i {
  width: 20px;
  text-align: center;
  font-size: 1.05rem;
}
.wt-drawer-links li a:hover,
.wt-drawer-links li.active a {
  background: #EFF6FF;
  color: #2563EB !important;
  font-weight: 700;
}
.wt-drawer-actions {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #E2E8F0;
}

/* -------------------------------------------------------------
   3. GOOGLE 1-CLICK AUTH BUTTON
   ------------------------------------------------------------- */
.btn-google-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 44px;
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius-sm);
  color: var(--w-text) !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
  margin-bottom: 14px;
}
.btn-google-auth:hover {
  border-color: #CBD5E1;
  background: var(--w-surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: var(--w-text) !important;
}

.wt-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 12px 0 14px;
}
.wt-auth-divider::before,
.wt-auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--w-border);
}
.wt-auth-divider span {
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--w-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   4. HERO SECTION (High Trust Layout)
   ------------------------------------------------------------- */
.wt-hero {
  padding: 50px 0 40px;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 60%),
              #FFFFFF;
  position: relative;
}
.wt-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.wt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--w-brand-light);
  border: 1px solid var(--w-brand-soft);
  color: var(--w-brand);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.wt-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(2.3rem, 4.5vw, 3.6rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  color: #0F172A !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.035em !important;
}
.wt-hero-title .wt-title-gradient,
.wt-hero-title span.highlight,
span.wt-title-gradient {
  background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  word-break: normal !important;
  white-space: normal !important;
}
.wt-hero-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--w-text-muted);
  margin-bottom: 24px;
  max-width: 540px;
}

/* 4 Trust Bullets */
.wt-hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.wt-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--w-surface);
  border: 1px solid var(--w-border);
  padding: 10px 14px;
  border-radius: var(--w-radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--w-text);
}
.wt-bullet-item i {
  color: var(--w-brand);
  font-size: 1rem;
}

.wt-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.wt-hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--w-border);
  flex-wrap: wrap;
}
.wt-stars-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #F59E0B;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Auth Conversion Card */
.wt-auth-card {
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius-xl);
  padding: 30px;
  box-shadow: var(--w-shadow-xl);
  position: relative;
}
.wt-auth-card-header {
  text-align: center;
  margin-bottom: 18px;
}
.wt-auth-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.wt-auth-card-sub {
  font-size: 0.82rem;
  color: var(--w-text-muted);
}

.wt-auth-tabs {
  display: flex;
  background: var(--w-surface);
  border-radius: var(--w-radius-sm);
  padding: 4px;
  margin-bottom: 18px;
  border: 1px solid var(--w-border);
}
.wt-auth-tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--w-text-muted);
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.wt-auth-tab.active {
  background: #FFFFFF;
  color: var(--w-brand);
  box-shadow: var(--w-shadow-xs);
}

/* Input Fields */
.wt-form-group {
  margin-bottom: 12px;
}
.wt-form-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--w-text);
  margin-bottom: 5px;
}
.wt-form-label a {
  color: var(--w-brand);
  text-decoration: none;
  font-weight: 600;
}
.wt-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wt-input-icon {
  position: absolute;
  left: 12px;
  color: var(--w-text-light);
  font-size: 0.88rem;
  pointer-events: none;
}
.wt-input {
  width: 100%;
  height: 42px;
  padding: 8px 12px 8px 36px;
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius-sm);
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--w-text);
  outline: none;
  transition: all 0.2s ease;
}
.wt-input:focus {
  border-color: var(--w-brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.wt-form-btn {
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  border: none;
  border-radius: var(--w-radius-sm);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wt-form-btn:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.wt-card-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--w-border);
  font-size: 0.76rem;
  color: var(--w-text-muted);
}
.wt-card-trust-footer i {
  color: var(--w-success);
}

/* -------------------------------------------------------------
   5. FINTECH TRUST BAR
   ------------------------------------------------------------- */
.wt-trust-bar {
  padding: 16px 0;
  background: var(--w-surface);
  border-top: 1px solid var(--w-border);
  border-bottom: 1px solid var(--w-border);
}
.wt-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.wt-trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--w-text);
}
.wt-trust-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.wt-trust-pill.blue .wt-trust-pill-icon { background: var(--w-brand-light); color: var(--w-brand); }
.wt-trust-pill.green .wt-trust-pill-icon { background: var(--w-success-light); color: var(--w-success); }
.wt-trust-pill.orange .wt-trust-pill-icon { background: var(--w-warning-light); color: var(--w-warning); }

/* -------------------------------------------------------------
   6. STATS SECTION
   ------------------------------------------------------------- */
.wt-stats {
  padding: 40px 0;
  background: #FFFFFF;
}
.wt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wt-stat-card {
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.25s ease;
}
.wt-stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--w-brand);
  box-shadow: var(--w-shadow-md);
}
.wt-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.wt-stat-icon.blue { background: var(--w-brand-light); color: var(--w-brand); }
.wt-stat-icon.green { background: var(--w-success-light); color: var(--w-success); }
.wt-stat-icon.orange { background: var(--w-warning-light); color: var(--w-warning); }
.wt-stat-icon.sky { background: #E0F2FE; color: #0284C7; }

.wt-stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--w-text);
  margin-bottom: 4px;
}
.wt-stat-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--w-text-muted);
}

/* -------------------------------------------------------------
   7. DEPOSIT MULTIPLIER OFFERS SECTION
   ------------------------------------------------------------- */
.wt-offers-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
.wt-offers-card {
  background: #FFFFFF;
  border: 1.5px solid #DBEAFE;
  border-radius: var(--w-radius-xl);
  padding: 36px 28px;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
}
.wt-offers-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.wt-deposit-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.wt-deposit-tier-card {
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.wt-deposit-tier-card.featured {
  border-color: #2563EB;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}
.wt-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563EB, #0EA5E9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.4px;
}
.wt-tier-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--w-text);
  margin-bottom: 6px;
}
.wt-tier-pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #2563EB;
  line-height: 1.1;
  margin-bottom: 6px;
}
.wt-tier-sub {
  font-size: 0.8rem;
  color: var(--w-text-muted);
}

.wt-bonus-calc-box {
  background: var(--w-surface);
  border: 1px solid var(--w-border);
  border-radius: var(--w-radius);
  padding: 24px;
  margin-top: 24px;
}
.wt-preset-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.wt-preset-pill {
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  color: var(--w-text);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.wt-preset-pill:hover,
.wt-preset-pill.active {
  background: #2563EB;
  border-color: #2563EB;
  color: #ffffff;
}

/* -------------------------------------------------------------
   8. COMMON SECTION HEADERS
   ------------------------------------------------------------- */
.wt-section {
  padding: 60px 0;
}
.wt-section.surface-bg {
  background: var(--w-surface);
}
.wt-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.wt-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--w-brand-light);
  border: 1px solid var(--w-brand-soft);
  color: var(--w-brand);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.wt-section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.wt-section-sub {
  font-size: 0.95rem;
  color: var(--w-text-muted);
  line-height: 1.6;
}

/* -------------------------------------------------------------
   9. PRICE CALCULATOR CARD
   ------------------------------------------------------------- */
.wt-calc-card {
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius-xl);
  padding: 36px 30px;
  box-shadow: var(--w-shadow-lg);
}

/* -------------------------------------------------------------
   10. FEATURES GRID
   ------------------------------------------------------------- */
.wt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wt-feature-card {
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius-lg);
  padding: 28px 24px;
  transition: all 0.25s ease;
}
.wt-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--w-brand);
  box-shadow: var(--w-shadow-md);
}
.wt-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.wt-feature-icon.blue { background: var(--w-brand-light); color: var(--w-brand); }
.wt-feature-icon.green { background: var(--w-success-light); color: var(--w-success); }
.wt-feature-icon.orange { background: var(--w-warning-light); color: var(--w-warning); }
.wt-feature-icon.sky { background: #E0F2FE; color: #0284C7; }
.wt-feature-icon.purple { background: #F3E8FF; color: #9333EA; }
.wt-feature-icon.red { background: #FEE2E2; color: #DC2626; }

.wt-feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.wt-feature-text {
  font-size: 0.86rem;
  color: var(--w-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* -------------------------------------------------------------
   11. HOW IT WORKS STEPS
   ------------------------------------------------------------- */
.wt-hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wt-step-item {
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.wt-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.wt-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.wt-step-text {
  font-size: 0.84rem;
  color: var(--w-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* -------------------------------------------------------------
   12. CLIENT REVIEWS
   ------------------------------------------------------------- */
.wt-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wt-testi-card {
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wt-testi-stars {
  color: #F59E0B;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.wt-testi-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--w-text);
  margin-bottom: 20px;
  font-style: italic;
}
.wt-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wt-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wt-testi-name {
  font-weight: 800;
  font-size: 0.88rem;
}
.wt-testi-role {
  font-size: 0.76rem;
  color: var(--w-text-muted);
}

/* -------------------------------------------------------------
   13. FAQ ACCORDION
   ------------------------------------------------------------- */
.wt-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wt-faq-item {
  background: #FFFFFF;
  border: 1.5px solid var(--w-border);
  border-radius: var(--w-radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.wt-faq-item.open {
  border-color: var(--w-brand);
}
.wt-faq-q {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.94rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.wt-faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--w-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--w-text-muted);
  transition: transform 0.2s;
}
.wt-faq-item.open .wt-faq-icon {
  transform: rotate(45deg);
  background: var(--w-brand-light);
  color: var(--w-brand);
}
.wt-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--w-text-muted);
}
.wt-faq-item.open .wt-faq-a {
  display: block;
}

/* -------------------------------------------------------------
   14. CALL TO ACTION BANNER
   ------------------------------------------------------------- */
.wt-cta-banner {
  padding: 50px 0;
  background: #FFFFFF;
}
.wt-cta-box {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #0EA5E9 100%);
  border-radius: var(--w-radius-xl);
  padding: 48px 32px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}
.wt-cta-title {
  color: #FFFFFF !important;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.wt-cta-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.wt-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.wt-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: #1E40AF !important;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: var(--w-radius-sm);
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}
.wt-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.wt-btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: var(--w-radius-sm);
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.wt-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}

/* -------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------- */
.wt-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 60px 0 30px;
  border-top: 1px solid #1E293B;
}
.wt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.wt-footer-title {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.94rem;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.2px;
}
.wt-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wt-footer-links li a {
  color: #94A3B8;
  font-size: 0.85rem;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.wt-footer-links li a:hover {
  color: #38BDF8;
}

/* -------------------------------------------------------------
   16. NOTIFICATION & WELCOME OFFER POPUP MODAL (Realistic & Ultra-Premium)
   ------------------------------------------------------------- */
.wt-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wt-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.wt-modal-box {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 30px 80px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  transform: scale(0.92) translateY(24px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.wt-modal-backdrop.active .wt-modal-box {
  transform: scale(1) translateY(0);
}
.wt-modal-top-accent {
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #2563EB 0%, #0EA5E9 50%, #10B981 100%);
}
.wt-modal-floating-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #64748B;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  line-height: 1;
}
.wt-modal-floating-close:hover {
  background: #E2E8F0;
  color: #0F172A;
  transform: scale(1.08);
}
.wt-modal-3d-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
}
.wt-modal-3d-graphic svg {
  filter: drop-shadow(0 12px 24px rgba(37, 99, 235, 0.25));
  transition: transform 0.3s ease;
}
.wt-modal-3d-graphic:hover svg {
  transform: translateY(-3px) scale(1.03);
}

.wt-modal-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.wt-modal-pill-tag .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}
.wt-modal-title {
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.25;
  color: #0F172A;
  margin-bottom: 6px;
  letter-spacing: -0.025em;
}
.wt-modal-sub {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #64748B;
  margin-bottom: 16px;
}
.wt-modal-tiers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  background: #F8FAFC;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
}
.wt-modal-tier-col {
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
}
.wt-modal-tier-col.tier-1 { border-color: #BFDBFE; background: #EFF6FF; }
.wt-modal-tier-col.tier-2 { border-color: #A7F3D0; background: #ECFDF5; }
.wt-modal-tier-col.tier-3 { border-color: #FDE68A; background: #FFFBEB; }
.wt-modal-tier-col .tier-lbl {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2px;
  letter-spacing: 0.2px;
}
.wt-modal-tier-col.tier-1 .tier-lbl { color: #1E40AF; }
.wt-modal-tier-col.tier-2 .tier-lbl { color: #065F46; }
.wt-modal-tier-col.tier-3 .tier-lbl { color: #92400E; }

.wt-modal-tier-col .tier-val {
  font-size: 0.95rem;
  font-weight: 900;
}
.wt-modal-tier-col.tier-1 .tier-val { color: #2563EB; }
.wt-modal-tier-col.tier-2 .tier-val { color: #10B981; }
.wt-modal-tier-col.tier-3 .tier-val { color: #D97706; }

.wt-modal-cta-btn {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF !important;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
}
.wt-modal-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
  color: #FFFFFF !important;
}

/* -------------------------------------------------------------
   17. COMPLETE RESPONSIVE MEDIA QUERIES
   ------------------------------------------------------------- */
@media (max-width: 1080px) {
  .wt-nav-links {
    display: none;
  }
  .wt-mobile-toggle {
    display: flex;
  }
  .wt-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .wt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .wt-deposit-tiers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .wt-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wt-hiw-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .wt-testi-grid {
    grid-template-columns: 1fr;
  }
  .wt-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Welcome Promo Strip Ribbon (Responsive & No Overlap) */
.wt-welcome-promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  gap: 14px;
  box-sizing: border-box;
  width: 100%;
}
.wt-welcome-promo-content {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}
.wt-welcome-promo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #2563EB;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  flex-shrink: 0;
}
.wt-welcome-promo-text {
  min-width: 0;
  flex: 1;
}
.wt-welcome-promo-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 2px 0;
  line-height: 1.35;
}
.wt-welcome-promo-sub {
  font-size: 0.82rem;
  color: #1E40AF;
  margin: 0;
  line-height: 1.4;
}
.wt-welcome-promo-btn {
  background: #2563EB;
  color: #FFFFFF !important;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.wt-welcome-promo-btn:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .wt-top-ticker {
    font-size: 0.74rem;
    padding: 6px 12px;
  }
  .wt-navbar-inner {
    height: 62px;
    padding: 0 16px;
  }
  .wt-hero {
    padding: 24px 0;
  }
  .wt-hero-title {
    font-size: 1.85rem !important;
  }
  .wt-hero-bullets {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .wt-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .wt-stat-card {
    padding: 14px 10px !important;
  }
  .wt-stat-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }
  .wt-stat-val {
    font-size: 1.35rem !important;
  }
  .wt-stat-lbl {
    font-size: 0.72rem !important;
  }
  .wt-deposit-tiers-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .wt-deposit-tier-card {
    padding: 18px 14px !important;
  }
  .wt-deposit-tier-card .wt-tier-pct {
    font-size: 1.8rem !important;
  }
  .wt-features-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .wt-hiw-steps {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .wt-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wt-cta-box {
    padding: 28px 16px;
  }
/* Bonus Calculator Box & Currency Input Group */
.wt-bonus-calc-box {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
}
.wt-currency-input-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 2px solid #CBD5E1;
  border-radius: 12px;
  padding: 0 16px;
  height: 52px;
  max-width: 240px;
  width: 100%;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}
.wt-currency-input-wrapper:focus-within {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.wt-currency-symbol-prefix {
  font-size: 1.35rem;
  font-weight: 800;
  color: #64748B;
  margin-right: 8px;
  user-select: none;
}
.wt-currency-input-field {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  width: 100%;
  text-align: center;
  padding: 0 !important;
}
.wt-preset-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.wt-preset-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  font-size: 0.84rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}
.wt-preset-pill:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
  color: #0F172A;
}
.wt-preset-pill.active {
  background: #2563EB !important;
  border-color: #2563EB !important;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

@media (max-width: 768px) {
  .wt-top-ticker {
    font-size: 0.74rem;
    padding: 6px 12px;
  }
  .wt-navbar-inner {
    height: 62px;
    padding: 0 16px;
  }
  .wt-hero {
    padding: 24px 0;
  }
  .wt-hero-title {
    font-size: 1.85rem !important;
  }
  .wt-hero-bullets {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .wt-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .wt-stat-card {
    padding: 14px 10px !important;
  }
  .wt-stat-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }
  .wt-stat-val {
    font-size: 1.35rem !important;
  }
  .wt-stat-lbl {
    font-size: 0.72rem !important;
  }
  .wt-deposit-tiers-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .wt-deposit-tier-card {
    padding: 18px 14px !important;
  }
  .wt-deposit-tier-card .wt-tier-pct {
    font-size: 1.8rem !important;
  }
  .wt-features-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .wt-hiw-steps {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .wt-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wt-cta-box {
    padding: 28px 16px;
  }
  .wt-calc-card {
    padding: 20px 14px;
  }
  .wt-bonus-calc-box {
    padding: 20px 14px !important;
    text-align: center !important;
  }
  .wt-currency-input-wrapper {
    margin: 0 auto 14px auto !important;
    max-width: 220px !important;
  }
  .wt-preset-pills {
    justify-content: center !important;
    gap: 6px !important;
    margin-bottom: 16px !important;
  }
  .wt-preset-pill {
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
  }
  .wt-bonus-calc-box .wt-btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* Responsive Promo Ribbon on Mobile */
  .wt-welcome-promo-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 14px;
    gap: 12px;
  }
  .wt-welcome-promo-content {
    align-items: flex-start;
    gap: 10px;
  }
  .wt-welcome-promo-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
    margin-top: 2px;
  }
  .wt-welcome-promo-title {
    font-size: 0.9rem;
  }
  .wt-welcome-promo-sub {
    font-size: 0.78rem;
  }
  .wt-welcome-promo-btn {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-size: 0.84rem;
  }
}

@media (max-width: 480px) {
  .wt-btn-ghost {
    display: none;
  }
  .wt-hero-actions .wt-btn {
    width: 100%;
  }

  /* Ultra-Responsive Mobile Modal Dialog */
  .wt-modal-backdrop {
    padding: 8px !important;
    align-items: center !important;
  }
  .wt-modal-box {
    border-radius: 20px !important;
    max-width: 95vw !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .wt-modal-box .p-4 {
    padding: 16px 14px 18px !important;
  }
  .wt-modal-3d-graphic {
    margin-bottom: 8px !important;
  }
  .wt-modal-3d-graphic svg {
    width: 60px !important;
    height: 60px !important;
  }
  .wt-modal-pill-tag {
    font-size: 0.7rem !important;
    padding: 4px 10px !important;
    margin-bottom: 8px !important;
  }
  .wt-modal-title {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }
  .wt-modal-sub {
    font-size: 0.76rem !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
  }
  .wt-modal-tiers-row {
    gap: 4px !important;
    padding: 6px !important;
    margin-bottom: 14px !important;
  }
  .wt-modal-tier-col {
    padding: 6px 2px !important;
  }
  .wt-modal-tier-col .tier-lbl {
    font-size: 0.58rem !important;
    margin-bottom: 1px !important;
  }
  .wt-modal-tier-col .tier-val {
    font-size: 0.8rem !important;
  }
  .wt-modal-cta-btn {
    height: 44px !important;
    font-size: 0.86rem !important;
    margin-bottom: 8px !important;
  }
  .wt-modal-floating-close {
    top: 10px !important;
    right: 10px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 16px !important;
  }
}
