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

:root {
  --blue: #0474E9;
  --blue-dark: #2563eb;
  --blue-light: #EFF6FF;
  --white: #FFFFFF;
  --bg: #F8FAFC;
  --border: #e2e8f0;
  --text: #1a1a1a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --red: #dc2626;
  --red-light: #fef2f2;
  --green: #16a34a;
  --green-light: #dcfce7;
  --amber: #f59e0b;
  --amber-light: #fffbeb;
  --radius: 14px;
  --radius-lg: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-hover: 0 4px 16px rgba(4, 116, 233, 0.1);
  --max-w: 420px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #e2e8f0;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.app-container {
  width: 100%;
  max-width: var(--max-w);
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

/* General */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }
.page-content { padding: 20px 24px 100px; }
.fade-in { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Welcome Screen */
.welcome-screen {
  min-height: 100vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(180deg, #EFF6FF 0%, #fff 100%);
  text-align: center;
}
.welcome-screen.active { display: flex; }

.welcome-icon {
  width: 80px; height: 80px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(4, 116, 233, 0.3);
}
.welcome-icon svg { width: 40px; height: 40px; fill: white; }

.welcome-title { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.welcome-product { font-size: 24px; font-weight: 700; color: var(--blue); margin-bottom: 16px; line-height: 1.3; }
.welcome-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; max-width: 280px; }

.welcome-quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 32px;
  font-style: italic;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.name-input {
  width: 100%;
  max-width: 320px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.name-input:focus { border-color: var(--blue); }
.name-input.error { border-color: var(--red); }

/* Buttons */
.btn {
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { box-shadow: 0 8px 24px rgba(4, 116, 233, 0.35); }
.btn-secondary { background: #f1f5f9; color: #475569; }
.btn-secondary:hover { box-shadow: var(--shadow); }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.card:hover { box-shadow: var(--shadow-hover); }
.card.highlight { border: 2px solid var(--blue); }
.card.danger { border: 2px solid var(--red); }

.card-left { display: flex; align-items: center; gap: 14px; }
.card-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.card-icon.gray { background: var(--bg); border-color: var(--border); }
.card-icon.danger { background: var(--red-light); border-color: var(--red); }
.card-icon.green { background: var(--green-light); border-color: #86efac; }
.card-icon.purple { background: #faf5ff; border-color: #d8b4fe; }
.card-icon.orange { background: #fff7ed; border-color: #fdba74; }

.card-title { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.card-sub { font-size: 12px; color: var(--text-secondary); }
.card-arrow { font-size: 18px; color: var(--blue); }
.card.danger .card-arrow { color: var(--red); }

/* Hero Card */
.hero-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex;
  align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.hero-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; position: relative; z-index: 1; line-height: 1.3; }
.hero-desc { font-size: 12px; opacity: 0.9; margin-bottom: 16px; line-height: 1.5; position: relative; z-index: 1; }
.hero-cta {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: white;
  color: var(--blue);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  position: relative; z-index: 1;
  border: none; cursor: pointer;
}

/* Grid 3 */
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.grid-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 8px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.grid-item:hover { border-color: var(--blue); }

.grid-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border: 1.5px solid;
}
.grid-icon.green { background: var(--green-light); border-color: #86efac; }
.grid-icon.purple { background: #faf5ff; border-color: #d8b4fe; }
.grid-icon.orange { background: #fff7ed; border-color: #fdba74; }

.grid-label { font-size: 13px; font-weight: 600; }
.grid-sub { font-size: 11px; color: var(--text-secondary); }

/* Product Card */
.product-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 12px;
}
.product-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.product-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 14px; }
.product-cta {
  display: inline-flex;
  align-items: center; gap: 6px;
  background: var(--blue);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  border: none; cursor: pointer;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}
.nav-item.active { color: var(--blue); }
.nav-item.active::before {
  content: '';
  position: absolute;
  top: -10px;
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
}

.nav-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }

/* Header */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.back-btn {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.back-btn:hover { background: var(--border); }
.header-title { font-size: 15px; font-weight: 700; }

/* Module Card */
.module-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.module-card:hover { box-shadow: var(--shadow-hover); }
.module-card.highlight { border: 2px solid var(--amber); }

.module-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1.5px solid;
}
.module-icon.play { background: var(--green-light); border-color: #86efac; }
.module-icon.locked { background: var(--bg); border-color: var(--border); }
.module-icon.info { background: var(--amber-light); border-color: #fde68a; }

.module-info { flex: 1; }
.module-title { font-size: 14px; font-weight: 600; }
.module-sub { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }
.module-arrow { color: var(--blue); font-size: 16px; }

/* Section label */
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Schedule */
.schedule-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
}
.schedule-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.schedule-title::before {
  content: '';
  width: 3px; height: 18px;
  background: var(--blue);
  border-radius: 2px;
}
.day-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}
.day-row:last-child { border-bottom: none; }
.day-badge {
  width: 44px; height: 28px;
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.day-badge.bonus { background: var(--amber-light); border-color: var(--amber); color: #d97706; }

.phase-name { font-size: 13px; font-weight: 600; }
.phase-action { font-size: 11px; color: var(--text-secondary); }

/* Tip Box */
.tip-box {
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 14px;
  margin: 12px 0;
}
.tip-title { font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.tip-text { font-size: 12px; color: #1e40af; line-height: 1.6; }
.tip-box.green { background: var(--green-light); border-color: var(--green); }
.tip-box.green .tip-title { color: var(--green); }
.tip-box.green .tip-text { color: #166534; }

/* Phase Pages */
.phase-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.phase-objective {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
}

/* Day Card */
.day-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
}
.day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.day-number {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
}
.day-title { font-size: 15px; font-weight: 700; }
.day-meta { font-size: 11px; color: var(--blue); font-weight: 500; margin-top: 2px; }

.day-section {
  margin-bottom: 14px;
}
.day-section-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.day-section-title::before {
  content: '';
  width: 3px; height: 14px;
  background: var(--blue);
  border-radius: 2px;
}
.day-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
}
.day-text strong { color: var(--text); }
.day-text ul {
  margin: 8px 0;
  padding-left: 20px;
}
.day-text li {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 4px;
}

/* Example Box */
.example-box {
  background: var(--green-light);
  border: 1px solid #86efac;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 14px;
  margin: 12px 0;
}
.example-title { font-size: 12px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.example-text { font-size: 12px; color: #166534; line-height: 1.6; font-style: italic; }

/* Rules Box */
.rules-box {
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
  border-left: 4px solid #ec4899;
  border-radius: var(--radius);
  padding: 14px;
  margin: 12px 0;
}
.rules-title { font-size: 12px; font-weight: 700; color: #9d174d; margin-bottom: 6px; }
.rules-text { font-size: 12px; color: #831843; line-height: 1.6; }

/* Final Day */
.final-day {
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 14px;
  margin-top: 14px;
}
.final-title { font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.final-text { font-size: 12px; color: #1e40af; line-height: 1.6; }

/* Divider */
.divider { height: 1px; background: var(--border); margin: 20px 0; }

/* Highlight */
.highlight-box {
  background: var(--amber-light);
  border: 1px solid #fde68a;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 14px;
  margin: 12px 0;
}
.highlight-title { font-size: 12px; font-weight: 700; color: #92400e; margin-bottom: 6px; }
.highlight-text { font-size: 12px; color: #78350f; line-height: 1.6; }

/* Conclusion */
.conclusion-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  margin-top: 16px;
}
.conclusion-title { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.conclusion-text { font-size: 13px; line-height: 1.7; opacity: 0.95; }
.pillars { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.pillar {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
}

/* Crisis Cards */
.crisis-card {
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}
.crisis-card:hover { transform: scale(1.02); }
.crisis-left { display: flex; align-items: center; gap: 14px; }
.crisis-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.crisis-title { font-size: 15px; font-weight: 700; }
.crisis-sub { font-size: 12px; opacity: 0.9; }
.crisis-arrow { font-size: 20px; opacity: 0.8; }

/* Crisis Content */
.crisis-content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
}
.crisis-content-card.red { border-left: 4px solid var(--red); }
.crisis-content-card.blue { border-left: 4px solid var(--blue); }

.crisis-content-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.crisis-content-text { font-size: 13px; color: #475569; line-height: 1.7; }
.crisis-steps { margin: 10px 0; padding-left: 20px; }
.crisis-step { font-size: 13px; color: #475569; line-height: 1.6; margin-bottom: 6px; }
.crisis-list { margin: 10px 0; padding-left: 0; list-style: none; }
.crisis-list li {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}
.crisis-list li::before { content: '\2022'; color: var(--red); font-weight: bold; position: absolute; left: 0; }
.crisis-exercise {
  background: #fefce8;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 14px;
  margin: 12px 0;
}
.crisis-exercise-title { font-size: 13px; font-weight: 700; color: #854d0e; margin-bottom: 6px; }
.crisis-exercise-text { font-size: 13px; color: #854d0e; line-height: 1.7; }

/* Quiz */
.quiz-screen {
  display: none;
  min-height: 100vh;
  flex-direction: column;
  padding: 40px 24px;
  background: var(--white);
}
.quiz-screen.active { display: flex; }

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.quiz-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 3px;
  transition: width 0.3s;
}
.quiz-progress-text { font-size: 12px; color: var(--text-secondary); font-weight: 600; }

.quiz-question { margin-bottom: 24px; }
.quiz-question-number { font-size: 12px; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.quiz-question-text { font-size: 18px; font-weight: 700; line-height: 1.4; }

.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
  font-family: inherit;
  color: var(--text);
}
.quiz-option:hover { border-color: var(--blue); background: var(--blue-light); }
.quiz-option.selected {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
}
.quiz-btn {
  margin-top: auto;
  padding: 16px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.quiz-btn.enabled { opacity: 1; }
.quiz-btn.enabled:hover { transform: translateY(-2px); }

/* Diagnóstico */
.diagnostico-header {
  text-align: center;
  padding: 24px 20px 0;
}
.diagnostico-icon { font-size: 48px; margin-bottom: 12px; }
.diagnostico-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.diagnostico-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }

.diagnostico-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.diagnostico-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.diagnostico-card-icon { font-size: 36px; }
.diagnostico-card-title { font-size: 18px; font-weight: 700; }
.diagnostico-card-desc { font-size: 14px; color: #475569; line-height: 1.7; margin-bottom: 16px; }

.recommendation-list { list-style: none; padding: 0; }
.recommendation-list li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
  padding: 10px 14px;
  background: var(--blue-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
}

/* Perfil */
.perfil-header {
  padding: 20px 24px 0;
  text-align: center;
}
.perfil-avatar {
  width: 64px; height: 64px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto 12px;
}
.perfil-name { font-size: 20px; font-weight: 700; }
.perfil-email { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  max-width: 360px;
  width: 100%;
  text-align: center;
}
.modal-icon {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}
.modal-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.modal-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
.modal-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  transition: transform 0.2s;
}
.modal-btn:hover { transform: scale(1.02); }
.modal-btn.primary { background: var(--blue); color: white; }
.modal-btn.secondary { background: #f1f5f9; color: #475569; }

/* Profile options */
.profile-option {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.profile-option:hover { box-shadow: var(--shadow-hover); }
.profile-option-left { display: flex; align-items: center; gap: 12px; }
.profile-option-icon { font-size: 20px; }
.profile-option-text { font-size: 14px; font-weight: 500; }
.profile-option-arrow { color: var(--text-muted); font-size: 16px; }
