/* Cost Summary Cards */
.cost-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .cost-summary {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cost-card {
  background: var(--charcoal-700, #2d2d2d);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cost-card--total {
  background: linear-gradient(
    135deg,
    rgba(212, 168, 75, 0.15),
    rgba(212, 168, 75, 0.05)
  );
  border-color: var(--gold);
}
.cost-card__label {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cost-card__value {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
}
.cost-card--total .cost-card__value {
  color: var(--gold);
  font-size: 1.5rem;
}
.cost-card__note {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
}

/* Comparison & Data Tables */
.data-table {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 75, 0.2);
}
.data-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.data-table th {
  background: var(--gold);
  color: var(--charcoal-900, #141414);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.95rem;
}
.data-table th:first-child {
  border-radius: 12px 0 0 0;
}
.data-table th:last-child {
  border-radius: 0 12px 0 0;
}
.data-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.data-table tr:nth-child(odd) td {
  background: var(--charcoal-700, #2d2d2d);
}
.data-table tr:nth-child(even) td {
  background: var(--charcoal-800, #1f1f1f);
}
.data-table tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}
.data-table tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}
.data-table td:first-child {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Outfit", sans-serif;
}
.data-table .highlight-row td {
  background: rgba(212, 168, 75, 0.12);
  color: #fff;
  font-weight: 600;
}
.data-table .highlight-row td:first-child {
  color: var(--gold);
}

/* Includes / Excludes Lists */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .includes-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.includes-list,
.excludes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.includes-list li,
.excludes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.includes-list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a84b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
}
.excludes-list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
}
.sidebar-card {
  background: var(--charcoal-700, #2d2d2d);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar-card__title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ROI Metric Cards */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .roi-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.roi-card {
  background: var(--charcoal-700, #2d2d2d);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.roi-card__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.roi-card__value {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
}
.roi-card__note {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

/* Timeline Steps */
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .timeline-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .timeline-steps {
    grid-template-columns: repeat(6, 1fr);
  }
}
.timeline-step {
  background: var(--charcoal-700, #2d2d2d);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.timeline-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal-900, #141414);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.timeline-step__title {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.timeline-step__duration {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
}

/* Financing Highlight Card */
.finance-highlight {
  background: linear-gradient(
    135deg,
    var(--charcoal-700, #2d2d2d),
    var(--charcoal-800, #1f1f1f)
  );
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(212, 168, 75, 0.25);
  margin: 2rem 0;
}
.finance-highlight__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .finance-highlight__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.finance-stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.finance-stat__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(212, 168, 75, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.finance-stat__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}
.finance-stat__title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.finance-stat__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.finance-example {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.finance-example__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.finance-example__text strong {
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
}
