/* ═══════════════════════════════════════════════════════════════
   ARRANGEDSUCCESS — Marriage Platform Theme
   Elegant, premium, marriage-focused design
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Colors ── */
  --primary: #7B2D4A;
  --primary-hover: #5E1F38;
  --primary-light: #F8EDF1;
  --primary-50: rgba(123,45,74,0.05);
  --primary-10: rgba(123,45,74,0.1);

  --accent: #C49A3C;
  --accent-hover: #A8832F;
  --accent-light: #FDF6E8;

  --bg: #FFF9F5;
  --bg-alt: #FFF3EB;
  --card: #FFFFFF;
  --card-hover: #FFFAF8;

  --text: #1F1F2E;
  --text-secondary: #5A5A6E;
  --text-muted: #9B9BA8;
  --text-inverse: #FFFFFF;

  --border: #E8DDD5;
  --border-light: #F0EAE4;

  --success: #25D366;
  --success-light: #E8F8EE;
  --info: #3B82F6;
  --info-light: #EBF2FF;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  --danger: #DC2626;
  --danger-light: #FEE2E2;

  --whatsapp: #25D366;
  --instagram: #E4405F;
  --twitter: #1DA1F2;
  --linkedin: #0A66C2;
  --facebook: #1877F2;

  --dark: #1A1A2E;
  --dark-hover: #2A2A42;

  /* ── Typography ── */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Spacing ── */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;

  /* ── Radius ── */
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px;
  --radius-xl: 16px; --radius-2xl: 24px; --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 16px rgba(196,154,60,0.2);
  --shadow-primary: 0 4px 16px rgba(123,45,74,0.15);

  /* ── Transitions ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
}

/* ═══ Accessibility & Focus States ═══ */
.btn:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ═══ Lazy Image Fade-in ═══ */
.lazy-img { opacity: 0; transition: opacity 0.3s; }
.lazy-img.loaded { opacity: 1; }

/* ═══ Reset & Base ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--primary-hover); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

/* ═══ Layout ═══ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--space-6); }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 var(--space-6); }

.section { padding: var(--space-20) 0; }
.section-sm { padding: var(--space-12) 0; }

.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* ═══ Navigation ═══ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,249,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-3) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav-links a {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-50);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--border);
}

.nav-username {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: var(--space-2);
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.82rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123,45,74,0.25);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-gold);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover {
  background: var(--primary-50);
  color: var(--primary);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}
.btn-whatsapp:hover {
  background: #1EB954;
  transform: translateY(-1px);
}

.btn-google {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-google:hover {
  background: #f8f8f8;
  box-shadow: var(--shadow-sm);
}

.btn-google img {
  width: 20px;
  height: 20px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ═══ Cards ═══ */
.card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.card-body { padding: var(--space-6); }
.card-body-sm { padding: var(--space-4); }

/* Profile Card */
.profile-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 300ms var(--ease);
  cursor: pointer;
  position: relative;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-10);
}

.profile-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  background: var(--bg-alt);
}

.profile-card-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
}

.profile-card-body { padding: var(--space-5); }

.profile-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.profile-card-age {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.profile-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.profile-card-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.profile-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.profile-card-zodiac {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.profile-card-verified {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--success);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
}

/* ═══ Tags & Badges ═══ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--bg-alt);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.tag-primary { background: var(--primary-light); color: var(--primary); border-color: var(--primary-10); }
.tag-accent { background: var(--accent-light); color: var(--accent); border-color: rgba(196,154,60,0.2); }
.tag-success { background: var(--success-light); color: #16a34a; }
.tag-info { background: var(--info-light); color: var(--info); }

.zodiac-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border: 1px solid var(--primary-10);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.zodiac-badge .zodiac-symbol { font-size: 1.1rem; }

/* ═══ Forms ═══ */
.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.form-group.full-width { grid-column: 1 / -1; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: calc(-1 * var(--space-1));
}

.form-input,
.form-select,
.form-textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: white;
  transition: all var(--duration) var(--ease);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-50);
}

