* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #f5f7ff 0%, #ffffff 45%, #e9fdf2 100%);
  min-height: 100vh;
  padding: 20px;
  color: #0f172a;
}

.splash-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.landing-page {
  background: radial-gradient(circle at top, #f1f5f9 0%, #ffffff 45%, #e3f9ed 100%);
  color: #020617;
  padding: 0;
}

.landing-shell {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 32px 40px 40px;
  position: relative;
  z-index: 0;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.landing-logo {
  font-size: 22px;
  font-weight: 700;
  color: #020617;
}

.landing-nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #6b7280;
}

.landing-nav-links a {
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
}

.landing-nav-links a:hover {
  opacity: 1;
}

.landing-nav-actions {
  display: flex;
  gap: 10px;
}

.landing-login-button {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  color: #020617;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.landing-login-button:hover {
  background: #f9fafb;
  border-color: #16a34a;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.18);
  transform: translateY(-1px);
}

.landing-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: calc(100vh - 96px);
  justify-content: space-between;
}

.landing-hero {
  position: relative;
  border-radius: 32px;
  padding: 90px 40px 110px;
  background: linear-gradient(135deg, #0BA859, #16a34a 45%, #22c55e 100%);
  box-shadow: 0 32px 80px rgba(4, 120, 87, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ecfdf3;
  overflow: hidden;
}

.landing-hero-text {
  max-width: 720px;
}

.landing-hero-text h1 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.landing-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  margin: 0 auto 18px;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(187, 247, 208, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-hero-icon-inner {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #22c55e;
  position: relative;
  box-shadow: 0 10px 26px rgba(21, 128, 61, 0.7);
}

.landing-hero-icon-inner::before,
.landing-hero-icon-inner::after {
  content: '';
  position: absolute;
}

.landing-hero-icon-inner::before {
  left: 10px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ecfdf5;
  box-shadow: 14px 0 0 #ecfdf5;
}

.landing-hero-icon-inner::after {
  left: 10px;
  bottom: 9px;
  width: 20px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #bbf7d0;
  border-top: none;
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.25);
  border: 1px solid rgba(187, 247, 208, 0.9);
  color: #dcfce7;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  text-decoration: none;
}

.landing-hero-subtitle {
  font-size: 14px;
  color: #e5fdf4;
  margin-bottom: 10px;
}

.landing-hero-description {
  font-size: 15px;
  color: #d1fae5;
  margin-bottom: 28px;
}

.landing-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.landing-hero-checklist {
  margin-top: 18px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px 18px;
  font-size: 13px;
  color: #4b5563;
}

.landing-hero-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-hero-checklist .check {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
  position: relative;
}

.landing-hero-checklist .check::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 2px;
  width: 7px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.landing-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #047857;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.55);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease, color 0.2s ease;
}

.landing-primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(4, 120, 87, 0.7);
  background: #ecfdf5;
  color: #065f46;
}

.landing-hero-hint {
  font-size: 13px;
  color: #bbf7d0;
}

.landing-hero-preview {
  display: none;
}

.landing-preview-card {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  padding: 20px 20px 18px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.landing-preview-title {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 10px;
}

.landing-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

 .landing-preview-illustration {
  position: relative;
  height: 170px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, #bbf7d0 0%, #22c55e 18%, transparent 60%),
    radial-gradient(circle at 80% 0%, #bae6fd 0%, #0ea5e9 22%, transparent 65%),
    linear-gradient(135deg, #022c22, #0b1120);
  overflow: hidden;
  margin-bottom: 10px;
}

.landing-preview-illustration::before {
  content: '';
  position: absolute;
  inset: 18px 30% 12px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(248, 250, 252, 0.6);
}

.landing-preview-illustration::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: -18px;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(248, 250, 252, 0.9), rgba(148, 163, 184, 0.2));
  opacity: 0.6;
}

.landing-preview-shot {
  position: absolute;
  display: block;
  max-width: 62%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.6);
  background: #020617;
}

