/* ==========================================================================
   TRUST 777 — Official Premium Landing Page Stylesheet
   Theme: Royal Maroon, Velvet Crimson & 24K Gold VIP Gaming
   ========================================================================== */

:root {
  --brand-maroon: #7A0C1F;
  --brand-crimson: #9B1832;
  --brand-deep: #4A0814;
  --brand-darkest: #150205;
  --brand-surface: #220408;

  --gold: #F59E0B;
  --gold-bright: #FBBF24;
  --gold-light: #FEF3C7;
  --gold-dark: #B45309;
  --gold-glow: rgba(245, 158, 11, 0.35);

  --green: #22C55E;
  --green-glow: rgba(34, 197, 94, 0.4);
  --red: #EF4444;

  --white: #FFFFFF;
  --text-main: #FFFFFF;
  --text-dim: #D1D5DB;
  --text-muted: #9CA3AF;

  --glass-bg: rgba(45, 6, 12, 0.72);
  --glass-border: rgba(245, 158, 11, 0.18);
  --glass-card-hover: rgba(75, 10, 20, 0.85);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --shadow-gold: 0 10px 30px rgba(245, 158, 11, 0.2);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--brand-darkest);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--brand-darkest);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--brand-crimson), var(--gold-dark));
  border-radius: 99px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography & Helpers */
a {
  text-decoration: none;
  color: inherit;
}
.gold-text {
  background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ruby-text {
  background: linear-gradient(135deg, #FDA4AF 0%, #E11D48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   1. TOP NOTIFICATION BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #3A040D 0%, #580816 50%, #3A040D 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  font-size: 0.8rem;
  padding: 8px 0;
  color: var(--text-dim);
}
.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-bright);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
}
.announcement-links {
  display: flex;
  gap: 16px;
  font-weight: 500;
}
.announcement-links a:hover {
  color: var(--gold-bright);
}

/* ==========================================================================
   2. NAVBAR
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(21, 2, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-logo:hover img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-bright);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #1A0500;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
  filter: brightness(1.05);
}
.btn-maroon {
  background: linear-gradient(135deg, #7A0C1F 0%, #9B1832 100%);
  color: var(--white);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 4px 16px rgba(122, 12, 31, 0.4);
}
.btn-maroon:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #8B1428 0%, #B01E3C 100%);
  box-shadow: 0 6px 24px rgba(122, 12, 31, 0.6);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(ellipse at 50% 10%, #4A0814 0%, #1A0307 55%, #150205 100%);
  overflow: hidden;
}

/* Ambient glow orbs */
.hero-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 12, 31, 0.45) 0%, rgba(0,0,0,0) 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
  filter: blur(40px);
}
.hero-glow-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0,0,0,0) 70%);
  bottom: 0;
  right: -80px;
  pointer-events: none;
  filter: blur(50px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-badge-pill i {
  color: var(--gold);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-feature-item i {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.apk-btn-sub {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
  display: block;
}

/* Hero Right: Showcase Card */
.hero-showcase {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(160deg, rgba(74, 8, 20, 0.75) 0%, rgba(26, 3, 7, 0.95) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.15);
  text-align: center;
  position: relative;
  backdrop-filter: blur(16px);
}
.hero-card-emblem {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 28px;
  padding: 8px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(0,0,0,0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatEmblem 4s ease-in-out infinite;
}
.hero-card-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.6));
}

@keyframes floatEmblem {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.hero-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

/* Live mini ticker inside card */
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  text-align: left;
}
.card-stat-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}
.card-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.card-stat-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-bright);
}

/* ==========================================================================
   4. STATS TRUST COUNTERS
   ========================================================================== */
.stats-section {
  padding: 30px 0;
  background: var(--brand-surface);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 16px 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================================
   5. LIVE RESULTS HUB
   ========================================================================== */
.section {
  padding: 70px 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.sec-heading {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.sec-subtext {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Market Category Tabs */
.market-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-dim);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.tab-btn.active {
  background: linear-gradient(135deg, #7A0C1F 0%, #9B1832 100%);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(122, 12, 31, 0.5);
}

/* Market Cards Grid */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.market-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-maroon), var(--gold));
  opacity: 0.8;
}
.market-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 158, 11, 0.15);
}

.market-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.market-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.market-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.badge-live {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ADE80;
}
.badge-live .pulse-dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulseGreen 1.5s infinite;
}
.badge-closed {
  background: rgba(156, 163, 175, 0.15);
  border: 1px solid rgba(156, 163, 175, 0.3);
  color: #9CA3AF;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.market-result-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: center;
  margin-bottom: 16px;
}
.market-result-digits {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

.market-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.market-time-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.chart-link {
  color: var(--gold-bright);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}
.chart-link:hover {
  background: rgba(245, 158, 11, 0.25);
  color: var(--white);
}

/* Starline Grid */
.starline-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}
.starline-item {
  background: rgba(25, 3, 6, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  transition: transform 0.2s;
}
.starline-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.starline-time {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.starline-score {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-bright);
}

/* Gali Desawar Grid */
.gali-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.gali-item {
  background: rgba(35, 4, 9, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gali-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}
.gali-open {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.gali-jodi-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: #F87171;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   6. ROYAL WINNING RATES
   ========================================================================== */
.rates-section {
  background: radial-gradient(ellipse at center, #2E050C 0%, #150205 100%);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.rate-card {
  background: var(--glass-bg);
  border: 1.5px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.rate-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}
.rate-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.rate-type {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.rate-multiplier {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #150205;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.rate-payout-example {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 10px;
  border-left: 3px solid var(--gold);
}
.rate-payout-example span {
  color: var(--gold-bright);
  font-weight: 800;
}

/* ==========================================================================
   7. INTERACTIVE WINNING CALCULATOR
   ========================================================================== */
.calc-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(60, 8, 16, 0.85) 0%, rgba(26, 3, 7, 0.95) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card), 0 0 25px rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(12px);
}
.calc-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.calc-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-input, .calc-select {
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease;
}
.calc-input:focus, .calc-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}
.calc-select option {
  background: #250307;
  color: var(--white);
}

.calc-chips {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.calc-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.15s ease;
}
.calc-chip:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.calc-display-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1.5px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}
.calc-display-lbl {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}
.calc-display-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1.2;
  margin: 6px 0 16px;
  font-family: 'Courier New', Courier, monospace;
}

