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

/* ============================================
   1. RESET & BASE
   ============================================ */

:root {
  --bg: #080808;
  --bg-card: #0D1F1F;
  --bg-card-elevated: #0F2B2B;
  --sand: #E8C9A0;
  --gold: #C4A070;
  --cream: #F5EDE0;
  --text: #F5EDE0;
  --text-dim: rgba(245, 237, 224, 0.6);
  --text-dimmer: rgba(245, 237, 224, 0.35);
  --border: rgba(196, 160, 112, 0.12);
  --border-focus: rgba(196, 160, 112, 0.3);
  --success: #4ADE80;
  --error: #F87171;
  --warning: #fbbf24;
  --gradient: linear-gradient(135deg, #C4A070, #E8C9A0);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   2. LINKS
   ============================================ */

a {
  color: var(--sand);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--cream);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   3. LAYOUT
   ============================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container-narrow {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================
   4. BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #C4A070 0%, #E8C9A0 50%, #C4A070 100%);
  background-size: 200% auto;
  color: #0A0A08;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: 14px;
  box-shadow:
    0 4px 20px rgba(196, 160, 112, 0.3),
    0 0 40px rgba(196, 160, 112, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow:
    0 6px 30px rgba(196, 160, 112, 0.4),
    0 0 60px rgba(196, 160, 112, 0.15);
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(196, 160, 112, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(196, 160, 112, 0.3);
  color: var(--sand);
}

.btn-outline:hover {
  background: rgba(196, 160, 112, 0.08);
  border-color: rgba(196, 160, 112, 0.5);
}

.btn-outline:active {
  background: rgba(196, 160, 112, 0.12);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 10px;
  min-height: 38px;
}

.btn-danger {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: var(--error);
}

.btn-danger:hover {
  background: rgba(248, 113, 113, 0.18);
  border-color: rgba(248, 113, 113, 0.5);
}

/* ============================================
   5. FORMS
   ============================================ */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.form-control {
  display: block;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: rgba(12, 30, 30, 0.6);
  border: 1px solid rgba(196, 160, 112, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}

.form-control::placeholder {
  color: var(--text-dimmer);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 160, 112, 0.1);
}

.form-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 6px;
}

.form-hint {
  font-size: 12px;
  color: var(--text-dimmer);
  margin-top: 6px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C4A070' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select.form-control option {
  background: var(--bg-card);
  color: var(--text);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* ============================================
   6. CARDS
   ============================================ */

.card {
  background: linear-gradient(145deg, #0D1F1F 0%, #0A1818 100%);
  border: 1px solid rgba(196, 160, 112, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 160, 112, 0.3), transparent);
}

.card:hover {
  border-color: rgba(196, 160, 112, 0.25);
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(196, 160, 112, 0.05);
}

.card-featured {
  background: linear-gradient(145deg, #12261E 0%, #0D1F1F 100%);
  border-color: rgba(196, 160, 112, 0.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(196, 160, 112, 0.08);
  border: 1px solid rgba(196, 160, 112, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: rgba(196, 160, 112, 0.12);
  border-color: rgba(196, 160, 112, 0.25);
  transform: scale(1.05);
}

.feature-card h3, .persona-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.feature-card p, .persona-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #080808;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(196, 160, 112, 0.2);
}

.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================
   7. ALERTS
   ============================================ */

.alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.alert-success {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: var(--success);
}

.alert-error {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  color: var(--error);
}

.alert-warning {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: var(--warning);
}

/* ============================================
   8. NAVIGATION
   ============================================ */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 160, 112, 0.06);
  margin: 0 -24px;
  padding: 20px 24px;
}

.nav-brand {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #C4A070, #E8C9A0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   9. HERO
   ============================================ */

.hero {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 160, 112, 0.08) 0%, rgba(196, 160, 112, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(10, 42, 42, 0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.hero .tagline {
  font-size: 14px;
  color: var(--text-dimmer);
  margin-bottom: 32px;
}

.hero-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(196, 160, 112, 0.4);
  box-shadow:
    0 0 30px rgba(196, 160, 112, 0.15),
    0 0 60px rgba(196, 160, 112, 0.08),
    0 0 100px rgba(196, 160, 112, 0.04);
  animation: float 4s ease-in-out infinite, pulse-glow 3s ease-in-out infinite alternate;
  margin-bottom: 28px;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 30px rgba(196, 160, 112, 0.15), 0 0 60px rgba(196, 160, 112, 0.08), 0 0 100px rgba(196, 160, 112, 0.04); }
  100% { box-shadow: 0 0 40px rgba(196, 160, 112, 0.25), 0 0 80px rgba(196, 160, 112, 0.12), 0 0 120px rgba(196, 160, 112, 0.06); }
}

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

.hero-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.text-gradient {
  background: linear-gradient(135deg, #C4A070, #E8C9A0, #C4A070);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 14px 24px;
  transition: color 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost:hover {
  color: var(--sand);
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding: 20px 32px;
  border: 1px solid rgba(196, 160, 112, 0.1);
  border-radius: 16px;
  background: rgba(12, 30, 30, 0.4);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(196, 160, 112, 0.15);
}

/* ============================================
   10. SECTIONS
   ============================================ */

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-align: center;
  margin-bottom: 12px;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #C4A070, #E8C9A0);
  margin: 12px auto 0;
  border-radius: 1px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-dim);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.section-divider {
  width: 60%;
  max-width: 400px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(196, 160, 112, 0.25), transparent);
  border: none;
}

/* Trust Bar */
.trust-bar {
  text-align: center;
  padding: 40px 0;
}

.trust-text {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dimmer);
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}

.trust-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   11. GRIDS
   ============================================ */

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============================================
   12. PRICING
   ============================================ */

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(196, 160, 112, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(196, 160, 112, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pricing-card .badge {
  display: inline-block;
  background: linear-gradient(135deg, #C4A070, #E8C9A0);
  color: #0A2A2A;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-card .card-title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.pricing-card .card-price {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 4px;
  line-height: 1.1;
}

.pricing-card .card-period {
  font-size: 13px;
  color: var(--text-dimmer);
  margin-bottom: 24px;
}

.pricing-card .features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  padding: 8px 0;
}

.pricing-card .features li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card.card-featured {
  border: 2px solid transparent;
  background:
    linear-gradient(145deg, #12261E 0%, #0D1F1F 100%) padding-box,
    linear-gradient(135deg, #C4A070, #E8C9A0, #C4A070, #E8C9A0) border-box;
  box-shadow:
    0 0 40px rgba(196, 160, 112, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

.pricing-card.card-featured::before {
  display: none;
}

.pricing-card.card-featured:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 60px rgba(196, 160, 112, 0.18),
    0 12px 40px rgba(0, 0, 0, 0.5);
}

.card-price-unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dimmer);
  margin-top: 32px;
}

/* ============================================
   13. FAQ
   ============================================ */

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  padding: 4px 0;
  min-height: 44px;
}

.faq-question:hover {
  color: var(--sand);
}

.faq-question .chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-dim);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 12px 0 4px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   14. FOOTER
   ============================================ */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
}

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

.footer-tagline {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--text-dimmer);
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: var(--text-dimmer);
}

.cta-section {
  text-align: center;
  padding: 100px 0;
}

/* ============================================
   15. AUTH PAGES
   ============================================ */

.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid rgba(196, 160, 112, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  padding: 40px;
  width: 100%;
  max-width: 420px;
}

.auth-card h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.5;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-dim);
}

.auth-footer a {
  color: var(--sand);
  font-weight: 500;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-dimmer);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================
   16. ONBOARDING
   ============================================ */

.onboarding-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.onboarding-card {
  background: var(--bg-card);
  border: 1px solid rgba(196, 160, 112, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  padding: 40px;
  width: 100%;
  max-width: 560px;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(135deg, #C4A070, #E8C9A0);
  border-radius: 0 3px 3px 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.onboarding-question {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 8px;
}

.step-counter {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dimmer);
  margin-bottom: 24px;
}

.step-hint {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.5;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 16px;
  background: rgba(12, 30, 30, 0.6);
  border: 1px solid rgba(196, 160, 112, 0.1);
  border-radius: 12px;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  position: relative;
  text-align: center;
}

.option-btn .icon {
  font-size: 24px;
  margin-bottom: 2px;
}

.option-btn:hover {
  border-color: rgba(196, 160, 112, 0.25);
  background: rgba(196, 160, 112, 0.05);
  color: var(--cream);
}

.option-btn.selected {
  border-color: var(--gold);
  background: rgba(196, 160, 112, 0.08);
  color: var(--cream);
}

.option-btn.multi.selected::after {
  content: '\2713';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.other-input {
  display: none;
  margin-top: 12px;
}

.other-input.visible {
  display: block;
}

/* ============================================
   17. DASHBOARD
   ============================================ */

.dashboard {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: linear-gradient(180deg, #0A0A08 0%, #0C0E0A 100%);
  border-right: 1px solid rgba(196, 160, 112, 0.06);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-brand {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #C4A070, #E8C9A0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 24px 20px;
  text-decoration: none;
  display: block;
}

.sidebar-nav {
  flex: 1;
  padding: 8px 12px;
  overflow-y: auto;
  list-style: none;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 44px;
}

.sidebar-link:hover {
  background: rgba(196, 160, 112, 0.06);
  color: var(--cream);
}

.sidebar-link.active {
  background: rgba(196, 160, 112, 0.1);
  color: var(--sand);
}

.sidebar-user {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.sidebar-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.main-content {
  flex: 1;
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  min-height: 60px;
}

/* ============================================
   18. CHAT
   ============================================ */

.chat-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  overflow-y: auto;
  padding: 28px;
  padding-bottom: 100px;
}

.chat-msg {
  display: flex;
  gap: 12px;
  max-width: 75%;
  align-items: flex-start;
}

.chat-msg.user {
  flex-direction: row-reverse;
  margin-left: auto;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.chat-bubble {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
}

.chat-msg.zain .chat-bubble {
  background: var(--bg-card);
  border: 1px solid rgba(196, 160, 112, 0.08);
  color: var(--cream);
  border-bottom-left-radius: 4px;
}

.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, #C4A070, #E8C9A0);
  color: #0A2A2A;
  border-bottom-right-radius: 4px;
}

.chat-time {
  font-size: 11px;
  color: var(--text-dimmer);
  margin-top: 4px;
  padding: 0 4px;
}

.chat-input-area {
  position: fixed;
  bottom: 0;
  left: 260px;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
}

.chat-input {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: rgba(7, 15, 15, 0.6);
  border: 1px solid rgba(196, 160, 112, 0.15);
  border-radius: 24px;
  padding: 0 20px;
  height: 48px;
  outline: none;
  transition: border-color 0.3s ease;
}

.chat-input::placeholder {
  color: var(--text-dimmer);
}

.chat-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 160, 112, 0.1);
}

.chat-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4A070, #E8C9A0);
  border: none;
  color: #0A2A2A;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(196, 160, 112, 0.3);
}

.chat-send:active {
  transform: scale(0.95);
}

/* ============================================
   19. HOUR COUNTER
   ============================================ */

.hour-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-dim);
}

.hour-counter .count {
  font-weight: 600;
  color: var(--sand);
  animation: pulse 2s ease-in-out infinite;
}

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

/* ============================================
   20. ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   21. RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
    z-index: 200;
  }

  .nav-links.open {
    display: flex;
  }

  .nav {
    position: relative;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subtitle {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .sidebar {
    left: -260px;
  }

  .sidebar.open {
    left: 0;
  }

  .main-content {
    margin-left: 0;
  }

  .chat-input-area {
    left: 0;
  }

  .topbar {
    padding: 14px 20px;
  }

  .chat-area {
    padding: 20px;
    padding-bottom: 100px;
  }

  .chat-msg {
    max-width: 88%;
  }

  .pricing-card .card-price {
    font-size: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-proof {
    flex-direction: column;
    gap: 16px;
    padding: 16px 24px;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero .subtitle {
    font-size: 14px;
  }

  .hero-avatar {
    width: 100px;
    height: 100px;
  }

  .auth-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .onboarding-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .section-title {
    font-size: 20px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .pricing-card .card-price {
    font-size: 36px;
  }

  .btn {
    padding: 12px 24px;
  }

  .chat-input-area {
    padding: 12px 16px;
  }

  .chat-input {
    height: 44px;
    padding: 0 16px;
  }

  .chat-send {
    width: 40px;
    height: 40px;
  }

  .chat-bubble {
    padding: 12px 14px;
    font-size: 13px;
  }
}