.preview-shot-main {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.preview-shot-left {
  bottom: 6%;
  left: -4%;
  max-width: 50%;
  z-index: 1;
}

.preview-shot-right {
  bottom: 2%;
  right: -4%;
  max-width: 50%;
  z-index: 3;
}

.landing-preview-metric .label {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 4px;
}

.landing-preview-metric .value {
  font-size: 20px;
  font-weight: 700;
  color: #020617;
}

.landing-preview-footer {
  font-size: 11px;
  color: #6b7280;
}

.landing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.landing-feature {
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 14px 40px rgba(148, 163, 184, 0.25);
}

.landing-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #a7f3d0);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.4);
  margin-bottom: 10px;
  position: relative;
}

.landing-feature-icon::before,
.landing-feature-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.feature-icon-stats::before {
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.feature-icon-routes::before {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -5px 0 rgba(255, 255, 255, 0.7), 0 5px 0 rgba(255, 255, 255, 0.7);
}

.feature-icon-progress::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.landing-feature h3 {
  font-size: 15px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 8px;
}

.landing-feature p {
  font-size: 13px;
  color: #4b5563;
}

.landing-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
}

.landing-feature-list li {
  position: relative;
  padding-left: 16px;
}

.landing-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0BA859;
}

.landing-section {
  margin-top: 56px;
}

.landing-section-header {
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.section-tag-muted {
  background: #fee2e2;
  color: #b91c1c;
}

.section-tag-green {
  background: #dcfce7;
  color: #15803d;
}

.section-tag-benefit {
  background: #bbf7d0;
  color: #065f46;
}

.landing-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 6px;
}

.landing-section-subtitle {
  font-size: 14px;
  color: #4b5563;
}

/* Problems section */

.landing-section-problems {
  margin-top: 64px;
}

.landing-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.landing-problem-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  padding: 22px 22px 20px;
}

.landing-problem-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 8px;
}

.landing-problem-card p {
  font-size: 13px;
  color: #4b5563;
}

.problem-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 16px 40px rgba(248, 113, 113, 0.5);
}

.problem-card-icon-red {
  background: linear-gradient(135deg, #fb7185, #ef4444);
}

.problem-card-icon-orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.45);
}

.problem-card-icon-yellow {
  background: linear-gradient(135deg, #facc15, #eab308);
  box-shadow: 0 16px 40px rgba(234, 179, 8, 0.4);
}

/* Solution section */

.landing-section-solution {
  margin-top: 64px;
  padding: 40px 40px 46px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ecfdf5, #e0f2fe);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.08);
}

.landing-section-solution .landing-section-title {
  color: #022c22;
}

.landing-section-solution .landing-section-subtitle {
  color: #065f46;
}

.landing-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.landing-solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 24px 22px 22px;
  color: #ecfeff;
  box-shadow: 0 22px 55px rgba(15, 118, 110, 0.65);
}

.landing-solution-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.landing-solution-card p {
  font-size: 13px;
  opacity: 0.95;
}

