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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

:root {
  --green-dark: #1a4731;
  --green-mid: #2d7a4f;
  --green-light: #4caf50;
  --green-pale: #e8f5e9;
  --amber: #d97706;
  --amber-pale: #fffbeb;
  --red: #dc2626;
  --red-pale: #fef2f2;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --bg: #f4f7f4;
  --card: #ffffff;
  --border: #e5e7eb;
  --sidebar-w: 220px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* ---- LAYOUT ---- */

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

.sidebar {
  width: var(--sidebar-w);
  background: var(--green-dark);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--green-dark);
  flex-shrink: 0;
}

.logo-text strong {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.75rem;
  opacity: 0.7;
}

.nav-list {
  list-style: none;
  padding: 0.75rem 0;
  flex: 1;
}

.nav-list li + li { margin-top: 2px; }

.nav-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  text-align: left;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  border-radius: 6px;
  margin: 0 0.5rem;
  width: calc(100% - 1rem);
  transition: background 0.15s, color 0.15s;
  touch-action: manipulation;
}

.nav-btn:focus-visible {
  outline: 2px solid #86efac;
  outline-offset: 2px;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav-btn.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
}

.nav-btn-chat {
  color: #86efac;
}

.nav-btn-chat.active, .nav-btn-chat:hover {
  color: #fff;
  background: rgba(134,239,172,0.2);
}

.nav-group-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 1rem 1.5rem 0.25rem;
  margin-top: 0.25rem;
}

.nav-list li + .nav-group-label { margin-top: 0.5rem; }

.nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.5rem 1rem;
}

.content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
}

/* ---- SECTIONS ---- */

.section {
  display: none;
  padding: 2rem;
  max-width: 1100px;
}

.section.active {
  display: block;
}

.section-header {
  margin-bottom: 1.75rem;
}

.section-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-dark);
}

.section-header .subtitle {
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-size: 1rem;
}

/* ---- CARDS ---- */

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.chart-card {
  min-height: 300px;
}

.chart-card canvas {
  max-height: 280px;
}

/* ---- STAT CARDS ---- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: var(--card);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-card .stat-sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ---- COLOURS ---- */

.green { color: var(--green-mid); }
.red { color: var(--red); }
.amber { color: var(--amber); }

/* ---- CHECKLIST ---- */

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* ---- DATA TABLE ---- */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--border);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.data-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.data-table tr.total-row td {
  font-weight: 700;
  border-top: 2px solid var(--border);
  border-bottom: none;
  padding-top: 0.75rem;
}

.table-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ---- SCENARIOS ---- */

.scenario {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.scenario:last-child { border-bottom: none; }

.scenario-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.scenario-amount {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.scenario-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ---- FLOW DIAGRAM ---- */

.flow-diagram {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.flow-node {
  background: var(--green-pale);
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: var(--green-dark);
}

.flow-node span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.flow-node.primary {
  background: var(--amber-pale);
  border-color: #fde68a;
  color: #92400e;
}

.flow-node.secondary {
  background: var(--green-pale);
}

.flow-node.muted {
  background: #f3f4f6;
  border-color: var(--border);
  color: var(--text-muted);
}

.flow-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.flow-branches {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.flow-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ---- STAT LIST ---- */

.stat-list .stat-row {
  display: grid;
  grid-template-columns: minmax(85px, 36%) 1fr;
  align-items: start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.stat-list .stat-row:last-child { border-bottom: none; }

.stat-list .stat-row span { color: var(--text-muted); }

.stat-list .stat-row strong { text-align: right; }

.stat-list p {
  margin-bottom: 0.75rem;
}

/* ---- ROADMAP ---- */

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.roadmap-item {
  display: grid;
  grid-template-columns: 80px 120px 1fr;
  gap: 1rem;
  align-items: start;
}

.roadmap-phase {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-mid);
  padding-top: 1.5rem;
}

.roadmap-timeline {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
}

.roadmap-content h3 { margin-bottom: 0.75rem; }

/* ---- RISK CARDS ---- */

.risk-card {
  border-left: 4px solid transparent;
}

.risk-card p {
  margin-bottom: 0.5rem;
}

.risk-high { border-left-color: var(--red); }
.risk-medium { border-left-color: var(--amber); }
.risk-low { border-left-color: var(--green-light); }

.risk-level {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.risk-high .risk-level { color: var(--red); }
.risk-medium .risk-level { color: var(--amber); }
.risk-low .risk-level { color: var(--green-mid); }

.risk-action {
  font-size: 0.8rem;
  color: var(--green-mid);
  font-style: italic;
  margin-top: 0.5rem;
}

.verdict-card {
  background: var(--green-pale);
  border-color: #c8e6c9;
  margin-top: 1rem;
}

.verdict-card h3 { color: var(--green-dark); }
.verdict-card p { color: var(--green-dark); opacity: 0.85; }

/* ---- NOTES & CHALLENGES INPUT ---- */

.input-card {
  margin-bottom: 1rem;
}

.input-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
  background: #fafafa;
}

.input-card textarea:focus { outline: none; }

.input-card textarea:focus-visible {
  border-color: var(--green-mid);
  background: #fff;
  outline: 2px solid var(--green-mid);
  outline-offset: 0;
}

.btn-primary {
  margin-top: 0.75rem;
  background: var(--green-mid);
  color: #fff;
  touch-action: manipulation;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--green-dark); }

.btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

/* ---- NOTE ITEMS ---- */

.note-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.note-text {
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-wrap;
  flex: 1;
}

.note-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.note-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-delete {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-delete:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ---- CHALLENGE ITEMS ---- */

.challenge-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}

.challenge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.challenge-header .note-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.challenge-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.status-open {
  background: var(--red-pale);
  color: var(--red);
}

.status-addressed {
  background: var(--green-pale);
  color: var(--green-mid);
}

.challenge-text {
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-wrap;
  margin-bottom: 0.5rem;
}

.challenge-response {
  background: var(--green-pale);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--green-dark);
  line-height: 1.5;
  white-space: pre-wrap;
}

.response-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-mid);
  margin-bottom: 0.25rem;
}