.form-textarea { min-height: 100px; resize: vertical; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

.form-error { color: var(--danger); font-size: 0.82rem; }
.form-success { color: var(--success); font-size: 0.82rem; }

.form-section {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-light);
}

.form-section:last-child { border-bottom: none; }

.form-section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.form-section-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

/* Radio/Checkbox groups */
.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.radio-option, .checkbox-option {
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  user-select: none;
}

.radio-option:hover, .checkbox-option:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.radio-option.selected, .checkbox-option.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.radio-option input, .checkbox-option input {
  display: none;
}

/* Photo upload */
.photo-upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.photo-upload-slot {
  aspect-ratio: 1;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

.photo-upload-slot:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.photo-upload-slot.has-photo {
  border-style: solid;
  border-color: var(--border);
}

.photo-upload-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.photo-upload-slot .upload-icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.photo-upload-slot .upload-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.photo-upload-slot .photo-remove {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(220,38,38,0.9);
  color: white;
  border: none;
  font-size: 0.75rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.photo-upload-slot:hover .photo-remove { display: flex; }

.photo-upload-slot.primary-photo::after {
  content: 'Primary Photo';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(123,45,74,0.8);
  color: white;
  font-size: 0.72rem;
  padding: var(--space-1);
  text-align: center;
}

/* ═══ Hero Section ═══ */
.hero {
  position: relative;
  padding: var(--space-24) 0 var(--space-20);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 50%, var(--bg) 100%);
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5' fill='none' stroke='%237B2D4A' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E");
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--accent-light);
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-6);
}

.hero h1 {
  margin-bottom: var(--space-6);
  color: var(--text);
}

.hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-light);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-container img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card:nth-child(2) { animation-delay: -1.5s; }

.hero-float-card.top-left { top: 10%; left: -20px; }
.hero-float-card.bottom-right { bottom: 15%; right: -20px; animation-delay: -1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══ How It Works ═══ */
.how-it-works { background: white; }

.how-it-works .section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.how-it-works .section-header h2 {
  margin-bottom: var(--space-3);
}

.how-it-works .section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.step-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto var(--space-5);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: block;
  margin: 0 auto;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-3);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══ Features Section ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.feature-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--duration) var(--ease);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-10);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}
.feature-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.feature-card h4 {
  font-family: var(--font-heading);
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══ Compatibility Section ═══ */
.compat-calculator {
  max-width: 700px;
  margin: 0 auto;
}

.compat-persons {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-8);
}

.compat-person {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.compat-vs {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 800;
  padding-bottom: var(--space-8);
}

.compat-result {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border: 1px solid var(--primary-10);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  text-align: center;
  display: none;
}

.compat-result.show { display: block; animation: fadeIn 0.5s var(--ease); }

.compat-score-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) calc(var(--score) * 1%), var(--border-light) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  position: relative;
}

.compat-score-inner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.compat-score-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.compat-score-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.compat-verdict {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: var(--space-3);
}

.compat-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
  text-align: left;
}

.compat-detail-item {
  background: white;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
}

.compat-detail-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.compat-detail-bar {
  height: 6px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.compat-detail-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  transition: width 1s var(--ease);
}

.compat-detail-score {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-top: var(--space-1);
}

/* ═══ Wedding Date Section ═══ */
.wedding-dates-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.wedding-date-card {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  transition: all var(--duration) var(--ease);
}

.wedding-date-card:hover { box-shadow: var(--shadow-md); }

.wedding-date-card.recommended {
  border-color: var(--accent);
  background: var(--accent-light);
}

.wedding-date-calendar {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.wedding-date-month {
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.wedding-date-day {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.wedding-date-info { flex: 1; }

.wedding-date-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.wedding-date-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.wedding-date-score {
  text-align: center;
}

.wedding-date-score-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

.wedding-date-score-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ═══ Profile Detail Page ═══ */
.profile-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  padding: var(--space-8) 0;
}

.profile-gallery {
  position: sticky;
  top: 80px;
}

.profile-gallery-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.profile-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.profile-gallery-thumbs {
  display: flex;
  gap: var(--space-2);
}

.profile-gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--duration) var(--ease);
}