.solution-card-1 {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.solution-card-2 {
  background: linear-gradient(135deg, #16a34a, #0ea5e9);
}

.solution-card-3 {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.solution-card-4 {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(240, 253, 250, 0.7);
  background: rgba(15, 23, 42, 0.16);
  position: relative;
}

.solution-card-1 .solution-icon::before,
.solution-card-1 .solution-icon::after,
.solution-card-2 .solution-icon::before,
.solution-card-3 .solution-icon::before,
.solution-card-4 .solution-icon::before {
  content: '';
  position: absolute;
}

/* check icon */
.solution-card-1 .solution-icon::before {
  left: 12px;
  top: 9px;
  width: 8px;
  height: 14px;
  border-right: 2px solid #ecfdf5;
  border-bottom: 2px solid #ecfdf5;
  transform: rotate(45deg);
}

/* calendar icon */
.solution-card-2 .solution-icon::before {
  inset: 11px 10px 11px 10px;
  border-radius: 8px;
  border: 2px solid #ecfeff;
  border-top-width: 4px;
}

/* lightning icon */
.solution-card-3 .solution-icon::before {
  left: 16px;
  top: 9px;
  width: 10px;
  height: 20px;
  background: linear-gradient(180deg, #e5fffb, #a5f3fc);
  clip-path: polygon(40% 0, 100% 0, 60% 48%, 100% 48%, 0 100%, 32% 52%, 0 52%);
}

/* trend up icon */
.solution-card-4 .solution-icon::before {
  left: 11px;
  bottom: 11px;
  width: 18px;
  height: 2px;
  background: #e0f2fe;
  box-shadow: 6px -8px 0 0 #e0f2fe;
}

.solution-card-4 .solution-icon::after {
  right: 11px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #e0f2fe;
  border-top: 2px solid #e0f2fe;
  transform: rotate(45deg);
}

/* Main benefit section */

.landing-section-benefit {
  margin-top: 72px;
  padding: 44px 40px 52px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0BA859, #16a34a 45%, #22c55e 100%);
  box-shadow: 0 30px 80px rgba(4, 120, 87, 0.7);
  color: #ecfdf5;
}

.landing-section-benefit .landing-section-title {
  color: #f9fafb;
}

.landing-section-benefit .landing-section-subtitle {
  color: #d1fae5;
}

.landing-section-grid-benefit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.benefit-card {
  background: rgba(15, 118, 110, 0.15);
  border-radius: 18px;
  border: 1px solid rgba(187, 247, 208, 0.6);
  box-shadow: 0 18px 50px rgba(4, 120, 87, 0.65);
}

.benefit-card h3 {
  color: #f9fafb;
}

.benefit-card p {
  color: #e5fdf4;
}

/* Reporting section */

.landing-section-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #f9fafb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.landing-section-card-report {
  padding-top: 20px;
}

/* Planning section */

.landing-section-planning {
  margin-top: 56px;
}

.landing-planning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.landing-planning-card {
  border-radius: 24px;
  padding: 22px 22px 20px;
  color: #0f172a;
  box-shadow: 0 20px 55px rgba(129, 140, 248, 0.33);
}

.landing-planning-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.landing-planning-card p {
  font-size: 13px;
  color: #111827;
  opacity: 0.9;
}

.planning-card-1 {
  background: linear-gradient(135deg, #fee2e2, #fed7aa);
}

.planning-card-2 {
  background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
}

.planning-card-3 {
  background: linear-gradient(135deg, #fce7f3, #e9d5ff);
}

/* Protection & process sections */

.landing-section-protection {
  margin-top: 56px;
}

.landing-section-process {
  margin-top: 56px;
}

.landing-section-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: flex-start;
}

.landing-section-column {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 14px 40px rgba(148, 163, 184, 0.18);
  padding: 18px 20px 16px;
}

.landing-section-column h2 {
  font-size: 18px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 10px;
}

.landing-section-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #4b5563;
}

.landing-section-list li {
  position: relative;
  padding-left: 18px;
}

.landing-section-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0BA859;
}

.landing-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.landing-section-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 14px 40px rgba(148, 163, 184, 0.18);
  padding: 18px 18px 16px;
}

.landing-section-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 8px;
}

.landing-section-card p {
  font-size: 13px;
  color: #4b5563;
}

.landing-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.landing-step {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 14px 40px rgba(148, 163, 184, 0.18);
  padding: 18px 18px 16px;
}

.landing-step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #f9fafb;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.landing-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 6px;
}

.landing-step p {
  font-size: 13px;
  color: #4b5563;
}

.landing-footer {
  margin-top: 32px;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

@media (max-width: 768px) {
  .landing-shell {
    padding: 20px 16px 32px;
  }

  .landing-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
  }

  .landing-hero-text h1 {
    font-size: 26px;
  }
}

.splash-container {
  text-align: center;
  color: #ffffff;
}

.splash-logo {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.splash-subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.splash-spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.4);
  border-top-color: #ffffff;
  margin: 0 auto;
  animation: loading-spin 0.8s linear infinite;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.header .subtitle {
  font-size: 16px;
  color: #7f8c8d;
  font-weight: 500;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.tab {
  padding: 12px 24px;
  background: #f8f9fa;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #7f8c8d;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab.active {
  background: #0BA859;
  color: white;
}

.tab:hover:not(.active) {
  background: #DAFBED;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.stat-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 16px;
  color: #7f8c8d;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-desc {
  font-size: 14px;
  color: #95a5a6;
  font-weight: 500;
}

.content-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}