.inline-response {
  margin-top: 0.75rem;
}

.inline-response textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  resize: vertical;
  outline: none;
}

.inline-response textarea:focus-visible {
  border-color: var(--green-mid);
  outline: 2px solid var(--green-mid);
  outline-offset: 0;
}

.btn-secondary {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}

.btn-success {
  background: var(--green-mid);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-success:hover { background: var(--green-dark); }

/* ---- CHAT ---- */

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.suggestion-btn {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  touch-action: manipulation;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.suggestion-btn:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}

.chat-window {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  min-height: 300px;
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  display: flex;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message.assistant {
  justify-content: flex-start;
}

.message-bubble {
  max-width: 75%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.chat-message.user .message-bubble {
  background: var(--green-mid);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-message.assistant .message-bubble {
  background: #f3f4f6;
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.chat-message.loading .message-bubble {
  background: #f3f4f6;
  color: var(--text-muted);
  font-style: italic;
}

.chat-input-area {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.chat-input-area textarea {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  resize: none;
  outline: none;
  transition: border-color 0.15s;
}

.chat-input-area textarea:focus-visible {
  border-color: var(--green-mid);
  outline: 2px solid var(--green-mid);
  outline-offset: 0;
}

/* ---- TIMELINE ---- */

.deadline-banner { margin-bottom: 1.5rem; }

.deadline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.deadline-item {
  border-radius: 8px;
  padding: 0.85rem 1rem;
  border-left: 4px solid transparent;
}

.deadline-red   { background: var(--red-pale);  border-left-color: var(--red); }
.deadline-amber { background: var(--amber-pale); border-left-color: var(--amber); }
.deadline-green { background: var(--green-pale); border-left-color: var(--green-light); }

.deadline-date  { font-weight: 700; font-size: 0.95rem; }
.deadline-label { font-size: 0.82rem; margin-top: 0.2rem; }
.deadline-cost  { font-size: 0.75rem; margin-top: 0.2rem; opacity: 0.75; font-style: italic; }

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.25rem;
}

.timeline-marker {
  position: absolute;
  left: -3rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--green-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  z-index: 1;
  border: 2px solid var(--bg);
}

.timeline-marker.now  { background: var(--green-dark); font-size: 0.6rem; }
.timeline-marker.warn { background: var(--red); font-size: 1rem; }

.timeline-period {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.timeline-note {
  font-size: 0.8rem;
  color: var(--amber);
  margin-top: 0.75rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .timeline { padding-left: 2.5rem; }
  .timeline-marker { left: -2.5rem; width: 1.8rem; height: 1.8rem; }
  .deadline-grid { grid-template-columns: 1fr; }
}

/* ---- SCREEN READER ONLY ---- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.empty-state {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .app {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .sidebar-header {
    padding: 0.75rem 1rem;
  }

  .nav-list {
    display: flex;
    flex-wrap: wrap;
    flex: none;
    align-content: flex-start;
    padding: 0.4rem 0.5rem;
    gap: 3px;
  }

  .nav-divider {
    display: block;
    flex: 0 0 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 2px 0;
  }

  .nav-group-label { display: none; }

  .nav-btn {
    margin: 0;
    width: auto;
    white-space: nowrap;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 5px;
  }

  .content { margin-left: 0; }

  .section { padding: 1rem; }

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

  .stat-grid { grid-template-columns: repeat(2, 1fr); }

  .data-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .roadmap-item {
    grid-template-columns: 1fr;
  }

  .roadmap-phase, .roadmap-timeline {
    padding-top: 0;
    display: inline;
  }

  .roadmap-phase::after { content: ' — '; }

  .flow-diagram { flex-direction: column; align-items: flex-start; }
  .flow-arrow { transform: rotate(90deg); }

  .message-bubble { max-width: 90%; }
}

/* Installer cards */
.installer-card { display: flex; flex-direction: column; gap: 0.5rem; }

.installer-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

.installer-name { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }

.installer-status { font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 999px; }

.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #d1fae5; color: #065f46; }
.status-ruled-out { background: #fee2e2; color: #991b1b; }

.installer-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; }

.installer-body { font-size: 0.9rem; }

.installer-contact { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: auto; }

.checklist .done { color: var(--text-muted); text-decoration: line-through; }
.checklist .done::before { content: '✓'; color: var(--green-mid); margin-right: 0.4rem; }

/* ---- COUNTDOWN ---- */

.countdown-card {
  border-left: 4px solid var(--green-light);
}

.countdown-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
}

.countdown-milestone {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--green-pale);
  border-radius: 8px;
  transition: transform 0.15s;
}

.countdown-milestone:hover {
  transform: translateX(4px);
}

.countdown-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.countdown-detail {
  flex: 1;
}

.countdown-date {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-dark);
}

.countdown-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.countdown-days {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .countdown-milestone {
    padding: 0.6rem 0.75rem;
  }
}
