/* spininsider.ca CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-main: #070913;
  --bg-surface: #0f1225;
  --bg-surface-glass: rgba(15, 18, 37, 0.7);
  --bg-accent-glass: rgba(212, 175, 55, 0.08);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(212, 175, 55, 0.15);
  
  --primary: #D4AF37; /* Luxury Gold */
  --primary-hover: #F3CD5F;
  --secondary: #1F2E5B; /* Premium Dark Indigo */
  --accent: #E2B13C;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;

  --text-primary: #F8FAFC;
  --text-muted: #94A3B8;
  --text-gold: #F3CD5F;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 45px -10px rgba(0,0,0,0.7);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px; /* space for sticky mobile CTA */
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

h3 {
  font-size: 1.3rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Layout Containers */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation Styling */
header.site-header {
  background-color: var(--bg-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.site-logo, .logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.site-logo:hover, .logo:hover {
  opacity: 0.9;
}

.logo-desktop {
  display: block;
  height: 40px;
  width: auto;
}

.logo-mobile {
  display: none;
  height: 40px;
  width: auto;
}

@media (max-width: 580px) {
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
    height: 38px;
    width: auto;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--bg-main) !important;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Menu Toggle (Pure CSS Hamburger) */
.menu-toggle-cb {
  display: none;
}

.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive Breakpoint for Mobile Header */
@media (max-width: 768px) {
  .menu-toggle-btn {
    display: flex;
  }

  .site-nav {
    display: none; /* Hide default nav */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0d0f1d;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  /* When checkbox is checked, show menu as flex */
  .menu-toggle-cb:checked ~ .site-nav {
    display: flex;
  }

  /* Hamburger Animation */
  .menu-toggle-cb:checked + .menu-toggle-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle-cb:checked + .menu-toggle-btn span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle-cb:checked + .menu-toggle-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}

/* Hero Section - Premium Image Background Banner */
.hero {
  background-image: url('/foto/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  border-radius: var(--border-radius-lg);
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 9, 19, 0.72); /* Dark overlay */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

/* Ensure all content layers above overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.8rem !important;
  margin-bottom: 8px !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem !important;
  }
}

.hero-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 0 1px 5px rgba(0,0,0,0.8);
}

.hero-verified-badge .check-icon {
  font-size: 1.2rem;
}

.hero-offer-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--primary);
  border-radius: var(--border-radius-sm);
  padding: 12px 24px;
  margin: 0 auto 24px;
  max-width: fit-content;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-offer-badge .badge-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-gold);
  text-transform: uppercase;
}

.hero-offer-badge .badge-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 4px;
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto 30px;
  color: #E2E8F0; /* Brighter lead text for readability */
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.hero-btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--bg-main) !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-radius: 50px; /* pill shape */
  border: 2px solid #FFFFFF; /* white border matching screenshot */
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  text-shadow: none;
}

.hero-btn-play:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

/* Glassmorphism Cards */
.card {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg);
}

/* Tables - Fintech Styled */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  background: var(--bg-surface);
}

th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
}

td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

tr:hover {
  background: rgba(212, 175, 55, 0.02);
}

table strong {
  color: var(--text-primary);
}

/* Action Buttons & CTA Blocks */
.cta-block {
  background: linear-gradient(135deg, #0f1225 0%, #171b38 100%);
  border: 1px solid var(--primary);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.cta-block h3 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.cta-block p {
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  border: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn.primary {
  background: var(--primary);
  color: var(--bg-main);
}

.btn.primary:hover {
  background: var(--primary-hover);
  color: var(--bg-main);
  transform: translateY(-1px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

/* Lists and Layouts */
ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--text-muted);
}

li {
  margin-bottom: 8px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

.pro-card, .con-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
}

.pro-card h4 {
  color: var(--success);
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.con-card h4 {
  color: var(--danger);
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-card ul, .con-card ul {
  list-style: none;
  padding-left: 0;
}

.pro-card li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-left: -1em;
}

.con-card li::before {
  content: "✗";
  color: var(--danger);
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-left: -1em;
}

/* FAQ Accordions */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-right: 20px;
}

/* Trust Disclaimer Box */
.trust-disclaimer {
  background: var(--bg-accent-glass);
  border: 1px dashed var(--primary);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin: 30px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.trust-disclaimer h4 {
  color: var(--text-gold);
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Footer styling */
footer.site-footer {
  background: #04050a;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
}

.rg-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

/* Quick Answer Box */
.quick-answer {
  background: var(--bg-accent-glass);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin: 24px 0;
}

.quick-answer p {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0;
}

/* Grid Layouts for homepage dashboards */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.stat-box {
  text-align: center;
  padding: 15px;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Sticky mobile CTA bar */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  z-index: 1000;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
  }
}

/* Redirect Loader style */
.redirect {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-bottom: 0;
}

.redirect-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

.brand-badge {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--bg-main);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.loader-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 20px 0;
}
.loader-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 4px solid var(--primary);
  border-radius: 50%;
  animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--primary) transparent transparent transparent;
}
.loader-ring div:nth-child(1) { animation-delay: -0.45s; }
.loader-ring div:nth-child(2) { animation-delay: -0.3s; }
.loader-ring div:nth-child(3) { animation-delay: -0.15s; }
@keyframes loader-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.redirect-btn {
  width: 100%;
  margin-top: 15px;
}

/* Slots Page Grid */
.slot-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.slot-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.slot-item:hover {
  transform: scale(1.03);
  border-color: var(--primary);
}

.slot-poster-wrapper {
  background: rgba(0,0,0,0.2);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 226 / 338;
}

.slot-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.slot-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* High-Converting Conversion Card */
.conversion-card {
  background: linear-gradient(135deg, #0e1124 0%, #151833 100%);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-lg);
  padding: 24px 30px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.trust-badge {
  background: var(--primary);
  color: var(--bg-main);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rating-badge {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gold);
}

.card-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .card-main-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.brand-logo-panel {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .brand-logo-panel {
    flex-direction: column;
    align-items: center;
  }
}

.brand-icon {
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: var(--border-radius-md);
  line-height: 1;
}

.brand-name-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.offer-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-headline {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.offer-subline {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.cta-actions {
  display: flex;
  align-items: center;
}

.btn-play-now {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--bg-main) !important;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
  line-height: 1.2;
  text-align: center;
}

.btn-play-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.btn-subtext {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.8;
  margin-top: 4px;
}

.card-terms-footer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 10px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
  .slot-catalog {
    grid-template-columns: 1fr 1fr !important; /* 2 columns on mobile instead of 1 */
    gap: 12px !important;
  }
  .hero {
    padding: 40px 16px !important;
  }
  .conversion-card {
    padding: 16px 20px !important;
  }
  .offer-headline {
    font-size: 1.4rem !important;
  }
}

/* Mobile Sticky CTA Bar Styling */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 18, 37, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 12px 20px;
  z-index: 2000;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex !important;
  }
  body {
    padding-bottom: 80px !important; /* Ensure space for sticky footer bar */
  }
}

.mobile-cta-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mobile-cta-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mobile-cta-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}
