:root {
  --primary: #6C5CE7;
  --primary-dark: #5849c2;
  --secondary: #FD79A8;
  --accent: #FF6B6B;
  --dark: #2D3436;
  --text: #2D3436;
  --text-light: #636E72;
  --text-muted: #B2BEC3;
  --bg: #ffffff;
  --bg-alt: #F8F9FE;
  --bg-dark: #1a1a2e;
  --gradient: linear-gradient(135deg, #6C5CE7 0%, #FD79A8 100%);
  --gradient-text: linear-gradient(135deg, #6C5CE7 0%, #FD79A8 50%, #FF6B6B 100%);
  --shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
  --shadow-lg: 0 30px 80px rgba(108, 92, 231, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-btn {
  padding: 12px 28px;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #F8F9FE 0%, #ffffff 100%);
  padding: 120px 48px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(108, 92, 231, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  z-index: 10;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--dark);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 18px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.bullet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.08);
  border: 1px solid rgba(108, 92, 231, 0.16);
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
}

.store-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 18px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  font-weight: 800;
  font-size: 13px;
  color: var(--dark);
}

/* Form */
.form {
  margin-bottom: 32px;
}

.input-group {
  display: flex;
  gap: 12px;
  background: white;
  padding: 8px;
  border-radius: 60px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  max-width: 480px;
}

.input-group:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.input-group input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  font-size: 16px;
  color: var(--text);
  outline: none;
  font-family: inherit;
  min-width: 0;
}

.input-group input::placeholder {
  color: var(--text-muted);
}

.input-group button {
  padding: 16px 32px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-group button:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.input-group.light {
  background: white;
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.form-message {
  margin-top: 12px;
  padding-left: 24px;
  font-size: 14px;
  min-height: 20px;
}

.form-message.success { color: #00B894; }
.form-message.error { color: var(--accent); }

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-light);
  font-size: 15px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

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

.phone-main {
  width: 300px;
  height: 600px;
  background: var(--dark);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.phone-main:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--dark);
  border-radius: 20px;
  z-index: 10;
}

.match-card {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.match-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.match-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 20px 90px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.match-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.match-info p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.match-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.match-tags span {
  padding: 6px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.match-score {
  position: absolute;
  top: 60px;
  right: 20px;
  padding: 8px 16px;
  background: var(--gradient);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.match-actions {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
}

.action-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.action-btn svg {
  width: 28px;
  height: 28px;
}

.action-btn.pass {
  background: white;
  color: var(--text-muted);
}

.action-btn.like {
  background: var(--gradient);
  color: white;
}

.action-btn:hover {
  transform: scale(1.1);
}

.floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.heart {
  position: absolute;
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
}

.h1 { top: 20%; left: 10%; animation-delay: 0s; }
.h2 { top: 60%; right: 5%; animation-delay: 1s; }
.h3 { top: 40%; left: 5%; animation-delay: 2s; }

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

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

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

/* Stats Section */
.stats {
  padding: 60px 24px;
  background: var(--dark);
  color: white;
}

.stats .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

/* Why Section */
.why-section {
  padding: 120px 24px;
  background: var(--bg);
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.why-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.why-card.main-card {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.why-image {
  height: 250px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-content {
  padding: 32px;
}

.why-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.why-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* How Section */
.how-section {
  padding: 120px 24px;
  background: var(--bg-alt);
}

.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 280px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
  padding-top: 20px;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.step p {
  color: var(--text-light);
}

.step-arrow {
  font-size: 32px;
  color: var(--primary);
  padding-top: 60px;
}

/* Testimonials */
.testimonials {
  padding: 120px 24px;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-card.featured {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-image {
  height: 300px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  margin-bottom: 16px;
}

.quote {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Final CTA */
.final-cta {
  padding: 120px 24px;
  background: var(--bg-alt);
}

.final-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  color: var(--text-light);
  font-size: 14px;
}

.cta-visual {
  position: relative;
}

.cta-visual img {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
  padding: 48px 24px;
  background: var(--dark);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-brand .logo {
  font-size: 28px;
  margin-bottom: 0;
  display: block;
}

.brand-mark {
  padding: 0 12px;
  height: 36px;
  border-radius: 12px;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.35);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-links p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* Verify/Admin */
.verify-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.verify-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.verify-header p {
  color: var(--text-light);
}

.auth-card {
  max-width: 520px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.auth-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.auth-input {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 16px;
  outline: none;
}

.auth-input:focus {
  border-color: rgba(108, 92, 231, 0.6);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.12);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.verify-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--bg-alt);
  border: 1px solid rgba(108, 92, 231, 0.12);
  color: var(--text);
}

.verify-status.error {
  border-color: rgba(255, 107, 107, 0.35);
  background: rgba(255, 107, 107, 0.08);
}

.verify-status.success {
  border-color: rgba(0, 184, 148, 0.35);
  background: rgba(0, 184, 148, 0.08);
}

.verify-section {
  margin-top: 26px;
}

.verify-section h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.muted {
  color: var(--text-light);
}

.verify-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.upload-preview {
  display: grid;
  gap: 8px;
}

.upload-thumb {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
}

.upload-card {
  background: var(--bg-alt);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.upload-label {
  font-weight: 700;
}

.upload-card input[type="file"] {
  width: 100%;
}

.btn {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: white;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  border: none;
  color: white;
  background: var(--gradient);
}

.verify-footer {
  margin-top: 26px;
}

.upload-msg {
  font-size: 14px;
}

.upload-msg.success { color: #00B894; }
.upload-msg.error { color: var(--accent); }

.admin-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.admin-card {
  background: var(--bg-alt);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 16px;
}

.admin-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-email {
  font-weight: 800;
}

.admin-docs-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.doc-item {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 10px;
  position: relative;
}

.doc-item.selected {
  outline: 3px solid rgba(108, 92, 231, 0.25);
}

.doc-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
}

.doc-item.rejected {
  opacity: 0.5;
}

.doc-label {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.doc-status {
  font-weight: 600;
  color: var(--text-light);
}

.doc-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  display: block;
}

.doc-link {
  display: inline-block;
  padding: 10px 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
}

.admin-actions-row {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-actions-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal.hidden { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.modal-card {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: 120px auto 0;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.modal-card h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.modal-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 1200px) {
  .verify-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-docs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 968px) {
  .verify-grid { grid-template-columns: 1fr; }
  .admin-row { flex-direction: column; }
  .admin-docs-grid { grid-template-columns: 1fr; }
}

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 48px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 48px; }
.py-xl { padding-top: 64px; padding-bottom: 64px; }
.w-full { width: 100%; }
.bg-light { background-color: var(--bg-alt); }

/* Stepper Form */
.stepper-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* OS Grid */
.os-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.os-card {
  cursor: pointer;
  position: relative;
}

.os-radio {
  position: absolute;
  opacity: 0;
}

.os-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-radius: 20px;
  border: 2px solid var(--bg-alt);
  background: var(--bg-alt);
  transition: all 0.3s ease;
}

.os-radio:checked + .os-content {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.os-icon {
  font-size: 32px;
}

.os-label {
  font-weight: 700;
  font-size: 15px;
}

/* Modern Upload Cards */
.verify-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.modern-upload-card {
  background: var(--bg-alt);
  border: 2px dashed rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.modern-upload-card:hover {
  border-color: var(--primary);
  background: rgba(108, 92, 231, 0.02);
}

.modern-upload-card.full-width {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}

.upload-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.modern-upload-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modern-upload-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 16px;
}

.hidden-input {
  display: none;
}

.btn-upload {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.upload-thumb-modern {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.doc-pill {
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Status Banner */
.status-banner .alert {
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
}

.alert.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Admin Modern */
.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: var(--bg-alt);
  padding: 6px;
  border-radius: 16px;
}

.tab-btn {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.admin-os-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: #eee;
  margin-left: 8px;
}

.admin-os-badge.ios { background: #f5f5f7; color: #1d1d1f; }
.admin-os-badge.android { background: #e8f5e9; color: #2e7d32; }

@media (max-width: 768px) {
  .verify-modern-grid { grid-template-columns: 1fr; }
  .stepper-form { padding: 24px; }
  .modern-upload-card.full-width { flex-direction: column; text-align: center; }
}

/* Modern Utilities */
.shadow-sm { box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.border-radius-24 { border-radius: 24px; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-md { gap: 16px; }

/* Dashboard refinements */
.admin-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.admin-card:hover {
  box-shadow: 0 10px 40px rgba(108, 92, 231, 0.08);
}

/* Modal refinements */
.modal-card textarea {
  width: 100%;
  margin-top: 8px;
  resize: vertical;
}

/* Verify form refinements */
.modern-upload-card.success {
  border-color: #00B894;
  background: rgba(0, 184, 148, 0.02);
}

.upload-msg.progress { color: var(--primary); font-weight: 600; }

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.upload-msg.progress {
  animation: pulse 1.5s infinite;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success { background: #00B894; }
.toast.error { background: var(--accent); }

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .why-card.main-card {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card.featured {
    grid-row: span 1;
  }
}

@media (max-width: 968px) {
  .nav {
    padding: 16px 24px;
  }
  
  .hero {
    padding: 100px 24px 60px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .input-group {
    max-width: 100%;
  }
  
  .hero-visual {
    margin-top: 40px;
  }
  
  .phone-main {
    width: 260px;
    height: 520px;
  }
  
  .social-proof {
    justify-content: center;
  }
  
  .stats .container {
    gap: 40px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-card.main-card {
    grid-column: span 1;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  
  .final-cta .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-features {
    justify-content: center;
  }
  
  .cta-visual {
    order: -1;
  }
  
  .cta-visual img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .input-group {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
  }
  
  .input-group input {
    padding: 12px 16px;
    text-align: center;
  }
  
  .input-group button {
    width: 100%;
    padding: 14px 24px;
  }
  
  .avatars img {
    width: 36px;
    height: 36px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .scroll-indicator {
    display: none;
  }
}
