/* Retail page accent theme + component styles */

:root {
  --accent-dark: #085041;
  --accent-mid: #0F6E56;
  --accent-strong: #1D9E75;
  --accent-light: #E1F5EE;
  --accent-lighter: #9FE1CB;
  --teal-dark: #085041;
  --teal-mid: #0F6E56;
  --teal-strong: #1D9E75;
  --teal-light: #E1F5EE;
  --teal-lighter: #9FE1CB;
  --gold: #FFC72C;
  --gold-hover: #FFA500;
  --gray-dark: #2C2C2A;
  --gray-mid: #5F5E5A;
  --gray-light: #F1EFE8;
}

/* Override landing.css .roles-grid default (3-col → 2-col) */
.roles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Gold CTA button */
.btn-consult {
  background: var(--gold);
  color: #000000;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  transition: background 0.15s;
}
.btn-consult:hover { background: var(--gold-hover); }

/* Cost table */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cost-table thead { background: var(--bg-secondary); }
.cost-table thead th {
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 0.5px solid var(--border);
}
.cost-table thead th:not(:first-child) { text-align: center; }
.cost-table tbody td {
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text-primary);
  border-bottom: 0.5px solid var(--border);
}
.cost-table tbody tr:last-child { border-bottom: none; }
.cost-table tbody td:not(:first-child) {
  text-align: center;
  font-family: 'SF Mono', 'Monaco', monospace;
  font-size: 13px;
  color: var(--teal-mid);
  font-weight: 500;
}
.cost-table tbody tr.total-row { background: #FFF8E1; }
.cost-table tbody tr.total-row td { font-weight: 600; }
.cost-table tbody tr.total-row td:not(:first-child) { color: #92400E; }
.table-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
  line-height: 1.5;
}

/* Qualification checklist */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 2rem 0;
}
.qual-item {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 12px;
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
}
.qual-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--teal-mid);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 1px;
}
.qual-text { font-size: 13px; color: var(--text-primary); line-height: 1.5; }
.qual-cta {
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.qual-cta p { font-size: 14px; color: var(--teal-dark); line-height: 1.6; margin: 0; }

/* Deployment timeline table */
.timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.timeline-table thead { background: var(--bg-secondary); }
.timeline-table thead th {
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 0.5px solid var(--border);
}
.timeline-table tbody td {
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text-primary);
  border-bottom: 0.5px solid var(--border);
  vertical-align: top;
}
.timeline-table tbody tr:last-child { border-bottom: none; }
.timeline-table tbody td:first-child {
  font-family: 'SF Mono', 'Monaco', monospace;
  font-weight: 600;
  color: var(--teal-mid);
  white-space: nowrap;
}
.timeline-table tbody td:nth-child(2) { font-weight: 500; }

/* Why now section */
.why-now-list { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0 3.5rem; }
.why-now-item h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.why-now-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* Contact info block */
.contact-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
  text-align: center;
}
.contact-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.contact-info a { font-size: 14px; font-weight: 500; color: var(--teal-mid); text-decoration: none; }
.contact-info a:hover { color: var(--teal-dark); text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
  .qual-grid { grid-template-columns: 1fr; }
  .cost-table, .timeline-table { font-size: 12px; }
  .cost-table thead th, .cost-table tbody td,
  .timeline-table thead th, .timeline-table tbody td { padding: 8px 10px; }
}
