/* ============================================================
   VIDHAYAK SEVA KENDRA — LANDING PAGE STYLES
   Modern, high-fidelity marketing page
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #F15922;
  --primary-dark: #d94a1a;
  --secondary: #FD3A69;
  --accent: #FF4500;
  --gradient-primary: linear-gradient(135deg, #F15922 0%, #FD3A69 100%);
  --gradient-hero: linear-gradient(160deg, #fff3ef 0%, #ffe5da 40%, #fde0ee 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --gradient-stats: linear-gradient(135deg, #F15922 0%, #FD3A69 50%, #e91e8c 100%);
  --text-primary: #1a1a2e;
  --text-secondary: #5a6377;
  --text-light: #8a94a6;
  --bg-light: #fef1ec;
  --bg-white: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(241, 89, 34, 0.15);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Cinzel Decorative', cursive;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

/* ---------- Utility ---------- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-white {
  background: linear-gradient(135deg, #ffffff 0%, #ffe0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-base);
  background: transparent;
}

.landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(241, 89, 34, 0.2);
}

.nav-brand-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  white-space: nowrap;
}

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

.nav-link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 50px;
  transition: var(--transition-base);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(241, 89, 34, 0.06);
}

.nav-link--login {
  color: var(--primary);
  font-weight: 600;
  border: 2px solid var(--primary);
  margin-left: 8px;
}

.nav-link--login:hover {
  background: var(--primary);
  color: #fff;
}

.nav-link--download {
  background: var(--gradient-primary);
  color: #fff !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  box-shadow: 0 4px 15px rgba(241, 89, 34, 0.3);
}

.nav-link--download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(241, 89, 34, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-shape--1 {
  width: 600px;
  height: 600px;
  background: rgba(241, 89, 34, 0.12);
  top: -200px;
  right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.hero-shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(253, 58, 105, 0.1);
  bottom: -100px;
  left: -100px;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.hero-shape--3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 193, 7, 0.08);
  top: 50%;
  left: 50%;
  animation: floatShape 18s ease-in-out infinite 2s;
}

.hero-shape--4 {
  width: 200px;
  height: 200px;
  background: rgba(102, 126, 234, 0.06);
  top: 20%;
  right: 30%;
  animation: floatShape 22s ease-in-out infinite 4s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(241, 89, 34, 0.08);
  border: 1px solid rgba(241, 89, 34, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge i {
  font-size: 0.85rem;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Primary CTA Button */
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 8px 30px rgba(241, 89, 34, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-base);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(241, 89, 34, 0.4);
  color: #fff;
}

.btn-primary-hero:hover::before {
  opacity: 1;
}

.btn-primary-hero:active {
  transform: translateY(-1px);
}

/* Play Store Button */
.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #fff;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.btn-playstore i {
  font-size: 1.5rem;
  color: #01875f;
}

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

.btn-playstore-text small {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-playstore-text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.btn-playstore:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #01875f;
  color: var(--text-primary);
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
}

.hero-trust-item i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* Hero Visual / Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-mockup {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  overflow: hidden;
  animation: mockupFloat 6s ease-in-out infinite;
}

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

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--gradient-primary);
  color: #fff;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mockup-body {
  padding: 24px;
}

.mockup-stat-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.mockup-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.mockup-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.mockup-stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

.mockup-stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.mockup-chart-bar {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  min-height: 12px;
  transition: var(--transition-slow);
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

@keyframes barGrow {
  to { transform: scaleY(1); }
}

.mockup-recent {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-recent-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.mockup-dot--green { background: #28a745; }
.mockup-dot--orange { background: #fd7e14; }
.mockup-dot--blue { background: #0d6efd; }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  font-size: 0.9rem;
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 120px 0;
  background: var(--bg-white);
  position: relative;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(241, 89, 34, 0.08);
  border: 1px solid rgba(241, 89, 34, 0.12);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.75);
}

.section-header--light .section-title {
  color: #fff;
}

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

.feature-card {
  padding: 40px 32px;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.feature-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.feature-icon--orange { background: linear-gradient(135deg, #F15922, #FD3A69); }
.feature-icon--blue { background: linear-gradient(135deg, #0d6efd, #6610f2); }
.feature-icon--green { background: linear-gradient(135deg, #28a745, #20c997); }
.feature-icon--purple { background: linear-gradient(135deg, #667eea, #764ba2); }
.feature-icon--red { background: linear-gradient(135deg, #dc3545, #e83e8c); }
.feature-icon--teal { background: linear-gradient(135deg, #17a2b8, #0dcaf0); }

.feature-icon-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 22px;
  border: 2px solid transparent;
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-3deg);
}

.feature-card:hover .feature-icon-ring {
  border-color: rgba(241, 89, 34, 0.15);
}

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

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.feature-link a i {
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.feature-link a:hover i {
  transform: translateX(4px);
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #fef1ec 0%, #fff 50%, #fef1ec 100%);
  position: relative;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-base);
  position: relative;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
}

.step-content {
  flex: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
  transition: var(--transition-base);
}

.step-item:hover .step-icon {
  transform: scale(1.1) rotate(-5deg);
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 100px 0;
  background: var(--gradient-stats);
  position: relative;
  overflow: hidden;
}

.stats-bg-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  color: #fff;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 600;
}

.stat-card:last-child .stat-number::after {
  content: '%';
  font-size: 1.4rem;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.cta-shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(241, 89, 34, 0.08);
  top: -200px;
  right: -100px;
}

.cta-shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(253, 58, 105, 0.06);
  bottom: -150px;
  left: -100px;
}

.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-playstore-alt {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #1a1a2e;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid #1a1a2e;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.btn-playstore-alt i {
  font-size: 1.5rem;
}

.btn-playstore-alt:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: #2a2a3e;
  border-color: #2a2a3e;
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.landing-footer {
  background: #0f1923;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.footer-brand-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(50px);
}

[data-animate="fade-right"] {
  transform: translateX(-50px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
[data-delay="0"] { transition-delay: 0ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="450"] { transition-delay: 450ms; }
[data-delay="600"] { transition-delay: 600ms; }

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

/* Tablet */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

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

  .hero-subtitle {
    max-width: 100%;
  }

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

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

  .hero-visual {
    order: -1;
  }

  .hero-card-mockup {
    max-width: 380px;
  }

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

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

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

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

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    align-items: stretch;
  }

  .nav-links.is-open {
    right: 0;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
  }

  .nav-link--login,
  .nav-link--download {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

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

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

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

  .btn-primary-hero,
  .btn-playstore {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-card-mockup {
    max-width: 320px;
  }

  .features-section,
  .how-section,
  .cta-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .feature-card {
    padding: 32px 24px;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

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

  .btn-playstore-alt {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

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

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

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .mockup-stat-row {
    flex-direction: column;
  }
}
