/* ===================================================
   TrustSaathi – Premium Website Stylesheet
   Domain: trustsaathi.in
   =================================================== */

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

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors */
  --color-primary:        #7C4DFF;
  --color-primary-light:  #A57DFF;
  --color-primary-dark:   #5B2ECC;
  --color-secondary:      #00E5FF;
  --color-accent:         #FF6D00;
  --color-accent-light:   #FF9A40;
  --color-success:        #00C897;
  --color-danger:         #FF4D6D;

  /* Backgrounds */
  --bg-base:              #070714;
  --bg-surface:           #0D0D2B;
  --bg-card:              rgba(255, 255, 255, 0.03);
  --bg-card-hover:        rgba(255, 255, 255, 0.07);
  --bg-glass:             rgba(13, 13, 43, 0.7);

  /* Text */
  --text-primary:         #F0EEFF;
  --text-secondary:       #A8A3C9;
  --text-muted:           #6B658E;

  /* Borders */
  --border-color:         rgba(255, 255, 255, 0.08);
  --border-hover:         rgba(124, 77, 255, 0.4);
  --border-glow:          rgba(124, 77, 255, 0.6);

  /* Gradients */
  --gradient-primary:     linear-gradient(135deg, #7C4DFF 0%, #00E5FF 100%);
  --gradient-hero:        linear-gradient(135deg, #0D0D2B 0%, #12122A 50%, #0A0A1F 100%);
  --gradient-glow:        linear-gradient(135deg, #A57DFF 0%, #00E5FF 100%);
  --gradient-accent:      linear-gradient(135deg, #FF6D00, #FF4D6D);
  --gradient-card:        linear-gradient(135deg, rgba(124,77,255,0.1), rgba(0,229,255,0.05));

  /* Shadows & Glows */
  --glow-shadow:          0 0 30px rgba(124, 77, 255, 0.35);
  --glow-shadow-lg:       0 0 60px rgba(124, 77, 255, 0.25);
  --card-shadow:          0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-xl:            0 20px 60px rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-body:            'Inter', sans-serif;
  --font-title:           'Syne', sans-serif;

  /* Layout */
  --max-width:            1200px;
  --nav-height:           72px;
  --radius-sm:            8px;
  --radius-md:            16px;
  --radius-lg:            24px;
  --radius-xl:            32px;

  /* Transitions */
  --transition-fast:      all 0.2s ease;
  --transition-base:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:      all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 99px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Animated Background Grid --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 77, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 77, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow orbs */
body::after {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,77,255,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 10s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-30px, 30px); }
}

/* --- Navigation / Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 7, 20, 0.8);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.site-header.scrolled {
  background: rgba(7, 7, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: var(--transition-fast);
}
.logo-link:hover { opacity: 0.85; }

.logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  box-shadow: var(--glow-shadow);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.btn-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.55rem 1.35rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--glow-shadow);
  transition: var(--transition-base);
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,77,255,0.5);
}

.mobile-cta-li {
  display: none !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: var(--transition-base);
}

/* --- Page wrapper --- */
main { position: relative; z-index: 1; padding-top: var(--nav-height); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  gap: 5rem;
  position: relative;
}

.hero-content {
  flex: 1.3;
  animation: fadeSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(124, 77, 255, 0.12);
  border: 1px solid rgba(124, 77, 255, 0.3);
  color: var(--color-primary-light);
  padding: 0.45rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 10px var(--color-success);
  animation: pulse 2s infinite;
}

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

.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-content h1 .gradient-text {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--glow-shadow);
  transition: var(--transition-base);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124,77,255,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* Trust stats bar */
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero visual / Phone mockup */
.hero-visual {
  flex: 0.85;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.phone-glow {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,77,255,0.3) 0%, transparent 70%);
  animation: floatOrb 6s ease-in-out infinite;
  pointer-events: none;
}

.phone-frame {
  width: 280px;
  background: linear-gradient(145deg, #1a1a3e, #0d0d2b);
  border-radius: 40px;
  border: 2px solid rgba(124,77,255,0.3);
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.05),
    var(--shadow-xl),
    var(--glow-shadow-lg);
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 100px; height: 28px;
  background: #0d0d2b;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch::after {
  content: '';
  width: 60px; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
}

.phone-screen {
  padding: 0 16px 24px;
}

.app-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 12px;
  font-size: 0.65rem;
  color: var(--text-secondary);
}

