/* 
  PhoneVyapar Product Website Stylesheet
  Theme: Sleek Dark / Tech Glassmorphism
  Colors: Deep Indigo, Vibrant Purples, Glowing Slate Accents
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-main: hsl(224, 48%, 8%);
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-card-hover: rgba(23, 37, 84, 0.45);
  --primary: hsl(262, 80%, 55%);
  --primary-hover: hsl(262, 80%, 48%);
  --secondary: hsl(263, 70%, 40%);
  --accent: hsl(262, 80%, 96%);
  --accent-glow: rgba(124, 58, 237, 0.15);
  
  --text-main: hsl(210, 40%, 98%);
  --text-muted: hsl(215, 20%, 65%);
  --text-dark: hsl(222, 47%, 11%);
  
  --border-light: rgba(124, 58, 237, 0.15);
  --border-focus: hsl(262, 80%, 60%);
  --success: hsl(142, 70%, 45%);
  --danger: hsl(350, 70%, 50%);

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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

/* Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(10, 15, 29, 0.75);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

header.scrolled {
  padding: 8px 0;
  background-color: rgba(10, 15, 29, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

header.scrolled .nav-container {
  height: 64px;
}

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

.logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-text-fill-color: var(--text-muted); /* Overwrite background-clip logic */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

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

.btn-download-nav, .btn-portal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-download-nav {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-download-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary) 100%);
}

.btn-portal-nav {
  background: #6366f1;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
  margin-left: 10px;
}

.btn-portal-nav:hover {
  background: #4f46e5;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  margin: 6px 0;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px 0;
  position: relative;
  overflow: hidden;
}

/* Background Glowing Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.2;
}

.orb-1 {
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--primary);
}

.orb-2 {
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--secondary);
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  color: hsl(262, 85%, 70%);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: pulse-glow 1.5s infinite;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Premium App Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-wrapper {
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 320px;
  animation: float 6s ease-in-out infinite;
}

.mockup-screen {
  background-color: var(--bg-main);
  border: 6px solid #000;
  border-radius: 32px;
  overflow: hidden;
  height: 580px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mockup-header {
  height: 24px;
  background-color: #000;
  position: relative;
}

.mockup-notch {
  width: 120px;
  height: 18px;
  background-color: #000;
  margin: 0 auto;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.mockup-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

/* App Mockup Inner UI */
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mock-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.mock-shopname {
  font-size: 0.8rem;
  font-weight: 600;
}

.mock-plan {
  font-size: 0.6rem;
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
  padding: 2px 6px;
  border-radius: 4px;
}

.mock-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.mock-balance-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.mock-balance-val {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 4px 0;
}

.mock-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 8px;
  margin-top: 8px;
}

.mock-btn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.mock-action-btn {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mock-action-btn svg {
  color: var(--primary);
}

.mock-recents {
  flex: 1;
}

.mock-section-title {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.mock-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 8px;
  font-size: 0.7rem;
}

.mock-item-info {
  display: flex;
  flex-direction: column;
}

.mock-item-bold {
  font-weight: 600;
}

.mock-item-sub {
  color: var(--text-muted);
  font-size: 0.6rem;
}

.mock-item-price {
  font-weight: 700;
  color: var(--success);
}

/* Features Grid Section */
.features {
  padding: 100px 0;
  position: relative;
}

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

.section-subtitle {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 50%);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-focus);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(124, 58, 237, 0.1);
}

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

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: #fff;
}

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

/* Feature Spotlight Sections */
.spotlight {
  padding: 100px 0;
}

.spotlight-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.spotlight-row:nth-child(even) {
  direction: rtl;
}

.spotlight-row:nth-child(even) .spotlight-content {
  direction: ltr;
}

.spotlight-content {
  max-width: 500px;
}

.spotlight-tag {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.spotlight-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.spotlight-description {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.spotlight-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spotlight-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.spotlight-list-icon {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 4px;
}

.spotlight-list-text {
  font-weight: 500;
}

.spotlight-list-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Spotlight visuals - Styled dashboards using HTML/CSS */
.spotlight-visual {
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.police-log-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.police-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.police-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--success);
}

.table-preview {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.table-preview th {
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  padding: 10px 8px;
  border-bottom: 1px solid var(--border-light);
}

.table-preview td {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.kyc-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(124, 58, 237, 0.15);
  color: hsl(262, 85%, 70%);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-color: rgba(15, 23, 42, 0.3);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary);
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), var(--bg-card) 60%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(124, 58, 237, 0.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-focus);
}

.pricing-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 32px;
}

.pricing-currency {
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 4px;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.pricing-feature-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-feature-item.muted {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-feature-item.muted .pricing-feature-icon {
  color: var(--text-muted);
}

.btn-pricing {
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--primary);
  color: #fff;
  transition: var(--transition-fast);
}

.btn-pricing.filled {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-pricing.filled:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.btn-pricing:not(.filled):hover {
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}

/* Play Store Badge Container */
.cta-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.play-store-btn {
  background: #000;
  border: 1px solid #333;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.play-store-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.play-store-btn svg {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.play-store-btn .btn-text-small {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.play-store-btn .btn-text-large {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: -2px;
}

/* Contact Section & Form */
.contact-section {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-card {
  display: flex;
  gap: 20px;
}

.contact-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 6px;
}

.contact-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--primary);
}

