/* ==========================================================================
   GET REWARDS - LANDING PAGE CSS
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  /* Colors */
  --primary-color: #093325;
  --primary-light: #0d4231;
  --primary-lighter: #165c46;
  --primary-tint: #e6ecea;
  --primary-rgb: 9, 51, 37;
  
  --accent-color: #ffb800;
  --accent-hover: #e0a300;
  --accent-rgb: 255, 184, 0;
  
  --bg-light: #f4f8f6;
  --bg-white: #ffffff;
  
  --text-main: #13241f;
  --text-muted: #536b63;
  --border-color: rgba(9, 51, 37, 0.08);
  --border-focus: rgba(9, 51, 37, 0.25);
  
  /* Fonts */
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Effects */
  --shadow-sm: 0 4px 12px rgba(9, 51, 37, 0.04);
  --shadow-md: 0 10px 30px rgba(9, 51, 37, 0.06);
  --shadow-lg: 0 20px 50px rgba(9, 51, 37, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll Animations Base */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Utilities */
.text-center { text-align: center; }
.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .section-title { font-size: 1.875rem; }
  .section-subtitle { font-size: 1rem; }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-secondary {
  background-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.3);
}
.btn-secondary:hover:not(:disabled) {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}
.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.btn-secondary-outline:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.2);
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.875rem;
  border-width: 1.5px;
}

.btn-full-width {
  width: 100%;
}

/* Navigation Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(244, 248, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 10px 0;
  background-color: rgba(9, 51, 37, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.site-header.scrolled .brand-name {
  color: var(--bg-white);
}

.site-header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.site-header.scrolled .nav-link:hover {
  color: var(--accent-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: var(--transition-smooth);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

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

.main-nav {
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.site-header.scrolled .mobile-menu-toggle .bar {
  background-color: var(--bg-white);
}

/* Mobile Dropdown */
.mobile-dropdown-nav {
  display: none;
  position: fixed;
  top: 71px;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-dropdown-nav.open {
  transform: translateY(0);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  padding: 8px 0;
}

.mobile-nav-link:hover {
  color: var(--accent-color);
}

.mobile-btn {
  display: inline-block;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .main-nav, .nav-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-dropdown-nav { display: block; }
}

/* Header Hamburger Open Animation */
.mobile-menu-toggle.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 140px 0 80px;
  background: radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.05), transparent 45%),
              linear-gradient(135deg, #ffffff 0%, #edf4f1 100%);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  max-width: 620px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-tint);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(9, 51, 37, 0.1);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--primary-color);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.google-play-badge {
  display: block;
  height: 48px;
  transition: var(--transition-smooth);
}

.google-play-badge:hover {
  transform: scale(1.05);
}

.hero-trust-indicators {
  display: flex;
  gap: 24px;
}

.indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-lighter);
}

.indicator i {
  color: var(--accent-color);
  font-size: 1rem;
}

/* Phone Mockup Styling */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup-wrapper {
  position: relative;
  max-width: 320px;
  width: 100%;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(9, 51, 37, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.phone-mockup-img {
  position: relative;
  z-index: 2;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  animation: floatMockup 6s ease-in-out infinite;
}

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

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 20px;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-indicators {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .phone-mockup-img {
    max-width: 270px;
    margin: 0 auto;
  }
}


/* ==========================================================================
   SECTION 2: HOW IT WORKS
   ========================================================================== */
.how-it-works-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.step-card {
  position: relative;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(9, 51, 37, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 36px;
  height: 36px;
  background-color: var(--primary-color);
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(9, 51, 37, 0.2);
}

.step-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--primary-tint);
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon-box {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.step-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   SECTION 3: KEY FEATURES
   ========================================================================== */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(9, 51, 37, 0.15);
}

.feature-icon-wrapper {
  font-size: 2.25rem;
  color: var(--primary-lighter);
  margin-bottom: 20px;
}

.feature-card:hover .feature-icon-wrapper {
  color: var(--accent-color);
}

.feature-title {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

@media (max-width: 650px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   SECTION 4: TRUST & WHY CHOOSE US
   ========================================================================== */
.trust-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.trust-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.trust-content .section-title {
  text-align: left;
}

.trust-points {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-point-item {
  display: flex;
  gap: 16px;
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-tint);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: bold;
}

.trust-point-item h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.trust-point-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.trust-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
}

.badge-icon {
  color: var(--accent-color);
}

/* Dashboard Mockup Interaction Visual */
.trust-visual {
  display: flex;
  justify-content: center;
}

.transaction-card {
  width: 100%;
  max-width: 360px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-header-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-color);
}

.balance-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.balance-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.points-tag {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-left: 6px;
}

.withdrawal-progress {
  margin-bottom: 24px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 4px;
}

.card-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.payout-method-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.wallet-payout-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.wallet-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.wallet-details {
  flex-grow: 1;
}

.wallet-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.wallet-account {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.active-badge {
  background-color: rgba(255, 184, 0, 0.15);
  color: var(--accent-color);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .trust-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-content .section-title {
    text-align: center;
  }
  .trust-content .section-subtitle {
    text-align: center;
  }
  .trust-badges-wrapper {
    justify-content: center;
  }
  .trust-visual {
    margin-top: 20px;
  }
}


/* ==========================================================================
   SECTION 5: TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.quote {
  font-size: 1rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.6;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-tint);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.user-name {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 700;
}

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

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
  }
}


/* ==========================================================================
   SECTION 6: FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

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

.faq-accordion-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--primary-lighter);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 20px 28px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--primary-lighter);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 28px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 16px 20px;
    font-size: 1rem;
  }
  .faq-answer-inner {
    padding: 0 20px 16px;
  }
}


/* ==========================================================================
   SECTION 7: FINAL CALL TO ACTION
   ========================================================================== */
.cta-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.cta-container {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.google-play-badge-large {
  height: 54px;
}

.cta-footer-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.cta-footer-info i {
  color: var(--accent-color);
  margin-right: 4px;
}

@media (max-width: 768px) {
  .cta-container {
    padding: 60px 24px;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .google-play-badge-large {
    height: 48px;
  }
  .cta-footer-info {
    gap: 16px;
    font-size: 0.8rem;
  }
}


/* ==========================================================================
   SECTION 8: FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--bg-white);
}

.footer-tagline {
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-color);
}

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

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }
  .footer-tagline {
    margin: 0 auto;
  }
  .footer-links {
    align-items: center;
  }
}