.profile-gallery-thumb.active,
.profile-gallery-thumb:hover {
  border-color: var(--primary);
}

.profile-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.profile-info { padding: var(--space-4) 0; }

.profile-header {
  margin-bottom: var(--space-6);
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-2);
}

.profile-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.profile-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.profile-quick-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.profile-section {
  margin-bottom: var(--space-8);
}

.profile-section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--primary-light);
}

.profile-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.profile-detail-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.profile-detail-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.profile-detail-value {
  font-size: 0.92rem;
  color: var(--text);
}

.profile-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.profile-contact-card {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border: 1px solid var(--primary-10);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-top: var(--space-6);
}

.profile-contact-card h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.profile-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  transition: all var(--duration) var(--ease);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.social-link.whatsapp { background: var(--whatsapp); }
.social-link.instagram { background: var(--instagram); }
.social-link.twitter { background: var(--twitter); }
.social-link.linkedin { background: var(--linkedin); }
.social-link.facebook { background: var(--facebook); }

/* ═══ Browse Filters ═══ */
.browse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.browse-count {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.browse-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.filter-select {
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text);
  background: white;
  min-width: 120px;
}

.filter-search {
  flex: 1;
  min-width: 200px;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

/* ═══ Footer ═══ */
.footer {
  background: var(--dark);
  color: var(--text-inverse);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: var(--space-4);
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li { margin-bottom: var(--space-2); }

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--duration) var(--ease);
}

.footer-col ul a:hover { color: white; }

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ═══ Utilities ═══ */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-8) 0;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.toast {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--dark);
  color: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  font-size: 0.88rem;
  z-index: 1000;
  animation: slideUp 0.3s var(--ease);
}

.toast.success { background: #16a34a; }
.toast.error { background: var(--danger); }

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.5s var(--ease); }

/* ═══ Loading ═══ */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: var(--space-8) auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
  background: linear-gradient(90deg, var(--border-light) 25%, var(--bg-alt) 50%, var(--border-light) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s ease infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══ Modal ═══ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.modal-overlay.show { display: flex; }

.modal {
  background: white;
  border-radius: var(--radius-2xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeIn 0.3s var(--ease);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border-light);
}

.modal-header h3 { font-size: 1.2rem; }

.modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: var(--space-2);
}

.modal-body { padding: var(--space-6); }
.modal-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto var(--space-8); }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-container { max-width: 380px; }
  .hero-float-card { display: none; }

  .profile-detail { grid-template-columns: 1fr; }
  .profile-gallery { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-4); }
  .section { padding: var(--space-12) 0; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-4);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: span 1 !important; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .photo-upload-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-details-grid { grid-template-columns: 1fr; }

  .compat-persons { grid-template-columns: 1fr; }
  .compat-vs { text-align: center; padding: 0; }
  .compat-details { grid-template-columns: 1fr; }

  .browse-filters { flex-direction: column; }
  .filter-search { min-width: 100%; }

  .hero-stats { flex-direction: column; align-items: center; gap: var(--space-4); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .btn-lg { padding: var(--space-3) var(--space-6); font-size: 0.9rem; }
  .hero { padding: var(--space-12) 0; }
  .profile-card-body { padding: var(--space-4); }
}

/* ═══ DESIGN UPGRADE — Premium Touches ═══ */

/* Animated gradient border on cards on hover */
.profile-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.profile-card:hover::before { opacity: 1; }

/* Gold shimmer effect for accent elements */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--accent) 0%, #FFD700 25%, var(--accent) 50%, #FFD700 75%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* Fancy section divider */
.section-divider {
  text-align: center;
  padding: var(--space-4) 0;
}
.section-divider::before {
  content: '✦ ✦ ✦';
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
}