/* ==========================================================================
   8. BENTO GRID / WHY TRUST 777
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform 0.25s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.bento-span-2 {
  grid-column: span 2;
}
.bento-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.bento-icon-ruby {
  background: rgba(225, 29, 72, 0.18);
  color: #F43F5E;
}
.bento-icon-gold {
  background: rgba(245, 158, 11, 0.18);
  color: var(--gold-bright);
}
.bento-icon-green {
  background: rgba(34, 197, 94, 0.18);
  color: #4ADE80;
}
.bento-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}
.bento-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ==========================================================================
   9. 3-STEP JOURNEY
   ========================================================================== */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.journey-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease;
}
.journey-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.journey-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-maroon), var(--gold-dark));
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(122, 12, 31, 0.5);
}
.journey-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}
.journey-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ==========================================================================
   10. FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-question i {
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-box.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  display: none;
}
.faq-box.open .faq-answer {
  display: block;
}

/* ==========================================================================
   11. BOTTOM CTA BANNER
   ========================================================================== */
.bottom-cta {
  background: radial-gradient(ellipse at center, #5A0816 0%, #200408 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: 50px 30px;
  text-align: center;
  margin: 40px auto;
  max-width: 1100px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.bottom-cta h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.bottom-cta p {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  background: #0A0102;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 30px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 14px;
}
.footer-col-title {
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--gold-bright);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ==========================================================================
   13. FLOATING ACTION & MOBILE STICKY BAR
   ========================================================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.2s ease;
}
.fab-whatsapp:hover {
  transform: scale(1.08);
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 2, 4, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(245, 158, 11, 0.25);
  padding: 10px 16px;
  z-index: 1000;
  gap: 10px;
}
.mobile-sticky-bar .btn {
  flex: 1;
  padding: 12px 10px;
  font-size: 0.88rem;
}

/* ==========================================================================
   14. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-desc {
    margin: 0 auto 28px;
  }
  .hero-features-row {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-span-2 {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    max-width: 100%;
    overflow-x: hidden;
  }
  .announcement-bar {
    padding: 6px 10px;
    font-size: 0.74rem;
    overflow-x: hidden;
  }
  .announcement-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
    width: 100%;
    max-width: 100%;
  }
  .announcement-inner > div {
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  .announcement-links {
    display: none;
  }
  .header {
    overflow-x: hidden;
  }
  .nav-inner {
    height: 62px;
  }
  .nav-menu {
    display: none;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .brand-logo img {
    height: 38px;
    max-width: 140px;
  }
  .hero-section {
    padding: 36px 0 50px;
    overflow: hidden;
  }
  .hero-glow-1, .hero-glow-2 {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    word-break: break-word;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .hero-features-row {
    gap: 8px;
    margin-bottom: 24px;
  }
  .hero-feature-item {
    font-size: 0.78rem;
    padding: 5px 10px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-card {
    max-width: 100%;
    padding: 24px 16px;
  }
  .hero-card-emblem {
    width: 110px;
    height: 110px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .section {
    padding: 44px 0;
    overflow: hidden;
  }
  .sec-heading {
    font-size: 1.7rem;
  }
  .market-tabs {
    gap: 8px;
  }
  .tab-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .markets-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .market-card {
    padding: 16px;
    max-width: 100%;
  }
  .market-result-digits {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    word-break: break-all;
  }
  .rates-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rate-card {
    padding: 18px;
    max-width: 100%;
  }
  .calc-wrapper {
    padding: 22px 16px;
    max-width: 100%;
  }
  .calc-inputs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calc-display-val {
    font-size: 2.2rem;
  }
  .calc-display-box {
    padding: 18px 12px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bento-card {
    padding: 20px;
  }
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .journey-card {
    padding: 22px 16px;
  }
  .bottom-cta {
    padding: 30px 16px;
    margin: 20px auto;
    border-radius: var(--radius-lg);
  }
  .bottom-cta h2 {
    font-size: 1.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-bottom: 74px;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  .fab-whatsapp {
    bottom: 76px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .bottom-cta div {
    flex-direction: column;
    width: 100%;
    gap: 10px !important;
  }
  .bottom-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .sec-heading {
    font-size: 1.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .stat-item {
    padding: 12px 6px;
  }
  .stat-num {
    font-size: 1.25rem;
  }
  .market-result-digits {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
  }
  .calc-display-val {
    font-size: 1.75rem;
  }
  .hero-card-stats {
    gap: 8px;
  }
  .card-stat-box {
    padding: 8px 10px;
  }
  .card-stat-val {
    font-size: 0.88rem;
  }
  .calc-chips {
    gap: 6px;
  }
  .calc-chip {
    padding: 4px 8px;
    font-size: 0.72rem;
  }
}