.content-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.content-desc {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 25px;
}

.regions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  counter-reset: region-counter;
}

.region-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 16px 60px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #0BA859;
  transition: all 0.3s ease;
  position: relative;
}

.region-item:hover {
  background: #e8f4fc;
  transform: translateX(5px);
}

.region-item.expanded {
  background: #e8f4fc;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.region-name {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}

.region-count {
  font-size: 36px;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1;
}

.region-count.zero {
  color: #95a5a6;
}

.region-item::before {
  content: counter(region-counter);
  counter-increment: region-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0BA859;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

body.role-user .region-item::before {
  content: '';
}

body.role-user .region-toggle {
  display: none;
}

.region-progress {
  margin-top: 8px;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #f1f3f5;
  overflow: hidden;
}

.region-progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #DAFBED 0%, #20CC6D 40%, #0BA859 100%);
  transition: width 0.3s ease;
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 10px 14px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.progress-date {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

.progress-count {
  font-size: 14px;
  color: #7f8c8d;
}

.progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #f1f3f5;
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #DAFBED 0%, #20CC6D 40%, #0BA859 100%);
  transition: width 0.3s ease;
}

.progress-chart-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-chart-svg {
  width: 100%;
  height: 400px;
  background: #ffffff;
}

.progress-axis {
  stroke: #dcdde1;
  stroke-width: 1;
}

.progress-line {
  fill: none;
}

.progress-point {
  stroke: #ffffff;
  stroke-width: 1;
}

.progress-axis-label {
  font-size: 11px;
  fill: #7f8c8d;
}

.progress-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.progress-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #2c3e50;
}

.progress-legend-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.progress-bar-chart-svg {
  width: 100%;
  height: 600px;
  background: #ffffff;
}

.progress-bar-chart-axis {
  stroke: #555555;
  stroke-width: 1;
}

.progress-bar-chart-rect {
  fill: #16a34a;
}

.progress-bar-chart-value {
  font-size: 13px;
  fill: #2c3e50;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-stretch: condensed;
}

.progress-bar-chart-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  fill: #2c3e50;
}

.progress-bar-chart-axis-label {
  font-size: 11px;
  fill: #7f8c8d;
}

.region-bars-wrapper {
  margin-top: 20px;
}

.region-bars-chart {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  min-height: 200px;
  padding: 10px 10px 0 10px;
}

.region-bar-item {
  flex: 1 1 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.region-bar-rect {
  width: 26px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #20CC6D 0%, #0BA859 60%, #087E43 100%);
  transition: height 0.3s ease;
}

.region-bar-value {
  margin-top: 4px;
  font-size: 12px;
  color: #2c3e50;
  font-weight: 600;
}

.region-bar-label {
  margin-top: 6px;
  font-size: 11px;
  color: #7f8c8d;
  transform: rotate(-45deg);
  transform-origin: top right;
  white-space: nowrap;
}

.progress-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
}

.progress-filter-button {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #DAFBED;
  background: #f8f9fa;
  font-size: 13px;
  font-weight: 600;
  color: #087E43;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.progress-range-input {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #DAFBED;
  font-size: 13px;
  color: #2c3e50;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(32, 204, 109, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.progress-filters-label,
.progress-filters-separator {
  font-size: 13px;
  color: #2c3e50;
  font-weight: 600;
}

.progress-filter-button.active {
  background: #0BA859;
  color: #ffffff;
  border-color: #a7f3d0;
}

.progress-filter-button:hover:not(.active) {
  background: #e6fdf4;
  color: #087E43;
}

.progress-range-input:focus {
  outline: none;
  border-color: #0BA859;
  box-shadow: 0 0 0 1px rgba(11, 168, 89, 0.35);
  background: #f7fef9;
}

.header-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.region-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 0;
  border-left: 4px solid #20CC6D;
  overflow: hidden;
  transition: all 0.3s ease;
}