.app-header {
  background: rgba(124,77,255,0.15);
  border: 1px solid rgba(124,77,255,0.2);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.app-header-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
}
.online-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--color-success);
}
.online-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 6px var(--color-success);
  animation: pulse 2s infinite;
}

.visitor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideCardIn 0.5s ease both;
}
.visitor-card:nth-child(1) { animation-delay: 0.4s; }
.visitor-card:nth-child(2) { animation-delay: 0.6s; }
.visitor-card:nth-child(3) { animation-delay: 0.8s; }

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

.visitor-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.avatar-delivery { background: rgba(255,109,0,0.2); color: var(--color-accent-light); }
.avatar-staff    { background: rgba(124,77,255,0.2); color: var(--color-primary-light); }
.avatar-guest    { background: rgba(0,229,255,0.15); color: var(--color-secondary); }

.visitor-info { flex: 1; min-width: 0; }
.visitor-name { font-size: 0.75rem; font-weight: 600; }
.visitor-role { font-size: 0.62rem; color: var(--text-muted); }

.btn-approve {
  background: var(--color-success);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  border: none;
  white-space: nowrap;
}
.verified-badge {
  font-size: 0.6rem;
  color: var(--color-success);
  font-weight: 600;
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
section { position: relative; z-index: 1; }

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gradient-primary);
  border-radius: 99px;
}

.section-heading {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subheading {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: linear-gradient(180deg, transparent 0%, rgba(124,77,255,0.04) 50%, transparent 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.features-header { text-align: center; margin-bottom: 4rem; }
.features-header .section-subheading { margin: 0 auto; }

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}
.feature-card:hover .feature-icon { transform: scale(1.1); }

.icon-purple { background: rgba(124,77,255,0.15); }
.icon-cyan   { background: rgba(0,229,255,0.12); }
.icon-orange { background: rgba(255,109,0,0.12); }
.icon-green  { background: rgba(0,200,151,0.12); }
.icon-pink   { background: rgba(255,77,109,0.12); }
.icon-blue   { background: rgba(59,130,246,0.12); }

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works { }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: var(--glow-shadow);
  position: relative;
  z-index: 1;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  display: none;
}

.step-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   TRUST BADGES / SECURITY SECTION
   ============================================ */
.trust-section {
  background: var(--gradient-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-list { margin-top: 2rem; }
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}
.trust-item:last-child { border-bottom: none; }

.trust-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(124,77,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Security card */
.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
.security-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,77,255,0.15) 0%, transparent 70%);
}

.security-shield {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.security-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}
.security-metric:last-of-type { border-bottom: none; }
.security-metric span:first-child { font-size: 0.88rem; color: var(--text-secondary); }
.security-metric .metric-value {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-success);
}

/* ============================================
   TESTIMONIALS (Placeholder)
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-base);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #FACC15;
  font-size: 0.9rem;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
}
.author-name { font-weight: 600; font-size: 0.88rem; }
.author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================
   DOWNLOAD CTA SECTION
   ============================================ */
.download-section {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}
.download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,77,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.download-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.download-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.download-card h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.download-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition-base);
}
.btn-store:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--glow-shadow);
}
.btn-store .store-icon { font-size: 1.4rem; }
.btn-store-label small { display: block; font-size: 0.68rem; color: var(--text-muted); font-weight: 400; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--text-primary); }

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition-base);
}
.social-link:hover {
  border-color: var(--border-hover);
  color: var(--color-primary-light);
  background: rgba(124,77,255,0.1);
  transform: translateY(-2px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-page-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.policy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.policy-header {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(124,77,255,0.1), rgba(0,229,255,0.05));
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.policy-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,77,255,0.2) 0%, transparent 70%);
}
.policy-header h1 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.policy-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.policy-meta strong { color: var(--text-primary); }

