/* Lead Optimizer — App CSS (Light Theme) */

:root {
  --bg:      #F0F2F8;
  --bg2:     #FFFFFF;
  --bg3:     #F5F6FA;
  --bg4:     #ECEEF5;
  --border:  rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.12);
  --text:    #1A1D2E;
  --text2:   #4B5563;
  --text3:   #9CA3AF;
  --accent:  #6366F1;
  --accent2: #4F46E5;
  --accent-glow: rgba(99,102,241,0.2);
  --green:   #10B981;
  --yellow:  #F59E0B;
  --red:     #EF4444;
  --pink:    #EC4899;
  --cyan:    #06B6D4;
  --sidebar-bg: #1A1D2E;
  --sidebar-w: 240px;
  --radius:  12px;
  --radius-sm: 8px;
  --shadow:  0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.2; color: var(--text); }
a { color: var(--accent2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

/* ─── LAYOUT ────────────────────────────────── */
.app-wrapper { display: flex; min-height: 100vh; }

/* ─── SIDEBAR (dark stays) ───────────────────── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform 0.3s;
  box-shadow: 2px 0 20px rgba(0,0,0,0.1);
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #6366F1, #a855f7);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 16px; color: #fff;
  box-shadow: 0 0 16px rgba(99,102,241,0.4);
}
.logo-text { font-family: 'Syne', sans-serif; font-size: 17px; color: #fff; letter-spacing: -0.3px; }
.logo-text strong { color: #818CF8; font-weight: 800; }

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-item i { width: 18px; text-align: center; font-size: 14px; }
.nav-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-item.active {
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(168,85,247,0.15));
  color: #818CF8;
  border: 1px solid rgba(99,102,241,0.25);
  font-weight: 600;
}

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-card { flex: 1; display: flex; align-items: center; gap: 10px; overflow: hidden; }
.user-avatar {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #6366F1, #a855f7);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0; text-transform: uppercase;
}
.user-info { overflow: hidden; }
.user-name { font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-plan { font-size: 11px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 4px; }
.logout-btn {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px; color: rgba(255,255,255,0.4);
  transition: all 0.2s; text-decoration: none;
}
.logout-btn:hover { background: rgba(239,68,68,0.2); color: #EF4444; }

/* ─── MAIN CONTENT ───────────────────────────── */
.main-content { margin-left: var(--sidebar-w); flex: 1; min-height: 100vh; background: var(--bg); }
.content-inner { padding: 28px 32px; max-width: 1400px; }

/* ─── PAGE HEADER ────────────────────────────── */
.page-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}
.page-title { font-size: 24px; color: var(--text); }
.page-subtitle { font-size: 14px; color: var(--text2); margin-top: 2px; font-weight: 400; }

/* ─── CARDS ──────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.card-title { font-size: 15px; font-weight: 700; color: var(--text); }

/* ─── STATS ──────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--stat-color, var(--accent));
  border-radius: var(--radius) var(--radius) 0 0;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; font-size: 19px;
  background: var(--stat-bg, rgba(99,102,241,0.1));
  color: var(--stat-color, var(--accent)); flex-shrink: 0;
}
.stat-value { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--text); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text2); margin-top: 4px; font-weight: 500; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #6366F1, #4F46E5);
  color: #fff; box-shadow: 0 2px 10px rgba(99,102,241,0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(99,102,241,0.4); color: #fff; }
.btn-success { background: rgba(16,185,129,0.1); color: var(--green); border: 1.5px solid rgba(16,185,129,0.25); }
.btn-success:hover { background: rgba(16,185,129,0.2); color: var(--green); }
.btn-danger  { background: rgba(239,68,68,0.1);  color: var(--red);   border: 1.5px solid rgba(239,68,68,0.25); }
.btn-danger:hover  { background: rgba(239,68,68,0.2);  color: var(--red); }
.btn-ghost  { background: var(--bg3); color: var(--text2); border: 1.5px solid var(--border2); }
.btn-ghost:hover { background: var(--bg4); color: var(--text); }
.btn-sm  { padding: 6px 12px; font-size: 13px; }
.btn-icon { padding: 8px; width: 34px; height: 34px; justify-content: center; }
.btn-call { background: rgba(16,185,129,0.1); color: var(--green); border: 1.5px solid rgba(16,185,129,0.25); }
.btn-wa   { background: rgba(37,211,102,0.1); color: #25D366;    border: 1.5px solid rgba(37,211,102,0.25); }
.btn-call:hover { background: #10B981; color: #fff; }
.btn-wa:hover   { background: #25D366; color: #fff; }

/* ─── TABLE ──────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th {
  text-align: left; padding: 10px 16px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px;
  color: var(--text3); background: var(--bg3);
  border-bottom: 1.5px solid var(--border);
}
tbody td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text2); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--bg3); }
.td-name { font-weight: 700; color: var(--text) !important; }

/* ─── BADGES ─────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2px;
}
.badge-success { background: rgba(16,185,129,0.12); color: #059669; }
.badge-warning { background: rgba(245,158,11,0.12); color: #D97706; }
.badge-danger  { background: rgba(239,68,68,0.12);  color: #DC2626; }
.badge-info    { background: rgba(6,182,212,0.12);  color: #0891B2; }
.badge-purple  { background: rgba(99,102,241,0.12); color: #4F46E5; }
.badge-gray    { background: var(--bg3);             color: var(--text2); border: 1px solid var(--border2); }

.source-badge  { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.source-manual   { background: rgba(99,102,241,0.1);  color: #4F46E5; }
.source-form     { background: rgba(6,182,212,0.1);   color: #0891B2; }
.source-facebook { background: rgba(59,130,246,0.1);  color: #2563EB; }

/* ─── FORMS ──────────────────────────────────── */
.form-group { margin-bottom: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }

input[type="text"], input[type="email"], input[type="tel"],
input[type="password"], input[type="number"], input[type="date"],
input[type="url"], select, textarea {
  width: 100%; background: var(--bg3);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm); color: var(--text);
  padding: 10px 14px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; transition: all 0.2s; outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent); background: var(--bg2);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea { min-height: 88px; resize: vertical; }