.region-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.region-card.expanded {
  transform: translateY(0);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.region-header {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.region-toggle {
  font-size: 14px;
  color: #7f8c8d;
  transition: transform 0.3s ease;
}

.region-card.expanded .region-toggle {
  transform: rotate(180deg);
}

.region-schedule {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.region-card.expanded .region-schedule {
  max-height: 1000px;
}

.day-schedule {
  padding: 15px 20px;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
  cursor: default;
}

.day-schedule:hover {
  background: #f8f9fa;
}

.day-schedule:last-child {
  border-bottom: none;
}

.day-header {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.district-name {
  color: #7f8c8d;
  font-size: 14px;
  line-height: 1.4;
}

.day-count {
  background: #20CC6D;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.footer {
  text-align: center;
  color: white;
  padding: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.last-update {
  background: rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  color: #087E43;
}

.loading::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid rgba(11, 168, 89, 0.2);
  border-top-color: #0BA859;
  animation: loading-spin 0.8s linear infinite;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.progress-empty {
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #7f8c8d;
}

.region-visits-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.region-visits-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.region-visits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.region-visit-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.region-visit-field {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.region-visit-label {
  font-size: 13px;
  font-weight: 600;
  color: #7f8c8d;
}

.region-visit-value {
  font-size: 13px;
  color: #2c3e50;
  text-align: right;
}

.region-visit-comment {
  margin-top: 6px;
}

.region-visit-comment-value {
  font-style: italic;
}

.empty-state {
  padding: 40px 20px;
  text-align: center;
  color: #7f8c8d;
}

.empty-state-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin: 0 auto 12px;
  background: rgba(11, 168, 89, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #0BA859;
}

.empty-state-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
}

.empty-state-subtitle {
  font-size: 13px;
  color: #7f8c8d;
}

.hidden {
  display: none;
}

.debug-info {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  font-size: 12px;
  color: #856404;
}

.region-card:nth-child(1) { border-left-color: #e74c3c; }
.region-card:nth-child(2) { border-left-color: #3498db; }
.region-card:nth-child(3) { border-left-color: #2ecc71; }
.region-card:nth-child(4) { border-left-color: #f39c12; }
.region-card:nth-child(5) { border-left-color: #9b59b6; }
.region-card:nth-child(6) { border-left-color: #1abc9c; }
.region-card:nth-child(7) { border-left-color: #d35400; }
.region-card:nth-child(8) { border-left-color: #c0392b; }
.region-card:nth-child(9) { border-left-color: #16a085; }
.region-card:nth-child(10) { border-left-color: #8e44ad; }

@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 0 4px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 50px 15px 30px;
  }

  .header h1 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }

  .stat-number {
    font-size: 36px;
  }

  .region-count {
    font-size: 28px;
  }

  .tabs {
    flex-direction: column;
  }

  .header-actions {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .header-actions .admin-button,
  .header-actions .logout-button,
  .header-actions .change-password-button {
    flex: 0 0 auto;
    text-align: center;
    font-size: 12px;
    padding: 6px 10px;
  }

  .content-section {
    padding: 20px 15px;
  }

  .regions-list {
    gap: 10px;
  }

  .region-item {
    padding: 12px 14px 12px 60px;
  }

  .region-name {
    font-size: 16px;
  }

  .region-count {
    font-size: 24px;
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }

  .region-header {
    padding: 15px;
  }

  .day-schedule {
    padding: 12px 15px;
  }

  .progress-filters {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .progress-range-input {
    width: 100%;
  }

  .progress-filters-label,
  .progress-filters-separator {
    margin-bottom: 4px;
  }

  .admin-page .header {
    padding-top: 50px;
  }

  .admin-back-button {
    position: static;
    margin-bottom: 10px;
  }

  .admin-table {
    font-size: 12px;
  }

  .admin-table th,
  .admin-table td {
    padding: 6px 8px;
  }
}

/* Login page */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at top, #e2f3ff 0%, #f9fafb 45%, #e3f9ed 100%);
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.login-card-left {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 360px;
  margin: 0 auto;
}

.login-lock-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #ecfdf3;
  border: 1px solid rgba(34, 197, 94, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.login-lock-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.login-card-right {
  padding: 24px;
  background: linear-gradient(145deg, #0BA859, #22c55e);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.login-logo-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #bbf7d0, #0BA859);
  box-shadow: 0 8px 18px rgba(11, 168, 89, 0.5);
}

.login-logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.login-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

.login-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #020617;
  margin-bottom: 4px;
  text-align: center;
}

.login-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  text-align: center;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.login-input {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  background: #f9fafb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.login-input.error {
  border-color: #dc2626;
  background: #fef2f2;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15);
}

.login-input.success {
  border-color: #16a34a;
  background: #ecfdf3;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.25);
}

.login-input:focus {
  outline: none;
  border-color: #0BA859;
  box-shadow: 0 0 0 1px rgba(11, 168, 89, 0.35);
  background: #ffffff;
}

.login-button {
  margin-top: 16px;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.login-button:hover {
  background: linear-gradient(135deg, #16a34a, #16a34a);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.6);
  transform: translateY(-1px);
}

.login-button:disabled,
.login-button.loading {
  opacity: 0.9;
  cursor: default;
}

.login-button.success {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.login-button.error {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.45);
  animation: login-shake 0.25s ease;
}

@keyframes login-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-4px);
  }
  40%, 80% {
    transform: translateX(4px);
  }
}

.login-error {
  display: none;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fdecea;
  color: #c0392b;
  font-size: 13px;
}

.login-error.visible {
  display: block;
}

.login-error.success {
  background: #ecfdf3;
  color: #166534;
}

.login-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.45) 0, transparent 55%),
    linear-gradient(145deg, #022c22, #0b1120);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.login-illustration-blob {
  position: absolute;
  inset: -40% -10% 5%;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.6), transparent 55%),
    radial-gradient(circle at 110% 0%, rgba(59, 130, 246, 0.45), transparent 55%);
  opacity: 0.9;
}

.login-illustration-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 260px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.96);
  padding: 16px 18px 14px;
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.login-illustration-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.7);
  color: #bbf7d0;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.login-illustration-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.login-illustration-label {
  font-size: 12px;
  color: #9ca3af;
}

.login-illustration-value {
  font-size: 24px;
  font-weight: 800;
  color: #f9fafb;
}

.login-illustration-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 10px;
}

.login-illustration-bar {
  flex: 1 1 0;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 45%, #0f766e 100%);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.6);
  opacity: 0.85;
}

.login-illustration-bar:nth-child(2) {
  height: 36px;
}

.login-illustration-bar:nth-child(3) {
  height: 50px;
}

.login-illustration-caption {
  font-size: 11px;
  color: #9ca3af;
}

@media (max-width: 900px) {
  .login-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .login-card-left {
    padding: 24px 22px;
  }

  .login-card-right {
    display: none;
  }

  .login-page {
    padding: 16px;
  }
}

.logout-button {
  padding: 6px 12px;
  border-radius: 16px;
  border: none;
  background: #e74c3c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.logout-button:hover {
  background: #c0392b;
}

.admin-button {
  padding: 6px 12px;
  border-radius: 16px;
  border: none;
  background: #20CC6D;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
}

.admin-button:hover {
  background: #0BA859;
}

.change-password-button {
  min-width: 120px;
}

.admin-back-button {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 6px 12px;
  border-radius: 16px;
  border: none;
  background: #0BA859;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.admin-back-button:hover {
  background: #087E43;
}

.admin-delete-button {
  padding: 4px 10px;
  border-radius: 6px;
  border: none;
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.admin-delete-button:hover {
  background: #c0392b;
}

.admin-page {
  min-height: 100vh;
}

.admin-table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e9ecef;
  text-align: left;
}

.admin-table th {
  font-weight: 600;
  color: #2c3e50;
  background: #f8f9fa;
}

.admin-message {
  margin-top: 10px;
  font-size: 13px;
}

.admin-message.error {
  color: #c0392b;
}

.admin-message.success {
  color: #27ae60;
}

.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.hidden {
  display: none;
}

.modal {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-top: 4px solid #0BA859;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.modal-text {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.modal-username {
  font-weight: 600;
  color: #0BA859;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-button {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.modal-button.secondary {
  background: #DAFBED;
  color: #087E43;
}

.modal-button.secondary:hover {
  background: #c4f4df;
}

.modal-button.danger {
  background: #e74c3c;
  color: #ffffff;
}

.modal-button.danger:hover {
  background: #c0392b;
}
