/* 
  SAB KUCH ARWAL - ULTRA MODERN LIGHT THEME (WHITE & EMERALD)
  Primary Background: #FFFFFF / #F8FAFC
  Brand Forest Green: #064E3B / #022C22
  Accent Emerald: #10B981 / #059669
  Mint Glow: #34D399 / #A7F3D0
  Accent Gold: #F59E0B
  Text Main: #0F172A (Deep Slate)
  Text Muted: #475569 / #64748B
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

:root {
  --bg-main: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-surface: #FFFFFF;
  --brand-dark: #022C22;
  --brand-forest: #064E3B;
  --brand-emerald: #059669;
  --brand-emerald-vibrant: #10B981;
  --brand-mint: #34D399;
  --brand-mint-light: #ECFDF5;
  --brand-mint-border: #A7F3D0;
  --brand-gold: #F59E0B;
  --brand-gold-light: #FEF3C7;
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  --border-light: #E2E8F0;
  --border-emerald: rgba(16, 185, 129, 0.25);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px -5px rgba(16, 185, 129, 0.08);
  --shadow-lg: 0 20px 45px -10px rgba(6, 78, 59, 0.12);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.25);
  --radius-2xl: 28px;
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

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

/* Ambient Animated Glow Blobs */
.bg-ambient-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.glow-1 { top: -80px; left: 50%; transform: translateX(-50%); background: #A7F3D0; }
.glow-2 { top: 900px; left: -100px; background: #D1FAE5; animation-delay: 2s; }
.glow-3 { top: 2100px; right: -100px; background: #FEF3C7; animation-delay: 4s; }

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(30px) scale(1.08); }
  100% { transform: translateY(-20px) scale(0.95); }
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Navbar (Glassmorphic Light) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

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

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.05) rotate(3deg);
}

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

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-forest);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-emerald-vibrant);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-btn {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4s infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  25%, 100% { left: 200%; }
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(16, 185, 129, 0.5);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--brand-forest);
  font-size: 1.75rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 90px;
  position: relative;
  background: radial-gradient(circle at 50% 10%, #F0FDF4 0%, #FFFFFF 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--brand-mint-light);
  border: 1px solid var(--brand-mint-border);
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-forest);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.badge-dot {
  width: 9px;
  height: 9px;
  background: var(--brand-emerald-vibrant);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-emerald-vibrant);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
  letter-spacing: -1px;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #059669 0%, #10B981 50%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.playstore-btn {
  background: #0F172A;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 26px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.playstore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -6px rgba(15, 23, 42, 0.45);
  background: #000000;
}

.playstore-icon {
  width: 28px;
  height: 28px;
}

.playstore-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.playstore-sub {
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: #94A3B8;
  font-weight: 600;
}

.playstore-main {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
}

.apk-btn {
  background: #FFFFFF;
  color: #1E293B;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.apk-btn:hover {
  background: #F8FAFC;
  border-color: var(--brand-emerald-vibrant);
  color: var(--brand-forest);
  transform: translateY(-2px);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hero-stat-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 16px 12px;
  border-radius: 18px;
  box-shadow: 0 6px 18px -3px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.2s ease;
}

.hero-stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--brand-mint-border);
}

.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-forest);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Hero 3D Phone Mockup (iPhone 16 Pro Style) */
.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup-wrap {
  position: relative;
  perspective: 1200px;
}

.phone-frame {
  width: 310px;
  height: 630px;
  background: #0B131E;
  border-radius: 48px;
  border: 10px solid #1E293B;
  box-shadow: 0 30px 70px -15px rgba(6, 78, 59, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-mockup-wrap:hover .phone-frame {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 38px;
  display: block;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 10px 18px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-forest);
  box-shadow: 0 14px 30px -5px rgba(6, 78, 59, 0.15);
  white-space: nowrap;
  animation: float-badge 4s ease-in-out infinite;
  z-index: 20;
}

.badge-top-right {
  top: 40px;
  right: -30px;
  animation-delay: 0.5s;
}

.badge-bottom-left {
  bottom: 60px;
  left: -40px;
  animation-delay: 1.5s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections Common */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  color: var(--brand-emerald);
  background: var(--brand-mint-light);
  border: 1px solid var(--brand-mint-border);
  padding: 6px 16px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-main);
  letter-spacing: -0.6px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Services Grid */
.services-section {
  background: var(--bg-secondary);
}

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

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: 34px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-emerald-vibrant);
  box-shadow: var(--shadow-lg);
}