.policy-body {
  padding: 3rem;
}
.policy-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.policy-body h2 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--text-primary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.policy-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--color-primary-light);
}
.policy-body ul {
  list-style: none;
  margin-bottom: 1.25rem;
}
.policy-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.policy-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
.policy-body hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2rem 0;
}
.policy-body a { color: var(--color-primary-light); }
.policy-body a:hover { text-decoration: underline; }
.policy-body strong { color: var(--text-primary); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Intersection observer animate class */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

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

/* Tables — scrollable on mobile */
.reward-table,
.policy-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: 1fr; }
  .security-card { max-width: 500px; margin: 0 auto; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* === NAV === */
  .nav-links, .btn-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-container { padding: 0 1.25rem; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(7, 7, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 1.25rem 1.75rem;
    gap: 0.4rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
  }
  .nav-links.mobile-open li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  /* Show CTA button inside mobile menu */
  .mobile-cta-li {
    display: block !important;
    margin-top: 0.75rem;
  }
  .mobile-cta-li a {
    display: block !important;
    padding: 0.75rem 1.5rem !important;
    background: var(--gradient-primary) !important;
    color: white !important;
    text-align: center;
    border-radius: 99px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    box-shadow: var(--glow-shadow) !important;
  }
  .mobile-cta-li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,77,255,0.5);
  }

  /* === HERO === */
  .hero-section {
    flex-direction: column;
    padding: 2.5rem 1.25rem 3rem;
    gap: 2.5rem;
    text-align: center;
    min-height: auto;
  }
  .hero-content .hero-desc { margin: 0 auto 2rem; max-width: 100%; }
  .hero-buttons { justify-content: center; flex-direction: column; align-items: center; }
  .hero-buttons a { width: 100%; justify-content: center; max-width: 320px; }
  .hero-stats { justify-content: center; gap: 1.5rem; }
  .phone-frame { width: 240px; }
  .phone-glow { width: 260px; height: 260px; }

  /* === SECTIONS === */
  .section-container { padding: 3.5rem 1.25rem; }
  .section-heading { font-size: clamp(1.5rem, 5vw, 2.2rem); }

  /* === TRUST GRID === */
  .trust-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* === FOOTER === */
  .footer-container { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.25rem; }
  .footer-bottom-links { justify-content: center; }
  .footer-brand p { max-width: 100%; }

  /* === DOWNLOAD CARD === */
  .download-card { padding: 2.5rem 1.5rem; margin: 0 1rem; }
  .download-section { padding: 4rem 1rem; }

  /* === POLICY PAGES === */
  .policy-page-main { padding: 2rem 1rem 4rem; }
  .policy-header { padding: 1.75rem 1.25rem; }
  .policy-header h1 { font-size: 1.6rem; }
  .policy-meta { gap: 0.75rem; flex-direction: column; font-size: 0.8rem; }
  .policy-body { padding: 1.5rem 1.25rem; }
  .policy-body h2 { font-size: 1.15rem; }
  .policy-body h3 { font-size: 0.98rem; }
  .policy-body p,
  .policy-body ul li { font-size: 0.9rem; }

  /* Tables scrollable on mobile */
  .reward-table,
  .policy-body table {
    font-size: 0.82rem;
  }
  .reward-table th,
  .reward-table td { padding: 8px 10px; white-space: normal; }

  /* TOC on mobile */
  .toc { padding: 1rem 1.25rem; }
  .toc ol { padding-left: 1rem; }

  /* Highlight boxes */
  .highlight-box { padding: 0.85rem 1rem; }
}

@media (max-width: 480px) {
  /* === HERO SMALL PHONES === */
  .hero-section { padding-top: 1.5rem; }
  .phone-frame { width: 210px; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* === FEATURES === */
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* === STEPS === */
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* === DOWNLOAD BUTTONS === */
  .download-buttons { flex-direction: column; align-items: stretch; }
  .download-buttons .btn-store { justify-content: center; }
  .download-card { padding: 2rem 1.25rem; margin: 0; }
  .download-section { padding: 3rem 1.25rem; }

  /* === POLICY PAGES SMALL === */
  .policy-header { padding: 1.5rem 1rem; }
  .policy-header h1 { font-size: 1.4rem; }
  .policy-body { padding: 1.25rem 1rem; }
  .policy-card { border-radius: var(--radius-md); }
  .policy-page-main { padding: 1.5rem 0.75rem 3rem; }

  /* === FOOTER SMALL === */
  .footer-container { padding: 2.5rem 1rem 1rem; gap: 1.75rem; }
}

@media (max-width: 360px) {
  /* Very small phones */
  .nav-container { padding: 0 1rem; }
  .logo-link span { font-size: 1.1rem; }
  .phone-frame { width: 190px; }
  .hero-content h1 { font-size: 1.9rem; }
  .policy-header h1 { font-size: 1.25rem; }
  .section-container { padding: 2.5rem 1rem; }
}

