/* ============================================================================
   REDDY ANNA - Professional CSS
   Dark theme with gold/amber accents
   ============================================================================ */

/* ============================================================================
   GLOBAL RESET & BASE STYLES
   ============================================================================ */

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

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

body {
  background-color: #0a0e17;
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 1rem;
}

strong {
  color: #ffffff;
  font-weight: 600;
}

a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d97706;
}

ul, ol {
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* ============================================================================
   LAYOUT UTILITIES
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background-color: #111827;
}

.section-light {
  background-color: #0a0e17;
}

/* Standalone section-dark (without .section) still gets padding */
section.section-dark:not(.section) {
  padding: 4rem 0;
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 2.5rem; }

/* Grid utilities */
.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

/* ============================================================================
   SCROLLBAR STYLING
   ============================================================================ */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0e17;
}

::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}

/* Firefox scrollbar */
* {
  scrollbar-color: #374151 #0a0e17;
  scrollbar-width: thin;
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

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

.logo img {
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #f59e0b;
}

/* Submenu/Dropdown */
.nav-menu .has-submenu {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}

.nav-menu .has-submenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  margin: 0;
}

.sub-menu a {
  display: block;
  padding: 10px 20px;
  color: #d1d5db;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.sub-menu a:hover {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  padding-left: 25px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: #f59e0b;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #f59e0b;
  color: #0a0e17;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background-color: #d97706;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: #f59e0b;
  border: 2px solid #f59e0b;
}

.btn-secondary:hover {
  background-color: #f59e0b;
  color: #0a0e17;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
  font-size: 1.1rem;
  padding: 14px 36px;
}

.btn-whatsapp svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.btn-whatsapp i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation: none;
  transform: scale(1.05);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ============================================================================
   ANIMATIONS & TRANSITIONS
   ============================================================================ */

