/* KARMA — Chat, Gita, Profile, Modals */

/* ============ CHAT ============ */
#view-chat { padding: 0; margin: -20px -18px 0; display: flex; flex-direction: column; min-height: calc(100vh - var(--header-h) - var(--nav-h) - 20px); }

.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border-top: none;
}
.chat-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}
.chat-meta { flex: 1; min-width: 0; }
.chat-name {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 4px;
}
.chat-verified { color: var(--primary); font-size: 16px; }
.chat-status {
  font-size: 11px; color: var(--accent-teal);
  display: flex; align-items: center; gap: 5px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px var(--accent-teal);
  animation: pulseDot 2s ease-in-out infinite;
}
.chat-actions { display: flex; align-items: center; gap: 6px; }
.limit-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 100px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 11px; font-weight: 600;
}

.chat-body {
  flex: 1;
  padding: 16px 14px 8px;
  display: flex; flex-direction: column; gap: 10px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.chat-welcome {
  text-align: center; padding: 30px 20px;
  position: relative;
}
.welcome-halo {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25), transparent 70%);
  filter: blur(20px); z-index: -1;
}
.welcome-line {
  font-family: var(--font-heading);
  font-style: italic; font-size: 18px;
  color: var(--text-muted);
  max-width: 260px; margin: 0 auto;
}

.msg-row { display: flex; gap: 8px; align-items: flex-end; animation: msgIn 0.35s ease; }
.msg-row.user { justify-content: flex-end; }
.msg-avatar {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 1.5px solid var(--primary);
}
.msg-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14.5px; line-height: 1.55;
  word-wrap: break-word;
  position: relative;
}
.msg-bubble.krishna {
  background: var(--surface);
  backdrop-filter: blur(12px);
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 6px;
}
/* Markdown-rendered Krishna messages get a slightly wider bubble & richer styling */
.msg-bubble.krishna.md {
  max-width: 90%;
  padding: 14px 18px;
}
.msg-bubble.krishna.md p { margin: 0 0 10px; }
.msg-bubble.krishna.md p:last-child { margin-bottom: 0; }
.msg-bubble.krishna.md h1,
.msg-bubble.krishna.md h2,
.msg-bubble.krishna.md h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 14px 0 8px;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.2px;
}
.msg-bubble.krishna.md h1 { font-size: 20px; }
.msg-bubble.krishna.md h2 {
  font-size: 17px;
  color: var(--primary);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-soft);
}
.msg-bubble.krishna.md h3 { font-size: 15px; }
.msg-bubble.krishna.md strong { font-weight: 700; color: var(--text); }
.msg-bubble.krishna.md em { font-style: italic; }
.msg-bubble.krishna.md ul,
.msg-bubble.krishna.md ol {
  margin: 8px 0 12px;
  padding-left: 22px;
}
.msg-bubble.krishna.md li {
  margin: 4px 0;
  line-height: 1.55;
}
.msg-bubble.krishna.md blockquote {
  margin: 10px 0;
  padding: 10px 14px;
  border-left: 3px solid var(--primary);
  background: var(--primary-soft);
  border-radius: 0 10px 10px 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
}
.msg-bubble.krishna.md blockquote p { margin: 0; }
.msg-bubble.krishna.md code {
  background: var(--primary-soft);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'SFMono-Regular', Consolas, monospace;
}
.msg-bubble.krishna.md hr {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 12px 0;
}
.msg-bubble.krishna.md a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.msg-col { min-width: 0; flex: 1; }
.msg-bubble.user {
  background: var(--grad-primary);
  color: white;
  border-bottom-right-radius: 6px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.msg-meta {
  font-size: 10px; color: var(--text-faint);
  margin-top: 3px; padding: 0 4px;
  display: flex; gap: 8px; align-items: center;
}
.msg-row.user .msg-meta { justify-content: flex-end; }
.msg-actions {
  display: flex; gap: 4px; opacity: 0; transition: opacity 0.2s ease;
}
.msg-row:hover .msg-actions { opacity: 1; }
.msg-action-btn {
  background: none; border: none; color: var(--text-faint); font-size: 12px;
  padding: 2px 4px; cursor: pointer; border-radius: 6px;
}
.msg-action-btn:hover { color: var(--primary); background: var(--primary-soft); }

.typing-indicator {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 12px 16px; border-radius: 18px; border-bottom-left-radius: 6px;
  display: inline-flex; gap: 5px; align-items: center; width: fit-content;
}
.typing-indicator span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  animation: typingDot 1.3s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }

.chat-suggestions {
  display: flex; gap: 8px; padding: 4px 14px 8px;
  overflow-x: auto; scrollbar-width: none;
}
.chat-suggestions::-webkit-scrollbar { display: none; }
.suggestion-chip {
  flex-shrink: 0;
  padding: 8px 14px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 12.5px; font-family: var(--font-body);
  cursor: pointer; transition: all 0.25s ease; white-space: nowrap;
}
.suggestion-chip:hover { color: var(--primary); border-color: var(--primary); }

