/* ==========================================================================
   EventsMaze - Inspira UI & Animate UI Inspired Design System
   Brand: EventsMaze (Your Events. Your City. Your Adventure.)
   ========================================================================== */

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

:root {
  /* Colors - Light Blue, Marine Cobalt, Sunset Orange, Obsidian Black & Pure White */
  --primary: #0EA5E9;
  --primary-hover: #0284C7;
  --primary-dark: #0369A1;
  --primary-light: #F0F9FF;
  --primary-subtle: #E0F2FE;
  --primary-gradient: linear-gradient(135deg, #0284C7 0%, #0EA5E9 50%, #38BDF8 100%);
  --brand-orange: #FF6A00;
  --brand-orange-grad: linear-gradient(135deg, #FF6A00 0%, #FF5100 100%);
  --accent-cyan: #06B6D4;
  --accent-blue: #2563EB;
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;

  /* Neutrals */
  --dark: #0B0F17;
  --dark-soft: #141C2E;
  --dark-surface: #1E293B;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-main: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-surface-elevated: #FFFFFF;
  --bg-alt: #F1F5F9;
  --border-light: rgba(15, 23, 42, 0.08);
  --border-medium: rgba(15, 23, 42, 0.14);

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(11, 15, 23, 0.08);
  --shadow-lg: 0 20px 45px -10px rgba(11, 15, 23, 0.12);
  --shadow-xl: 0 30px 70px -15px rgba(11, 15, 23, 0.18);
  --shadow-primary: 0 12px 32px rgba(14, 165, 233, 0.3);
  --shadow-phone: 0 35px 80px -15px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(0, 0, 0, 0.08);
  --glow-primary: 0 0 50px rgba(14, 165, 233, 0.35);

  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

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

/* ==========================================================================
   Background Dot Matrix & Grid Pattern (Inspira UI Style)
   ========================================================================== */
.dot-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14, 165, 233, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.grid-line-pattern {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(14, 165, 233, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 60%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   Top WhatsApp Announcement Header Bar
   ========================================================================== */
.top-announcement-bar {
  background: #0B0F17;
  color: #FFFFFF;
  padding: 8px 0;
  border-bottom: 1px solid rgba(14, 165, 233, 0.25);
  font-size: 0.86rem;
  position: relative;
  z-index: 99;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}

.announcement-text {
  color: #CBD5E1;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.announcement-text strong {
  color: #FFFFFF;
  font-weight: 800;
}

.announcement-desktop-text {
  display: inline;
}

.announcement-mobile-text {
  display: none;
}

.btn-text-desktop {
  display: inline;
}

.btn-text-mobile {
  display: none;
}

.announcement-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.announcement-btn:hover {
  background: #20BA56;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.announcement-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .top-announcement-bar {
    padding: 7px 0;
  }

  .announcement-content {
    justify-content: space-between;
    gap: 8px;
  }

  .announcement-desktop-text {
    display: none;
  }

  .announcement-mobile-text {
    display: inline;
    font-size: 0.82rem;
    text-align: left;
    line-height: 1.25;
  }

  .btn-text-desktop {
    display: none;
  }

  .btn-text-mobile {
    display: inline;
  }

  .announcement-btn {
    padding: 4px 10px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .announcement-btn svg {
    width: 13px;
    height: 13px;
  }
}

/* ==========================================================================
   Modern Inspira UI Glassmorphic Navbar / Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 100;
  transition: all var(--transition-fast);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(11, 15, 23, 0.15);
}

.nav-cta-btn:hover {
  background: #1E293B;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(11, 15, 23, 0.22);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* ==========================================================================
   Brand Logo & Title Typography
   ========================================================================== */
.brand-title-text {
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1;
}

.brand-logo-events {
  color: #0A58CA;
}

.brand-logo-maze {
  background: linear-gradient(135deg, #FF6A00 0%, #FF5100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Hero Section (Inspira & Animate UI Visuals)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 28px 0 52px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 60%, #F1F5F9 100%);
}

.hero-glow-1 {
  position: absolute;
  width: 550px;
  height: 550px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(56, 189, 248, 0.08) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  right: -50px;
  top: 150px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

@keyframes glowPulse {
  0% { transform: translateX(-50%) scale(0.95); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

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

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

/* Live Badge (Squircle / Rounded-Rect for shape variety) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.22);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.06);
  transition: all var(--transition-fast);
}

.hero-badge:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-1px);
}

.live-pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary);
}

.live-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.6;
  animation: pulsePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulsePing {
  0% { transform: scale(1); opacity: 0.8; }
  75%, 100% { transform: scale(2.4); opacity: 0; }
}

/* Shimmering Gradient Typography (Inspira UI & Animate UI Refined) */
.hero-title {
  font-size: clamp(1.48rem, 2.3vw, 1.95rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 12px;
  max-width: 540px;
}

.gradient-text-shine {
  background: linear-gradient(110deg, #0284C7 0%, #0EA5E9 25%, #38BDF8 50%, #0284C7 75%, #0EA5E9 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: textShine 5s linear infinite;
  display: inline-block;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.58;
  margin-bottom: 18px;
  font-weight: 450;
  max-width: 520px;
}

/* Interactive Feature Chips (Rounded Rectangle to break pill monotony) */
.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 650;
  color: var(--dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

.feature-pill:hover {
  border-color: rgba(14, 165, 233, 0.4);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.1);
}

.feature-pill-icon {
  font-size: 0.9rem;
}

/* Store CTA Buttons with Shiny Glow */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #FFFFFF;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px -5px rgba(11, 15, 23, 0.28);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.store-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  transition: all 0.75s ease;
  pointer-events: none;
}

.store-btn:hover::after {
  left: 140%;
}

.store-btn:hover {
  background: #141C2E;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(14, 165, 233, 0.3);
  border-color: rgba(14, 165, 233, 0.5);
}

.store-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.store-btn-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  font-weight: 600;
}

.store-btn-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* Trust Indicators */
.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--accent-emerald);
}

/* ==========================================================================
   Smartphone Mockup & Micro-Interactions (Inspira UI Style)
   ========================================================================== */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shape-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(255, 106, 0, 0.15) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

/* Floating Stat Badges */
.floating-stat-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatSlow 5s ease-in-out infinite alternate;
}

.floating-stat-badge.left {
  top: 12%;
  left: -42px;
  animation-delay: 0s;
}

.floating-stat-badge.right {
  bottom: 8%;
  right: -42px;
  animation-delay: 2.5s;
}

@media (max-width: 1200px) {
  .floating-stat-badge.left {
    left: -18px;
  }
  .floating-stat-badge.right {
    right: -18px;
  }
}

@media (max-width: 991px) {
  .floating-stat-badge {
    display: none;
  }
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.floating-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-stat-icon.red {
  background: #FFF1F2;
  color: #E11D48;
}

.floating-stat-icon.blue {
  background: #E0F2FE;
  color: #0284C7;
}

.floating-stat-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.floating-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Phone Bezel Frame */
.phone-mockup {
  position: relative;
  width: 345px;
  height: 680px;
  background: #0B0F17;
  border-radius: 48px;
  padding: 10px;
  box-shadow: 
    0 25px 60px -15px rgba(11, 15, 23, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 0 0 2px #1E293B;
  z-index: 2;
  transition: transform var(--transition-smooth);
}

.phone-mockup:hover {
  transform: translateY(-4px);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0B0F19;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Status Bar & Dynamic Island (Dark Theme) */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 4px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #FFFFFF;
  z-index: 10;
  background: #0B0F19;
}

.phone-island {
  width: 76px;
  height: 18px;
  background: #000000;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
}

.island-camera-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1E293B;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FFFFFF;
}

/* App UI Inside Phone (Real Dark EventsMaze UI) */
.app-ui-body {
  padding: 8px 12px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}

.app-ui-body::-webkit-scrollbar {
  display: none;
}

/* Location Header */
.app-location-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 2px;
}

.app-location-pin {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.app-location-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.app-location-sub {
  font-size: 0.62rem;
  color: #8E9BAE;
  font-weight: 500;
  margin-top: 1px;
}

/* Search Bar */
.app-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #131B2A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 12px;
  color: #6B7B92;
  font-size: 0.78rem;
  font-weight: 500;
}

.app-search-box svg {
  width: 15px;
  height: 15px;
  color: #8E9BAE;
}

/* Section Header (All Events + Promote) */
.app-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.app-section-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: #FFFFFF;
}

.app-promote-btn {
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #C4B5FD;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* Filters Bar */
.app-filters-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.app-filters-row::-webkit-scrollbar {
  display: none;
}

.app-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #151D2D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.app-filter-chip.active {
  background: #1E293B;
  border-color: rgba(14, 165, 233, 0.4);
  color: #FFFFFF;
}

/* 2-Column Events Grid */
.app-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.app-card-item {
  background: #131A28;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast);
}

.app-card-item:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.3);
}

/* Card Visual Poster */
.app-card-poster {
  height: 82px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Poster Themes matching Food, Shopping, and Events Categories */
.poster-offbeat {
  background: radial-gradient(circle at 70% 30%, #4338CA 0%, #1E1B4B 60%, #0B0F19 100%),
              linear-gradient(135deg, #6366F1 0%, #0B0F19 100%);
}

.poster-foodfest {
  background: radial-gradient(circle at 65% 35%, #EA580C 0%, #9A3412 50%, #0B0F19 100%),
              linear-gradient(135deg, #F97316 0%, #7C2D12 100%);
}

.poster-shopping {
  background: radial-gradient(circle at 70% 30%, #059669 0%, #064E3B 55%, #0B0F19 100%),
              linear-gradient(135deg, #10B981 0%, #022C22 100%);
}

.poster-yellow {
  background: radial-gradient(circle at 50% 30%, #D97706 0%, #78350F 60%, #0B0F19 100%),
              linear-gradient(135deg, #F59E0B 0%, #451A03 100%);
}

.poster-cafe {
  background: radial-gradient(circle at 65% 35%, #DC2626 0%, #7F1D1D 55%, #0B0F19 100%),
              linear-gradient(135deg, #EF4444 0%, #450A0A 100%);
}

.poster-lifestyle {
  background: radial-gradient(circle at 70% 30%, #0284C7 0%, #075985 55%, #0B0F19 100%),
              linear-gradient(135deg, #38BDF8 0%, #0C4A6E 100%);
}

/* Card Visual Poster Illustrations / Watermarks */
.poster-illustration {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  opacity: 0.35;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  pointer-events: none;
}

/* Card Badge Overlays */
.card-badge-upcoming {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(4px);
  color: #34D399;
  font-size: 0.48rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
  letter-spacing: 0.02em;
}

.card-badge-upcoming::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #10B981;
}

.card-badge-discount {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #E11D48;
  color: #FFFFFF;
  font-size: 0.48rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.4);
}

.card-badge-category {
  position: absolute;
  bottom: 5px;
  left: 6px;
  background: #7C3AED;
  color: #FFFFFF;
  font-size: 0.48rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.01em;
}

.card-badge-category.cat-food {
  background: #EA580C;
}

.card-badge-category.cat-shopping {
  background: #059669;
}

.card-badge-category.cat-events {
  background: #7C3AED;
}

.card-badge-category.blue {
  background: #0284C7;
}

/* Card Text Info */
.app-card-details {
  padding: 8px 7px 9px 7px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-card-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-card-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.54rem;
  color: #8E9BAE;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-card-meta svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  color: #8E9BAE;
}

/* Phone Bottom Nav */
.phone-bottom-nav {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-around;
  padding: 7px 0 10px 0;
  z-index: 10;
}

.phone-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-light);
}

.phone-nav-btn.active {
  color: var(--primary);
  font-weight: 800;
}

.phone-nav-btn svg {
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   Section: Engineered for Instant Discovery (Premium 2-Column SaaS Cards)
   ========================================================================== */
.section {
  padding: 40px 0;
  position: relative;
}

.section-features {
  padding: 48px 0 54px 0;
  background-color: #F8FBFE;
  position: relative;
  overflow: hidden;
}

.features-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.section-alt {
  background-color: var(--bg-surface);
}

.section-dark {
  background-color: var(--dark);
  color: #FFFFFF;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0284C7;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.70rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: rgba(14, 165, 233, 0.09);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.section-title {
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.24;
  color: #0B0F19;
  margin-bottom: 8px;
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: #94A3B8;
}

/* ==========================================================================
   Discovery Grid & High-End Feature Cards (Isolated 2-Column Product Layout)
   ========================================================================== */
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 100%;
}

.discovery-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.04), 0 2px 5px -1px rgba(15, 23, 42, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.discovery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 16px 32px -6px rgba(14, 165, 233, 0.12), 0 4px 10px -2px rgba(14, 165, 233, 0.05);
}

.card-glow-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.discovery-card:hover .card-glow-accent {
  opacity: 0.85;
}

.card-glow-accent.blue {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, transparent 70%);
}

.card-glow-accent.amber {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
}

.card-glow-accent.emerald {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
}

.card-glow-accent.green {
  background: radial-gradient(circle, rgba(37, 211, 102, 0.22) 0%, transparent 70%);
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0284C7;
  display: inline-block;
  box-shadow: 0 0 6px rgba(14, 165, 233, 0.8);
}

.discovery-card-content {
  position: relative;
  z-index: 2;
}

.discovery-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.discovery-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.discovery-icon-wrapper.icon-blue {
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  color: #0284C7;
  border: 1px solid rgba(14, 165, 233, 0.3);
  box-shadow: 0 3px 10px rgba(14, 165, 233, 0.12);
}

.discovery-icon-wrapper.icon-amber {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.12);
}

.discovery-icon-wrapper.icon-emerald {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.12);
}

.discovery-icon-wrapper.icon-green {
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
  color: #16A34A;
  border: 1px solid rgba(37, 211, 102, 0.3);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.12);
}

.discovery-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 6px;
}

.discovery-card-desc {
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.55;
  font-weight: 450;
}

/* ==========================================================================
   Panel 1: Live Interactive Radar Visual
   ========================================================================== */
.radar-visual-panel {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.radar-scan-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radar-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.4);
  animation: radarWave 2.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.radar-pulse-ring.ring-1 {
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.radar-pulse-ring.ring-2 {
  width: 36px;
  height: 36px;
  animation-delay: 1.2s;
}

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

.radar-center-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284C7;
  box-shadow: 0 0 8px #0EA5E9;
  z-index: 2;
}

.radar-live-markers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.radar-marker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  color: #334155;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.radar-marker-item strong {
  color: #0284C7;
  font-weight: 750;
}

.marker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.marker-dot.live {
  background: #0EA5E9;
  box-shadow: 0 0 5px #0EA5E9;
}

.marker-dot.promo {
  background: #F59E0B;
  box-shadow: 0 0 5px #F59E0B;
}

/* ==========================================================================
   Panel 2: Deal Voucher Panel
   ========================================================================== */
.deal-voucher-panel {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid #FDE68A;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

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

.voucher-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 750;
  color: #92400E;
}

.voucher-discount-tag {
  background: linear-gradient(135deg, #EA580C 0%, #D97706 100%);
  color: #FFFFFF;
  font-size: 0.70rem;
  font-weight: 850;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
}

.voucher-bottom-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(217, 119, 6, 0.25);
}

.voucher-store-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.voucher-store-name {
  font-size: 0.76rem;
  font-weight: 800;
  color: #78350F;
}

.voucher-store-sub {
  font-size: 0.66rem;
  color: #92400E;
  font-weight: 500;
}

.voucher-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FFFFFF;
  color: #059669;
  font-size: 0.68rem;
  font-weight: 750;
  padding: 3px 7px;
  border-radius: 5px;
  border: 1px solid #A7F3D0;
}

.voucher-status-pill svg {
  width: 11px;
  height: 11px;
}

/* ==========================================================================
   Panel 3: Privacy Security Panel
   ========================================================================== */
.privacy-security-panel {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.privacy-compliance-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-shield-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #FFFFFF;
  border: 1px solid #86EFAC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16A34A;
  box-shadow: 0 2px 5px rgba(22, 163, 74, 0.12);
  flex-shrink: 0;
}

.privacy-shield-icon svg {
  width: 18px;
  height: 18px;
}

.privacy-title-text {
  font-size: 0.78rem;
  font-weight: 800;
  color: #14532D;
}

.privacy-subtitle-text {
  font-size: 0.68rem;
  color: #15803D;
  font-weight: 550;
}

.privacy-checks-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(22, 163, 74, 0.25);
}

.privacy-check-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.70rem;
  font-weight: 700;
  color: #166534;
}

.check-icon {
  color: #16A34A;
  font-weight: 900;
}

/* ==========================================================================
   Panel 4: WhatsApp Listing Panel
   ========================================================================== */
.whatsapp-listing-panel {
  background: linear-gradient(180deg, #F8FAFC 0%, #F0FDF4 100%);
  border: 1px solid #DCFCE7;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.whatsapp-chat-preview {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.whatsapp-chat-bubble {
  max-width: 85%;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.70rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.whatsapp-chat-bubble.user-msg {
  align-self: flex-start;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #334155;
}

.whatsapp-chat-bubble.reply-msg {
  align-self: flex-end;
  background: #DCF8C6;
  border: 1px solid #B8ECA0;
  color: #14532D;
  font-weight: 650;
}

.chat-time {
  font-size: 0.60rem;
  color: #94A3B8;
}

.whatsapp-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(37, 211, 102, 0.3);
}

.whatsapp-response-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.70rem;
  font-weight: 650;
  color: #475569;
}

.response-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 5px #22C55E;
}

.whatsapp-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 750;
  padding: 5px 12px;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.whatsapp-submit-btn:hover {
  background: #20BA56;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: #FFFFFF;
}

.whatsapp-submit-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Spotlight Hover Effect */
.card-spotlight {
  position: relative;
  overflow: hidden;
}

.card-spotlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(14, 165, 233, 0.12),
    transparent 40%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-spotlight:hover::before {
  opacity: 1;
}

/* Animated Border Beam */
.border-beam {
  position: relative;
}

.border-beam::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(14, 165, 233, 0.8) 50%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  background-size: 200% 100%;
  animation: beamMove 4s linear infinite;
}

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

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