/* --- Keyframes --- */

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
  50%      { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Scroll-triggered reveal (JS adds .is-visible) --- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside a grid */
.reveal-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Subtle element micro-interactions --- */

/* Gold underline slide on content headings */
.content-section h2 {
  position: relative;
  display: inline-block;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, transparent);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .content-section h2::after,
.content-section h2:hover::after {
  width: 60%;
}

/* Feature table row highlight slide */
.feature-table tbody tr {
  transition: background-color 0.3s ease;
}

/* CTA banner subtle shine */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.cta-banner:hover::before {
  left: 120%;
}

/* Card icon gentle float */
.ra-card-icon {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ra-card:hover .ra-card-icon {
  transform: translateY(-4px);
}

/* FAQ smooth open indicator rotation */
.faq-question {
  transition: all 0.3s ease, background-color 0.2s ease;
}

/* Hero banner image subtle zoom on load */
.hero-banner img {
  animation: scaleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Hero title typewriter-style fade */
.hero h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* Hero CTA delayed entrance */
.hero-cta {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

/* Hero text card delayed entrance */
.hero-text {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

/* Floating CTA entrance */
.floating-cta {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}

/* Nav links subtle hover underline */
.nav-menu > li > a {
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #f59e0b;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu > li > a:hover::after {
  width: 100%;
  left: 0;
}

/* Footer links subtle slide */
.footer-links a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  padding-left: 4px;
}

/* Smooth border glow on focus for interactive elements */
.btn:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-children > * { opacity: 1; transform: none; }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero-banner {
  margin-bottom: 2rem;
}

.hero-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-text {
  max-width: 900px;
  margin: 2rem auto 0;
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.8;
  background-color: #1a1f2e;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-cta .btn {
  margin: 0 0.5rem;
}

/* ============================================================================
   FEATURE TABLE
   ============================================================================ */

.feature-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
}

/* When feature table is standalone (not inside a content card), give it its own card look */
.section > .container > .feature-table-wrap {
  background-color: #1a1f2e;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.feature-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
}

.feature-table th {
  background-color: #f59e0b;
  color: #0a0e17;
  padding: 14px 20px;
  font-weight: 600;
  text-align: left;
  font-size: 0.95rem;
}

.feature-table td {
  background-color: #1a1f2e;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #d1d5db;
}

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

.feature-table tbody tr:hover td {
  background-color: #232d3f;
}

/* ============================================================================
   CONTENT SECTIONS
   ============================================================================ */

.content-section {
  line-height: 1.8;
  background-color: #1a1f2e;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-section p {
  color: #d1d5db;
  margin-bottom: 1.25rem;
}

.content-section ul,
.content-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-section li {
  margin-bottom: 0.75rem;
  color: #d1d5db;
}

.content-section ul li::marker {
  color: #f59e0b;
}

.content-section ol li::marker {
  color: #f59e0b;
}

.content-section hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.content-section blockquote {
  border-left: 4px solid #f59e0b;
  padding-left: 1.5rem;
  margin-left: 0;
  margin-bottom: 1.5rem;
  color: #9ca3af;
  font-style: italic;
}

/* Content card inside dark section — slightly lighter to maintain contrast */
.section-dark .content-section {
  background-color: #1f2637;
}

/* When ra-card grid is inside dark section */
.section-dark .ra-card {
  background-color: #1f2637;
}

/* ============================================================================
   GAMING MARKETS GRID
   ============================================================================ */

.ra-grid-section {
  padding: 4rem 0;
  background-color: #111827;
}

.ra-grid-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ra-grid-header h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ra-grid-header p {
  color: #9ca3af;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.ra-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ra-card {
  background-color: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.2);
}

.ra-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #ffffff;
}

.ra-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.ra-card p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ra-card-btn {
  display: inline-block;
  background-color: #f59e0b;
  color: #0a0e17;
  padding: 10px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.ra-card-btn:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.faq-section {
  padding: 4rem 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.faq-header p {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #ffffff;
  user-select: none;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(245, 158, 11, 0.05);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #f59e0b;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #d1d5db;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* ============================================================================
   PAGE HERO (SUB-PAGE)
   ============================================================================ */

.page-hero {
  padding: 60px 0;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.page-hero-content {
  flex: 1;
}

.page-hero-content h1 {
  margin-bottom: 1.5rem;
}

.page-hero-content p {
  color: #d1d5db;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.page-hero-image {
  flex: 1;
  max-width: 450px;
}

.page-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

/* ============================================================================
   CTA BANNER (INLINE)
   ============================================================================ */

.cta-banner {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 0;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.cta-banner h3 {
  color: #0a0e17;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.cta-banner p {
  color: rgba(10, 14, 23, 0.85);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cta-banner .btn {
  background-color: #0a0e17;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(10, 14, 23, 0.3);
}

.cta-banner .btn:hover {
  background-color: #111827;
}

/* ============================================================================
   FLOATING CTA
   ============================================================================ */

.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #ffffff;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
}

.floating-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-cta svg {
  width: 1.5rem;
  height: 1.5rem;
}

.floating-cta i {
  font-size: 1.4rem;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
  background-color: #0a0e17;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3.75rem 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-heading {
  color: #f59e0b;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-about p {
  color: #9ca3af;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  /* Navigation */
  .nav-menu {
    gap: 1rem;
  }

  /* Mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 14, 23, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 500px;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-menu a {
    display: block;
    padding: 1rem;
  }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: rgba(17, 24, 39, 0.8);
    border: none;
    box-shadow: none;
    margin-top: 0;
  }

  /* Sections */
  .section,
  .section-dark,
  .section-light {
    padding: 2.5rem 0;
  }

  .content-section {
    padding: 1.5rem;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
  }

  .page-hero {
    flex-direction: column;
    gap: 2rem;
  }

  .page-hero-image {
    max-width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Grid adjustments */
  .ra-box-grid {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Buttons */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-cta .btn {
    width: 100%;
    margin: 0.5rem auto;
  }

  /* Hero section */
  .hero {
    padding: 40px 0;
  }

  /* Feature table */
  .feature-table {
    font-size: 0.85rem;
  }

  .feature-table th,
  .feature-table td {
    padding: 10px 12px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 2rem;
  }

  .cta-banner h3 {
    font-size: 1.5rem;
  }

  /* Floating CTA */
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-cta a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .floating-cta svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Content section */
  .content-section ul,
  .content-section ol {
    margin-left: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }

  .section {
    padding: 2rem 0;
  }

  .site-header {
    padding: 0.75rem 0;
  }

  .logo img {
    max-height: 40px;
  }

  .ra-grid-header h2 {
    font-size: 1.75rem;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .cta-banner {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .faq-question {
    padding: 1rem;
  }

  .feature-table th,
  .feature-table td {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.no-wrap {
  white-space: nowrap;
}

.text-muted {
  color: #9ca3af;
}

.text-gold {
  color: #f59e0b;
}

.bg-dark {
  background-color: #0a0e17;
}

.bg-darker {
  background-color: #111827;
}

.bg-card {
  background-color: #1a1f2e;
}

.border-gold {
  border-color: #f59e0b;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-full {
  border-radius: 9999px;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.pt-2 { padding-top: 1rem; }
.pt-4 { padding-top: 2rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 2rem; }

.max-w-full {
  max-width: 100%;
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.transition-all {
  transition: all 0.3s ease;
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print {
  .mobile-menu-toggle,
  .floating-cta,
  .site-header {
    display: none;
  }

  body {
    background-color: #ffffff;
    color: #000000;
  }

  a {
    color: #0000ee;
  }
}