/* Parallax hero background */
.hero-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Glass morphism cards */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Testimonial card style */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: var(--space-2);
  left: var(--space-4);
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
}
.testimonial-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.88rem;
}
.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Page header with image background */
.page-header-image {
  position: relative;
  padding: var(--space-16) 0 var(--space-12);
  overflow: hidden;
}
.page-header-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.75), rgba(123,45,74,0.5));
}
.page-header-image .content {
  position: relative;
  z-index: 1;
}
.page-header-image h1,
.page-header-image p { color: white; }
.page-header-image p { opacity: 0.85; }

/* Better scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Premium button group */
.btn-group {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Decorative lotus divider */
.lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  color: var(--accent);
}
.lotus-divider::before,
.lotus-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

/* Image overlay gradient */
.img-gradient-overlay {
  position: relative;
}
.img-gradient-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Better focus styles for accessibility */
.btn:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Smooth page transitions */
body { opacity: 1; transition: opacity 0.3s; }

/* Feature card icon with gradient bg */
.feature-icon-gradient {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}

/* ═══════════════════════════════════════════════════════════════
   VERIFICATION BADGES
   ═══════════════════════════════════════════════════════════════ */

/* Base badge */
.badge-verified {
  background: #3B82F6;
  color: white;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1.6;
  vertical-align: middle;
}

/* Gold tier — fully verified */
.badge-verified.gold {
  background: linear-gradient(135deg, #C49A3C, #FFD700);
  color: #1a0e00;
  box-shadow: 0 1px 6px rgba(196, 154, 60, 0.35);
}

/* Grey tier — email only */
.badge-verified.grey {
  background: #9B9BA8;
  color: white;
}

/* Pending state */
.badge-verified.pending {
  background: #F59E0B;
  color: white;
}

/* Rejected state */
.badge-verified.rejected {
  background: #EF4444;
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   VERIFICATION SECTION (create.html)
   ═══════════════════════════════════════════════════════════════ */

/* Status banners at top of verification section */
.verif-status-banner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.verif-status-blue {
  background: #EBF5FF;
  border: 1px solid #93C5FD;
  color: #1D4ED8;
}

.verif-status-gold {
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  color: #92400E;
}

.verif-status-pending {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
}

.verif-status-rejected {
  background: var(--danger-light);
  border: 1px solid #FECACA;
  color: #991B1B;
}

/* Tier list container */
.verif-tier-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Individual tier card */
.verif-tier {
  background: var(--card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  transition: border-color 0.2s;
}

.verif-tier.verif-tier-done {
  border-color: #86EFAC;
  background: #F0FDF4;
}

.verif-tier.verif-tier-pending {
  border-color: #FCD34D;
  background: #FFFBEB;
}

/* Tier header row */
.verif-tier-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

/* Circle check/number */
.verif-tier-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.verif-tier-check.done {
  background: #16A34A;
  border-color: #16A34A;
  color: white;
}

.verif-tier-check.pending {
  background: #F59E0B;
  border-color: #F59E0B;
  color: white;
}

/* Tier text */
.verif-tier-info {
  flex: 1;
}

.verif-tier-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: var(--space-1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.verif-tier-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Upload row inside a tier */
.verif-upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-5);
}

@media (max-width: 580px) {
  .verif-upload-row {
    grid-template-columns: 1fr;
  }
}

.verif-upload-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.verif-upload-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Upload button (styled as a label) */
.verif-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  width: fit-content;
}

.verif-upload-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.verif-upload-btn.uploaded {
  background: #F0FDF4;
  border-color: #86EFAC;
  border-style: solid;
  color: #16A34A;
}

.verif-upload-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* File status indicator */
.verif-file-status {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  background: var(--border-light);
}

.verif-file-status.uploaded {
  color: #16A34A;
  background: #DCFCE7;
}

/* Upload hint text */
.verif-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Uploading spinner text */
.verif-uploading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
}

/* More dropdown in nav */
#more-dropdown.show { display:block !important; }
#more-dropdown li { list-style:none; }
#more-dropdown a:hover { background:var(--bg-alt); color:var(--primary); }