.service-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid #A7F3D0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon-box {
  transform: scale(1.08) rotate(4deg);
}

.service-icon-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tag-pill {
  display: inline-block;
  padding: 5px 14px;
  background: #ECFDF5;
  border-radius: 9999px;
  font-size: 0.78rem;
  color: var(--brand-forest);
  font-weight: 700;
  border: 1px solid #A7F3D0;
}

/* Play Store Interactive Showcase Carousel */
.screens-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.screens-marquee-container {
  width: 100%;
  overflow-x: auto;
  padding: 30px 10px 50px;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-emerald-vibrant) #F1F5F9;
}

.screens-marquee-container::-webkit-scrollbar {
  height: 8px;
}
.screens-marquee-container::-webkit-scrollbar-track {
  background: #F1F5F9;
  border-radius: 4px;
}
.screens-marquee-container::-webkit-scrollbar-thumb {
  background: var(--brand-emerald-vibrant);
  border-radius: 4px;
}

.screens-slider-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 10px 20px;
}

/* Uniform Smartphone Showcase Card */
.showcase-phone-card {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-phone-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.showcase-phone-frame {
  width: 250px;
  height: 500px;
  background: #0F172A;
  border-radius: 42px;
  border: 9px solid #1E293B;
  box-shadow: 0 20px 45px -10px rgba(6, 78, 59, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.showcase-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 20px;
  background: #000000;
  border-radius: 12px;
  z-index: 10;
}

.showcase-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 33px;
  display: block;
}

.showcase-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  border-top-left-radius: 33px;
  border-top-right-radius: 33px;
}

.showcase-caption-pill {
  margin-top: 18px;
  padding: 8px 18px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-forest);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.showcase-phone-card:hover .showcase-caption-pill {
  background: var(--brand-mint-light);
  border-color: var(--brand-mint-border);
  color: var(--brand-forest);
  transform: translateY(-2px);
}

/* Scan to Download Banner */
.scan-banner {
  background: linear-gradient(135deg, #064E3B 0%, #065F46 50%, #022C22 100%);
  border-radius: 36px;
  padding: 64px 60px;
  box-shadow: 0 25px 60px -15px rgba(6, 78, 59, 0.4);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 48px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.scan-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.scan-qr-box {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  max-width: 260px;
  margin: 0 auto;
  position: relative;
}

.qr-code-img {
  width: 180px;
  height: 180px;
}

.qr-caption {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
  margin-top: 14px;
}

/* Laser Scan Animation on QR */
.qr-scanner-line {
  position: absolute;
  width: calc(100% - 52px);
  height: 3px;
  background: linear-gradient(90deg, transparent, #10B981, transparent);
  box-shadow: 0 0 10px #10B981;
  top: 26px;
  left: 26px;
  animation: scanLaser 2.5s ease-in-out infinite alternate;
}

@keyframes scanLaser {
  0% { top: 26px; }
  100% { top: 206px; }
}

/* Join as Vendor / Rider */
.partner-section {
  background: var(--bg-secondary);
}

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

.join-card {
  background: #FFFFFF;
  border-radius: var(--radius-2xl);
  padding: 44px 38px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.join-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-emerald-vibrant);
}

.join-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-main);
}

.join-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.join-benefits-list {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.join-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: #334155;
  font-weight: 500;
}

.benefit-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: var(--brand-emerald);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}

.join-btn {
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.join-btn-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 20px -4px rgba(16, 185, 129, 0.4);
}

.join-btn-primary:hover {
  box-shadow: 0 14px 28px -4px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}

.join-btn-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 20px -4px rgba(245, 158, 11, 0.35);
}

.join-btn-gold:hover {
  box-shadow: 0 14px 28px -4px rgba(245, 158, 11, 0.45);
  transform: translateY(-2px);
}

/* FAQ Accordion */
.faq-section {
  background: #FFFFFF;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--brand-emerald-vibrant);
  box-shadow: 0 8px 25px -5px rgba(16, 185, 129, 0.12);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  user-select: none;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--brand-emerald);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer (Deep Grounded Forest) */
.footer {
  background: #022C22;
  color: #E2E8F0;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

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

.footer-brand-p {
  color: #94A3B8;
  font-size: 0.92rem;
  margin-top: 16px;
  line-height: 1.65;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748B;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 36px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats-row {
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .scan-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 44px 28px;
  }
  .join-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .nav-links, .nav-cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