/* Glassmorphism Form */
.contact-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-fast);
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary) 100%);
}

.form-response {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
  font-weight: 500;
}

.form-response.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-response.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
footer {
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px 0;
  background-color: hsl(224, 48%, 5%);
}

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

.footer-about p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-col h5 {
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

/* Compliance Document Pages Structure */
.legal-page {
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 80vh;
}

.legal-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 120px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
}

.legal-nav-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.legal-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-nav-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  padding: 6px 0;
}

.legal-nav-link:hover, .legal-nav-link.active {
  color: var(--text-main);
}

.legal-nav-link.active {
  font-weight: 600;
  border-left: 2px solid var(--primary);
  padding-left: 12px;
}

.legal-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 50px;
  backdrop-filter: blur(10px);
}

.legal-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.legal-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-body h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-body h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-body p {
  margin-bottom: 20px;
}

.legal-body ul, .legal-body ol {
  margin-left: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-body li {
  list-style: square;
}

.legal-alert {
  background: rgba(124, 58, 237, 0.1);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
}

.legal-alert-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  display: block;
}

/* Account Deletion Area inside Privacy */
.account-deletion-panel {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin: 40px 0;
}

.account-deletion-panel h3 {
  color: hsl(350, 80%, 70%);
  margin-bottom: 10px;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.5; box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7); }
  70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 8px rgba(124, 58, 237, 0); }
  100% { transform: scale(0.9); opacity: 0.5; box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 40px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .spotlight-row:nth-child(even) {
    direction: ltr;
  }
  .spotlight-content {
    max-width: 100%;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .legal-container {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    display: none; /* Hide sticky legal sidebar on smaller viewports */
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-main);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-normal);
    border-top: 1px solid var(--border-light);
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  
  header.scrolled .nav-menu {
    top: 64px;
    height: calc(100vh - 64px);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {

  .hero-title {
    font-size: 2.5rem;
  }
  
  .features-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .legal-content {
    padding: 24px;
  }
  
  .legal-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Lost Phone Section styles */
.lost-phone-section {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--border-light);
}

.lost-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.lost-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lost-form-wrapper h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.form-instructions {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.form-file-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-control-file {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  width: 100%;
  transition: var(--transition-fast);
}

.form-control-file:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

/* Custom styling for standard file selector buttons to match dark theme */
.form-control-file::file-selector-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
  transition: var(--transition-fast);
}

.form-control-file::file-selector-button:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary) 100%);
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

/* Webkit compatibility fallback */
.form-control-file::-webkit-file-upload-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
  transition: var(--transition-fast);
}

.form-control-file::-webkit-file-upload-button:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary) 100%);
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

.registry-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 820px;
}

.registry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}

.registry-header h3 {
  font-size: 1.5rem;
  color: #fff;
}

.search-box-wrapper {
  flex: 0.8;
}

.registry-table-container {
  overflow-y: auto;
  flex: 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.registry-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.registry-table th {
  background-color: rgba(15, 23, 42, 0.8);
  padding: 14px 16px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.registry-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  vertical-align: middle;
}

.registry-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.table-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 40px !important;
}

.badge-status {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-status.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-status.verified {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-status.recovered {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-status.closed {
  background: rgba(107, 114, 128, 0.15);
  color: #9ca3af;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

/* Media Queries for Lost Phone Grid */
@media (max-width: 992px) {
  .lost-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-file-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .registry-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-box-wrapper {
    width: 100%;
  }
}


/* Screenshots Section Styles */
.screenshots-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-main);
  overflow: hidden;
}

.screenshots-wrapper {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.phone-frame-mockup {
  width: 310px;
  height: 630px;
  background: #1e1e24;
  border: 12px solid #2d2d38;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.1);
  position: relative;
  margin: 0 auto;
}

.phone-screen-container {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background-color: #0f0f12;
}

.phone-notch {
  width: 130px;
  height: 25px;
  background: #2d2d38;
  border-radius: 0 0 15px 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.active-screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #0f0f12;
  transition: opacity 0.3s ease;
}

.screenshot-nav-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 630px;
  overflow-y: auto;
  padding-right: 15px;
}

/* Custom Scrollbar for navigation panel */
.screenshot-nav-panel::-webkit-scrollbar {
  width: 6px;
}
.screenshot-nav-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}
.screenshot-nav-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.screenshot-nav-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.screenshot-tab {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.screenshot-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.screenshot-tab.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(37, 99, 235, 0.03) 100%);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.tab-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.screenshot-tab.active .tab-num {
  color: var(--primary);
  opacity: 1;
}

.tab-content h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.screenshot-tab.active .tab-content h4 {
  color: var(--primary-light);
}

.tab-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Media Query for screenshots section */
@media (max-width: 992px) {
  .screenshots-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .phone-frame-mockup {
    max-width: 290px;
    height: 590px;
  }
}

/* App Header Overlay to hide Vikas Mobile Junction in app-screenshot-3 */
.app-header-overlay {
  display: none !important;
}

/* By default, in gallery showcase, only show overlay if phone-screen-container has show-overlay class */
.phone-screen-container:not(.show-overlay) .app-header-overlay {
  display: none !important;
}

.app-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #7c3aed;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 2px 4px rgba(124, 58, 237, 0.3);
}

.app-shop-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.app-shop-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

.app-license-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.app-notification-btn {
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.app-notification-btn:hover {
  color: #ffffff;
}