/* ==========================================================================
   Download Section (Zomato-Inspired High Contrast Glowing Card)
   ========================================================================== */
.download-section {
  padding: 36px 0 72px 0;
  background-color: var(--bg-main);
}

.app-download-card {
  position: relative;
  background: linear-gradient(135deg, #0B0F17 0%, #111827 50%, #1E293B 100%);
  border-radius: var(--radius-lg);
  padding: 48px 42px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(11, 15, 23, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.12);
  pointer-events: none;
}

.app-circle-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
}

.app-circle-2 {
  width: 700px;
  height: 700px;
  bottom: -250px;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.05) 0%, transparent 70%);
}

.app-download-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.app-download-info h2 {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-bottom: 12px;
}

.app-download-info h2 span {
  background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.app-download-info p {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.58;
  margin-bottom: 24px;
}

.app-download-info p strong {
  color: #FFFFFF;
}

.app-store-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(14, 165, 233, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
  color: #FFFFFF;
}

.app-store-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.app-store-text small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
}

.app-store-text span {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* Download QR Frame */
.app-phone-wrapper {
  display: flex;
  justify-content: center;
}

.app-phone {
  width: 240px;
  background: #000000;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.app-notch {
  width: 60px;
  height: 14px;
  background: #000000;
  border-radius: 10px;
  margin: 0 auto 6px auto;
}

.app-phone-screen {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 24px 16px;
  text-align: center;
}

.app-qr-title h3 {
  font-size: 0.98rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
}

.app-qr-title p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.app-qr-box {
  width: 145px;
  height: 145px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.app-qr-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Site Footer (Dark Modern Glass Aesthetic)
   ========================================================================== */
.site-footer {
  background: #0B0F17;
  color: #94A3B8;
  padding: 64px 0 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand-info .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-size: 1.20rem;
  font-weight: 850;
  color: #0EA5E9;
  letter-spacing: -0.02em;
}

.footer-logo-text span {
  background: var(--brand-orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-bio {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.55;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.76rem;
  font-weight: 750;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 0.80rem;
  color: #94A3B8;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-qr-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 12px;
}

.footer-qr-card img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.footer-qr-text {
  font-size: 0.65rem;
  color: #94A3B8;
  font-weight: 600;
}

.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  color: #94A3B8;
  transition: all var(--transition-fast);
}

.social-link-item:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.social-link-item svg {
  width: 15px;
  height: 15px;
}

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

.footer-bottom-links a {
  color: #64748B;
  margin-left: 14px;
  transition: color var(--transition-fast);
}

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

/* ==========================================================================
   Feature Cards & Icons (About Page & Shared Grid)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

.feature-card:hover {
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.08);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 12px;
  background: #E0F2FE;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.feature-icon-wrapper svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  stroke: currentColor;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.feature-desc {
  font-size: 0.86rem;
  color: #64748B;
  line-height: 1.58;
}

/* ==========================================================================
   Page Headers (Refined Proportional Typography)
   ========================================================================== */
.page-header {
  padding: 32px 0 28px 0;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.page-title {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

.page-subtitle {
  font-size: 0.88rem;
  color: #64748B;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.58;
}

.section-tag {
  display: inline-block;
  background: #E0F2FE;
  color: #0284C7;
  font-size: 0.70rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 0.88rem;
  color: #64748B;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.58;
}

/* ==========================================================================
   Legal & Privacy Policy Page Styling (Stripe & Apple Inspired)
   ========================================================================== */
.legal-content-wrapper {
  padding: 36px 0 72px 0;
  background: #F8FAFC;
}

.legal-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 38px 32px;
  box-shadow: 0 10px 35px -5px rgba(0, 0, 0, 0.03);
  max-width: 860px;
  margin: 0 auto;
}

.legal-badge-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F1F5F9;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.legal-highlight {
  background: #F0F9FF;
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-left: 4px solid #0EA5E9;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.86rem;
  color: #0C4A6E;
  line-height: 1.6;
  margin: 18px 0 24px 0;
}

.legal-highlight strong {
  color: #0369A1;
  font-weight: 800;
}

.legal-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F1F5F9;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.legal-section h3 {
  font-size: 0.88rem;
  font-weight: 750;
  color: #1E293B;
  margin: 14px 0 6px 0;
}

.legal-section p {
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.68;
  margin-bottom: 10px;
}

.legal-section ul {
  margin: 8px 0 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.legal-section li {
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.6;
}

.legal-section li strong {
  color: #0F172A;
  font-weight: 700;
}

.legal-contact-box {
  background: #F8FAFC;
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 14px;
}

.legal-contact-box p {
  margin-bottom: 4px;
  font-size: 0.85rem;
}

/* ==========================================================================
   About Page Principles Grid
   ========================================================================== */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

.feature-card:hover {
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.08);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 12px;
  background: #E0F2FE;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.feature-icon-wrapper svg {
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor;
  flex-shrink: 0;
}

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

/* ==========================================================================
   Responsive Breakpoints & Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-feature-pills {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-indicators {
    justify-content: center;
  }

  .bento-col-8, .bento-col-4, .bento-col-6 {
    grid-column: span 12;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .app-download-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .app-store-buttons {
    justify-content: center;
  }

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

@media (max-width: 640px) {
  .hero-section {
    padding: 24px 0 60px 0;
  }

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

  .page-title {
    font-size: 1.65rem;
  }

  .legal-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .floating-stat-badge.left {
    left: -10px;
    top: 5%;
  }

  .floating-stat-badge.right {
    right: -10px;
    bottom: 10%;
  }

  .phone-mockup {
    width: 275px;
    height: 550px;
  }

  .app-download-card {
    padding: 36px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 8px;
  }

  .footer-bottom-links a {
    margin: 0 8px;
  }
}

/* 480px and down (Mobile screens) */
@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }

  .phone-mockup {
    width: 260px;
    height: 520px;
    border-radius: 38px;
  }

  .phone-screen {
    border-radius: 30px;
  }

  .app-download-card {
    border-radius: 26px;
  }

  .app-store-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand-info {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }
}

/* 375px & 320px (Compact Mobile) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .showcase-mockup-wrapper {
    width: 210px;
    height: 420px;
  }

  .app-phone-wrapper {
    bottom: -280px;
    transform: translateX(-50%) scale(0.58);
  }
}

/* ==========================================================================
   Inspira UI & Animate UI Trending Additions
   ========================================================================== */

/* 1. Horizontal Discovery Marquee (Deep Navy #080D17, 44–48px, Soft Edge Fades) */
.marquee-container {
  width: 100%;
  height: 46px;
  overflow: hidden;
  background: #080D17;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10;
  scrollbar-width: none;
}

.marquee-container::-webkit-scrollbar {
  display: none;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #080D17 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #080D17 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marqueeScroll 36s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CBD5E1;
  font-size: 0.84rem;
  font-weight: 550;
  letter-spacing: -0.01em;
}

.marquee-item strong {
  color: #FFFFFF;
  font-weight: 700;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0EA5E9;
  display: inline-block;
  opacity: 0.85;
}

/* 2. Meteor Shower Background (Inspira UI Meteors Effect) */
.meteor-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.meteor {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: #38BDF8;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 8px 1px #0EA5E9;
  transform: rotate(215deg);
  opacity: 0;
  animation: meteorFall 4s linear infinite;
}

.meteor::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #38BDF8, transparent);
}

.meteor:nth-child(1) { top: 10%; left: 30%; animation-delay: 0s; animation-duration: 3.5s; }
.meteor:nth-child(2) { top: 25%; left: 70%; animation-delay: 1.2s; animation-duration: 4s; }
.meteor:nth-child(3) { top: 5%; left: 85%; animation-delay: 2.1s; animation-duration: 3.2s; }
.meteor:nth-child(4) { top: 40%; left: 20%; animation-delay: 0.7s; animation-duration: 4.5s; }
.meteor:nth-child(5) { top: 15%; left: 55%; animation-delay: 1.8s; animation-duration: 3.8s; }

@keyframes meteorFall {
  0% {
    opacity: 0;
    transform: rotate(215deg) translateX(0);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(215deg) translateX(-400px);
  }
}