select option { background: var(--bg2); color: var(--text); }
.input-group { display: flex; gap: 10px; }
.input-group > * { flex: 1; }

/* ─── MODAL ──────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 1000; display: none; place-items: center;
}
.modal-overlay.open { display: grid; }
.modal {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 26px;
  width: 90%; max-width: 580px; max-height: 88vh;
  overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}
.modal-lg { max-width: 840px; }
@keyframes modalIn {
  from { transform: scale(0.95) translateY(16px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-title { font-size: 17px; font-weight: 700; color: var(--text); }
.modal-close {
  width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 8px; background: var(--bg3); border: none;
  color: var(--text2); cursor: pointer; font-size: 15px; transition: all 0.2s;
}
.modal-close:hover { background: rgba(239,68,68,0.15); color: var(--red); }

/* ─── FILTER BAR ────────────────────────────── */
.filter-bar { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; align-items: center; }
.search-input { position: relative; flex: 1; min-width: 200px; }
.search-input i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text3); font-size: 13px; }
.search-input input { padding-left: 36px; }

/* ─── ALERT ──────────────────────────────────── */
.alert {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 18px; font-weight: 500;
}
.alert-success { background: rgba(16,185,129,0.1);  color: #059669; border: 1.5px solid rgba(16,185,129,0.2); }
.alert-error   { background: rgba(239,68,68,0.1);   color: #DC2626; border: 1.5px solid rgba(239,68,68,0.2); }
.alert-info    { background: rgba(6,182,212,0.1);   color: #0891B2; border: 1.5px solid rgba(6,182,212,0.2); }
.alert-warning { background: rgba(245,158,11,0.1);  color: #D97706; border: 1.5px solid rgba(245,158,11,0.2); }

/* ─── EMPTY STATE ────────────────────────────── */
.empty-state { text-align: center; padding: 56px 20px; color: var(--text3); }
.empty-icon {
  width: 70px; height: 70px; background: var(--bg3); border-radius: 50%;
  display: grid; place-items: center; font-size: 26px; margin: 0 auto 16px; color: var(--text3);
}
.empty-title { font-size: 17px; font-weight: 700; color: var(--text2); margin-bottom: 6px; }
.empty-desc  { font-size: 14px; color: var(--text3); margin-bottom: 20px; }

/* ─── GRID LAYOUTS ───────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ─── LEAD DETAIL ────────────────────────────── */
.lead-detail { display: grid; grid-template-columns: 1fr 340px; gap: 20px; }
.lead-info-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.lead-avatar {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #6366F1, #a855f7);
  border-radius: 50%; display: grid; place-items: center;
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.lead-name { font-size: 20px; font-weight: 800; color: var(--text); }
.lead-meta { display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
.lead-meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text2); }
.lead-meta-item i { width: 16px; color: var(--text3); }
.action-btns { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }

/* ─── TIMELINE ───────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 12px; }
.timeline-item { display: flex; gap: 10px; }
.timeline-icon {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  flex-shrink: 0; font-size: 12px; background: var(--bg3);
  color: var(--text2); border: 1px solid var(--border);
}
.timeline-content {
  flex: 1; background: var(--bg3); border-radius: var(--radius-sm);
  padding: 12px 14px; border: 1px solid var(--border);
}
.timeline-text { font-size: 14px; color: var(--text); }
.timeline-time { font-size: 11px; color: var(--text3); margin-top: 4px; }
.timeline-follow-up {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(245,158,11,0.1); color: #D97706;
  border-radius: 6px; padding: 2px 8px; font-size: 11px; font-weight: 600; margin-top: 5px;
}

/* ─── STATUS DOT ─────────────────────────────── */
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }

/* ─── SHARE LINK BOX ─────────────────────────── */
.share-link-box {
  background: var(--bg3); border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm); padding: 10px 14px;
  display: flex; align-items: center; gap: 10px; font-size: 13px;
}
.share-link-box input { flex: 1; background: transparent; border: none; color: var(--text2); font-size: 13px; }
.share-link-box input:focus { outline: none; }

/* ─── SETUP STEPS ────────────────────────────── */
.setup-steps { display: flex; flex-direction: column; gap: 14px; }
.setup-step {
  display: flex; gap: 14px; padding: 18px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
}
.step-num {
  width: 34px; height: 34px; background: linear-gradient(135deg, #6366F1, #4F46E5);
  border-radius: 50%; display: grid; place-items: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0;
}
.step-content { flex: 1; }
.step-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.step-desc  { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ─── COLOR SWATCHES ─────────────────────────── */
.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.swatch {
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s;
}
.swatch.selected { border-color: #1A1D2E; transform: scale(1.15); }
.swatch:hover { transform: scale(1.1); }

/* ─── FORM BUILDER ───────────────────────────── */
.field-builder { border: 1.5px solid var(--border2); border-radius: var(--radius); overflow: hidden; }
.field-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: var(--bg3);
  border-bottom: 1px solid var(--border); transition: background 0.2s;
}
.field-item:last-child { border-bottom: none; }
.field-item:hover { background: var(--bg4); }
.field-drag { color: var(--text3); cursor: grab; }
.field-label-edit {
  flex: 1; background: transparent; border: none;
  color: var(--text); font-size: 14px; font-family: 'DM Sans', sans-serif;
}
.field-label-edit:focus { outline: none; }

/* ─── PAGINATION ─────────────────────────────── */
.pagination { display: flex; gap: 4px; align-items: center; margin-top: 18px; flex-wrap: wrap; }
.page-btn {
  min-width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: var(--radius-sm); font-size: 13px; color: var(--text2);
  cursor: pointer; border: 1.5px solid var(--border2);
  background: var(--bg2); transition: all 0.2s; text-decoration: none;
}
.page-btn:hover { background: var(--bg3); color: var(--text); }
.page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── PLAN CARDS ─────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 18px; }
.plan-card {
  background: var(--bg2); border: 1.5px solid var(--border2);
  border-radius: var(--radius); padding: 22px;
  transition: all 0.3s; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.plan-card.featured { border-color: var(--accent); box-shadow: 0 0 20px rgba(99,102,241,0.15); }
.plan-card.featured::before {
  content: 'Popular'; position: absolute; top: 16px; right: -24px;
  background: linear-gradient(135deg, #6366F1, #4F46E5); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 32px; transform: rotate(45deg);
}
.plan-name  { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.plan-price { font-size: 30px; font-weight: 800; font-family: 'Syne', sans-serif; color: var(--accent2); }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--text2); }
.plan-features { list-style: none; margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.plan-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text2); }
.plan-features li i { color: var(--green); }

/* ─── AUTH PAGES ─────────────────────────────── */
.auth-page {
  min-height: 100vh; display: grid; place-items: center;
  background: radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(168,85,247,0.06) 0%, transparent 50%), var(--bg);
}
.auth-card {
  width: 100%; max-width: 420px; padding: 36px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 18px; box-shadow: var(--shadow-lg);
}
.auth-logo { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 28px; }
.auth-title { font-size: 22px; text-align: center; margin-bottom: 4px; color: var(--text); }
.auth-sub   { font-size: 14px; color: var(--text2); text-align: center; margin-bottom: 24px; }
.auth-footer{ text-align: center; margin-top: 20px; font-size: 13px; color: var(--text2); }

/* ─── ADMIN ──────────────────────────────────── */
.admin-page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.pill-active    { background: rgba(16,185,129,0.1);  color: #059669; }
.pill-trial     { background: rgba(245,158,11,0.1);  color: #D97706; }
.pill-expired   { background: rgba(239,68,68,0.1);   color: #DC2626; }
.pill-inactive  { background: var(--bg3);             color: var(--text2); }
.pill-pending   { background: rgba(245,158,11,0.1);  color: #D97706; }
.nav-badge {
  margin-left: auto; background: var(--red); color: #fff;
  border-radius: 20px; padding: 1px 7px; font-size: 10px; font-weight: 700;
}
.settings-section {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.settings-section-header {
  padding: 14px 20px; background: var(--bg3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px;
}
.settings-section-body { padding: 20px; }
.report-bar-wrap { margin-bottom: 14px; }
.report-bar-label { display: flex; justify-content: space-between; font-size: 13px; color: var(--text2); margin-bottom: 5px; }
.report-bar-track { height: 7px; background: var(--bg3); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.report-bar-fill  { height: 100%; border-radius: 10px; transition: width 0.6s ease; }

/* ─── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #9CA3AF; }

/* ─── MOBILE TOPBAR (hidden desktop) ─────────── */
.mobile-topbar { display: none; }
.sidebar-overlay { display: none; }
.sidebar-overlay.show { display: block; }

/* Responsive moves to mobile.css */