.chat-composer {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  margin: 8px 14px 14px;
  border-radius: 100px;
}
.chat-input {
  flex: 1; padding: 10px 14px;
  background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 15px;
}
.chat-input::placeholder { color: var(--text-faint); }
.send-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-primary); color: white;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: all 0.25s ease;
  box-shadow: var(--shadow-glow);
}
.send-btn:hover { transform: scale(1.08) rotate(-8deg); }
.send-btn:active { transform: scale(0.95); }
.send-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ============ GITA ============ */
.gita-header { text-align: center; padding: 8px 0 20px; }
.gita-title {
  font-family: var(--font-heading);
  font-size: 40px; font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 4px;
}
.gita-sub {
  font-size: 14px; color: var(--text-muted);
  max-width: 320px; margin: 0 auto; font-style: italic;
  font-family: var(--font-heading);
}

.search-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.search-row i { color: var(--text-muted); font-size: 20px; }
.gita-search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 14.5px;
}

.gita-tabs {
  display: flex; gap: 6px; padding: 4px;
  background: var(--surface); border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid var(--border-soft);
}
.gita-tab {
  flex: 1; padding: 8px 12px; border-radius: 100px; border: none;
  background: transparent; color: var(--text-muted);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.28s ease;
}
.gita-tab.active { background: var(--grad-primary); color: white; box-shadow: var(--shadow-glow); }

.chapter-list { display: flex; flex-direction: column; gap: 12px; }
.chapter-item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  cursor: pointer; transition: all 0.28s ease;
  display: flex; gap: 14px; align-items: center;
}
.chapter-item:hover { transform: translateX(4px); border-color: var(--primary); }
.chapter-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.chapter-item-body { flex: 1; min-width: 0; }
.chapter-item-title {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 2px;
}
.chapter-item-sub { font-size: 12px; color: var(--text-muted); }
.chapter-arrow { color: var(--text-faint); font-size: 20px; }

.verse-item {
  padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  cursor: pointer; transition: all 0.28s ease;
  margin-bottom: 10px;
}
.verse-item:hover { border-color: var(--primary); transform: translateY(-1px); }
.verse-item-badge {
  display: inline-block;
  padding: 3px 10px; border-radius: 100px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 11px; font-weight: 600; margin-bottom: 6px;
}
.verse-item-text {
  font-family: var(--font-heading);
  font-size: 15.5px; font-style: italic; color: var(--text); line-height: 1.5;
}

.empty-line { text-align: center; padding: 24px 12px; color: var(--text-muted); font-size: 14px; }

/* ============ PROFILE ============ */
.profile-header {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 18px;
}
.profile-avatar-wrap { position: relative; }
.profile-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-heading); font-weight: 700; font-size: 32px;
  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-glow);
}
.edit-avatar-btn {
  position: absolute; bottom: -2px; right: -2px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-elev); color: var(--primary);
  border: 2px solid var(--border);
  cursor: pointer; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.profile-info { flex: 1; min-width: 0; }
.profile-name {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 2px;
}
.profile-email { font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }
.profile-joined { font-size: 11px; color: var(--text-faint); }

.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 18px;
}
.stat-card {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  text-align: center;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 30px; font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; }

.profile-section {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}
.profile-section-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.profile-section-head h3 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.profile-section-head h3 i { color: var(--primary); }
.section-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }

.chip {
  padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.3px;
}
.chip-muted { background: var(--surface); color: var(--text-muted); border: 1px solid var(--border-soft); }
.chip-premium { background: linear-gradient(135deg, #FDE68A, #F59E0B); color: #451A03; }

/* ============ MODALS ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
.modal {
  width: 100%; max-width: 400px;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  position: relative;
  background: var(--bg-elev) !important;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh; overflow-y: auto;
}
.modal-small { max-width: 340px; text-align: center; }
.modal-tall { max-width: 420px; }
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border-soft);
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.2s ease;
}
.modal-close:hover { color: var(--text); background: var(--primary-soft); }

.modal-header { text-align: center; margin-bottom: 20px; }
.modal-mark { margin: 0 auto 12px; }
.modal-title {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.modal-title.center { text-align: center; }
.modal-sub { font-size: 14px; color: var(--text-muted); }
.modal-sub.center { text-align: center; }

.lock-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; margin: 0 auto 16px;
}
.lock-icon.amber { background: linear-gradient(135deg, #FDE68A, #F59E0B); color: #451A03; }

.tab-switch {
  display: flex; gap: 4px; padding: 4px;
  background: var(--surface); border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid var(--border-soft);
}
.tab-btn {
  flex: 1; padding: 9px 14px; border-radius: 100px; border: none;
  background: transparent; color: var(--text-muted);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  cursor: pointer; transition: all 0.28s ease;
}
.tab-btn.active { background: var(--grad-primary); color: white; box-shadow: var(--shadow-glow); }

.auth-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label {
  font-size: 12px; color: var(--text-muted);
  font-weight: 500; letter-spacing: 0.4px; text-transform: uppercase;
  padding-left: 4px;
}
.field input {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: var(--text); font-family: var(--font-body); font-size: 14.5px;
  outline: none; transition: all 0.25s ease;
}
.field input:focus { border-color: var(--primary); background: var(--bg-elev); box-shadow: 0 0 0 3px var(--primary-soft); }
.field input::placeholder { color: var(--text-faint); }
.auth-error {
  font-size: 13px; color: var(--danger);
  padding: 8px 12px; border-radius: 8px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  display: none;
}
.auth-error.show { display: block; }
.forgot-btn { font-size: 13px; padding: 8px; border: none; margin-top: 4px; }

.divider {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0 14px;
  font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-soft);
}

/* Verse modal */
.verse-badge {
  display: inline-block;
  padding: 4px 12px; border-radius: 100px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 12px; font-weight: 600; margin-bottom: 10px;
}
.verse-title {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 12px;
}
.verse-text {
  font-family: var(--font-heading);
  font-size: 17px; font-style: italic; line-height: 1.6;
  color: var(--text); margin-bottom: 20px;
}
.verse-actions { display: flex; flex-direction: column; gap: 8px; }

/* Chapter modal */
.chapter-badge {
  display: inline-block;
  padding: 4px 12px; border-radius: 100px;
  background: var(--grad-primary); color: white;
  font-size: 12px; font-weight: 600; margin-bottom: 10px;
}
.chapter-title {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.chapter-summary {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 18px;
}
.chapter-verses { display: flex; flex-direction: column; gap: 8px; }

/* Toast */
.toast {
  position: fixed; bottom: calc(var(--nav-h) + 20px); left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px; border-radius: 100px;
  background: var(--text); color: var(--bg-elev);
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  animation: toastIn 0.35s ease;
  max-width: 90%;
}
.toast.success { background: var(--success); color: white; }
.toast.error { background: var(--danger); color: white; }

/* ========== Gender picker (signup) ========== */
.gender-choices {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.gender-choice { cursor: pointer; }
.gender-choice input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.gender-radio-box {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px;
  border: 1.5px solid var(--border-soft);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text-muted);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  transition: all 0.25s ease;
}
.gender-radio-box i { font-size: 20px; }
.gender-choice input[type="radio"]:checked + .gender-radio-box {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft), var(--shadow-sm);
}
.gender-choice:hover .gender-radio-box { border-color: var(--border); color: var(--text); }

/* ========== Profile info row (gender + language) ========== */
.info-row { display: flex; flex-direction: column; gap: 4px; padding: 8px 20px; }
.info-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.info-line:last-child { border-bottom: none; }
.info-line-clickable { cursor: pointer; transition: all 0.2s ease; margin: 0 -12px; padding-left: 12px; padding-right: 12px; border-radius: 8px; }
.info-line-clickable:hover { background: var(--primary-soft); }
.info-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.info-label i { color: var(--primary); font-size: 20px; }
.info-value {
  font-size: 14px; font-weight: 500; color: var(--text);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ========== Language picker list ========== */
.language-list {
  max-height: 60vh; overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px;
  padding: 4px 2px;
}
.lang-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border-soft);
  cursor: pointer; transition: all 0.25s ease;
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  text-align: left; width: 100%;
}
.lang-option:hover { border-color: var(--primary); transform: translateX(2px); }
.lang-option.active { border-color: var(--primary); background: var(--primary-soft); }
.lang-native { font-weight: 600; font-size: 15px; }
.lang-meta { color: var(--text-muted); font-size: 12px; margin-left: 8px; }

/* Edit profile modal actions */
.edit-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 8px;
}
.edit-actions .btn-ghost { margin-top: 0; }
.edit-actions .btn-primary { width: 100%; }

/* ========== Complete Profile banner ========== */
.complete-profile-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.10));
  border: 1px solid rgba(245, 158, 11, 0.35);
  margin-bottom: 14px;
  animation: viewFadeIn 0.35s ease;
}
.cpb-icon { font-size: 26px; color: var(--primary); flex-shrink: 0; }
.cpb-body { flex: 1; min-width: 0; }
.cpb-title { font-weight: 700; color: var(--text); font-size: 14.5px; }
.cpb-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.cpb-btn { width: auto; max-width: 130px; padding: 8px 14px; font-size: 13px; margin-top: 0; }

/* ========== About / Support info cards ========== */
.info-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  margin-top: 14px;
}
.info-card-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}
.info-card-head h3 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700; color: var(--text);
}
.info-card-icon { font-size: 22px; color: var(--primary); flex-shrink: 0; }
.info-card-body {
  font-size: 13.5px; color: var(--text);
  line-height: 1.6;
  margin-bottom: 8px;
}
.info-card-body:last-of-type { margin-bottom: 0; }
.support-email {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 100px;
  background: var(--primary-soft); color: var(--primary);
  text-decoration: none; font-weight: 600; font-size: 13.5px;
  transition: all 0.2s ease;
}
.support-email:hover { background: var(--primary); color: white; }
.support-email i { font-size: 18px; }
