/* Main content layout */
.costs-content-wrapper {
  display: flex;
  gap: 40px;
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 120px;
  margin-top: 20px;
}

.costs-breakdown-section,
.costs-forecast-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Detailed Cost Breakdown */
.costs-breakdown-section {
  animation: costs-slideInLeft 0.8s ease-out forwards;
  opacity: 0;
}

.costs-breakdown-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(16, 185, 129, 0.1);
  height: fit-content;
}

.costs-breakdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.costs-breakdown-icon {
  font-size: 2em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #34d399);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.costs-breakdown-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--heading-color, #1e3a8a);
}

.costs-total-amount {
  font-size: 2.8em;
  font-weight: 700;
  color: #10b981;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1;
}

/* Cost Cards Grid */
.costs-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 35px;
}

.cost-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.95)
  );
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cost-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.cost-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #34d399);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cost-card:hover::before {
  opacity: 1;
}

.cost-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cost-card-icon {
  font-size: 1.8em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(52, 211, 153, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.cost-card-title {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--heading-color, #1e3a8a);
  margin: 0;
}

.cost-card-calculation {
  margin-bottom: 20px;
}

.cost-formula {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  justify-content: center;
}

.cost-hours {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 1.1em;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(59, 130, 246, 0.3);
}

.cost-multiply {
  font-size: 1.4em;
  color: #059669;
  font-weight: 800;
  margin: 0 6px;
}

.cost-rate {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 1.1em;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.3);
}

.cost-components {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.cost-component {
  background: rgba(249, 250, 251, 0.9);
  color: #6b7280;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.85em;
  font-weight: 600;
  border: 1px solid rgba(209, 213, 219, 0.6);
  white-space: nowrap;
}

.cost-card-total {
  font-size: 1.6em;
  font-weight: 800;
  color: #10b981;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(52, 211, 153, 0.1)
  );
  padding: 12px 20px;
  border-radius: 16px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  margin-top: 12px;
}

/* Compact Total Summary */
.costs-total-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08),
    rgba(52, 211, 153, 0.08)
  );
  border-radius: 16px;
  padding: 20px 24px;
  border-left: 6px solid #10b981;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
  margin-top: 20px;
}

.costs-total-label {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--heading-color, #1e3a8a);
  display: flex;
  align-items: center;
  gap: 12px;
}

.costs-total-amount-final {
  font-size: 1.5em;
  font-weight: 800;
  color: #10b981;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 12px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.cost-breakdown-horizontal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95em;
  font-weight: 600;
  flex-wrap: wrap;
  position: relative;
}

.cost-breakdown-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  font-weight: 600;
}

.cost-hours {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.9em;
  font-weight: 700;
  min-width: 55px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.cost-multiply {
  font-size: 1.2em;
  color: #059669;
  font-weight: 800;
  margin: 0 3px;
}

.cost-equals {
  font-size: 1.2em;
  color: #d97706;
  font-weight: 800;
  margin: 0 4px;
}

.cost-rate {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.9em;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.cost-components-inline {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-left: 5px;
  padding: 4px 10px;
  background: rgba(249, 250, 251, 0.7);
  border-radius: 14px;
  border: 1px solid rgba(209, 213, 219, 0.3);
}

.cost-components {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-left: 20px;
}

.cost-component {
  background: linear-gradient(
    135deg,
    rgba(249, 250, 251, 0.9),
    rgba(243, 244, 246, 0.9)
  );
  color: #374151;
  padding: 3px 7px;
  border-radius: 10px;
  font-size: 0.8em;
  font-weight: 600;
  border: 1px solid rgba(209, 213, 219, 0.4);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cost-plus {
  color: #059669;
  font-weight: 700;
  font-size: 0.85em;
  margin: 0 2px;
}

.cost-plus {
  color: #059669;
  font-weight: 700;
  font-size: 0.75em;
  margin: 0 1px;
}

/* Old summary line styles removed - using new compact layout */

/* ROI Forecast Section */
.costs-forecast-section {
  animation: costs-slideInRight 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.costs-forecast-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(59, 130, 246, 0.1);
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.costs-forecast-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
  position: relative;
}

.costs-forecast-icon {
  font-size: 2em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.costs-forecast-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--heading-color, #1e3a8a);
}

.costs-forecast-badge {
  position: absolute;
  top: -5px;
  right: -20px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  font-size: 0.7em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* ROI Grid Layout - Above timeline */
.costs-roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

/* Forecast Timeline - Below grid */
.costs-forecast-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(147, 197, 253, 0.05)
  );
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

/* ROI Calculation - Better spacing and prominent result */
.costs-roi-calculation {
  background: rgba(16, 185, 129, 0.08);
  border-radius: 14px;
  padding: 18px;
  border: 1.5px solid rgba(16, 185, 129, 0.2);
}

.costs-roi-title {
  font-size: 1em;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 12px;
  text-align: center;
}

.costs-roi-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.costs-roi-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.costs-roi-item:last-child {
  border-bottom: none;
}

.costs-roi-label {
  font-size: 0.85em;
  color: #374151;
  font-weight: 500;
}

.costs-roi-value {
  font-size: 0.9em;
  font-weight: 700;
  color: #10b981;
}

.costs-roi-break-even {
  margin-top: 12px;
  padding: 16px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15),
    rgba(34, 197, 94, 0.15)
  );
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.costs-roi-formula {
  font-size: 1em;
  font-weight: 700;
  color: #065f46;
  display: block;
  margin-bottom: 4px;
}

.costs-roi-result {
  font-size: 1.1em;
  font-weight: 800;
  color: #047857;
  display: block;
}

.costs-forecast-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
  padding: 5px;
}

.costs-forecast-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.costs-investment-dot {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.costs-breakeven-dot {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.costs-profit-dot {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.costs-forecast-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.costs-forecast-label {
  font-size: 0.8em;
  color: var(--secondary-color, #64748b);
  font-weight: 500;
}

.costs-forecast-value {
  font-size: 0.95em;
  font-weight: 600;
  color: var(--heading-color, #1e3a8a);
}

.costs-forecast-desc {
  font-size: 0.7em;
  color: var(--text-color, #64748b);
  font-style: italic;
}

.costs-forecast-arrow {
  font-size: 1.5em;
  color: #3b82f6;
  font-weight: 600;
}

/* Assumptions - Updated for grid layout */
.costs-assumptions {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.08),
    rgba(129, 140, 248, 0.08)
  );
  border-radius: 14px;
  padding: 20px;
  border: 1.5px solid rgba(79, 70, 229, 0.15);
  position: relative;
  overflow: hidden;
}

.costs-assumptions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #818cf8, #c7d2fe);
  border-radius: 14px 14px 0 0;
}

.costs-assumptions-title {
  font-size: 1.1em;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.costs-assumptions-title::before {
  content: "📝";
  font-size: 1.1em;
}

.costs-assumptions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.costs-assumptions-list li {
  font-size: 0.9em;
  color: #475569;
  line-height: 1.4;
  padding: 8px 0;
  position: relative;
  padding-left: 28px;
  transition: all 0.2s ease;
}

.costs-assumptions-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  font-weight: bold;
}

.costs-assumptions-list li:hover {
  color: #334155;
  transform: translateX(2px);
}

.costs-assumptions-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  font-weight: bold;
}

.costs-assumptions-list li:hover {
  color: #334155;
  transform: translateX(2px);
}

/* Benefits Section - Icon Grid */
.costs-benefits-section {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  animation: costs-fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.costs-benefits-title {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--heading-color, #1e3a8a);
  margin-bottom: 15px;
}

.costs-benefits-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.costs-benefit-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 80px;
}

.costs-benefit-icon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.costs-benefit-large-icon {
  font-size: 2.2em;
  margin-bottom: 5px;
}

.costs-benefit-icon-label {
  font-size: 0.75em;
  font-weight: 500;
  color: var(--text-color, #334155);
  text-align: center;
  line-height: 1.2;
}

/* Bottom Summary */
.costs-summary {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  animation: costs-fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 0;
  max-width: 90%;
}

.costs-summary-icon {
  font-size: 1.3em;
}

.costs-summary-text {
  font-size: 0.9em;
  line-height: 1.3;
  font-weight: 500;
}

/* ROI Calculation Styles - Compact */
.costs-roi-calculation {
  margin: 0;
  padding: 20px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  flex-direction: column;
}

.costs-roi-title {
  font-size: 1em;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 10px;
  text-align: center;
}

.costs-roi-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.costs-roi-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.costs-roi-item:last-child {
  border-bottom: none;
}

.costs-roi-label {
  font-size: 0.85em;
  color: #374151;
  font-weight: 500;
}

.costs-roi-value {
  font-size: 0.9em;
  font-weight: 600;
  color: #10b981;
}

.costs-roi-break-even {
  margin-top: 20px;
  padding: 12px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.costs-roi-calculation-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.costs-roi-formula {
  font-size: 0.8em;
  color: #6b7280;
  font-family: "Courier New", monospace;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.costs-roi-result {
  font-size: 1em;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  padding: 8px 12px;
  border-radius: 6px;
  border: 2px solid rgba(16, 185, 129, 0.4);
}

/* Inline assumptions */
.costs-assumptions-inline {
  margin-top: 10px;
  text-align: center;
}

.costs-assumptions-note {
  font-size: 0.7em;
  color: #6b7280;
  font-style: italic;
  background: rgba(59, 130, 246, 0.06);
  padding: 6px 12px;
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  display: inline-block;
}

/* Compact assumptions style between timeline and ROI */
.costs-assumptions-compact {
  margin: 15px 0;
  padding: 12px 15px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.costs-assumptions-compact .costs-assumptions-title {
  font-size: 0.85em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.costs-assumptions-compact .costs-assumptions-list {
  gap: 2px;
}

.costs-assumptions-compact .costs-assumption-item {
  font-size: 0.75em;
  line-height: 1.2;
}

/* Savings Badges */
.costs-savings-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.costs-saving-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(52, 211, 153, 0.08)
  );
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 0.75em;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: fit-content;
}

.costs-saving-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15),
    rgba(52, 211, 153, 0.12)
  );
}

.costs-badge-icon {
  font-size: 1.1em;
  filter: grayscale(0);
}

.costs-badge-text {
  white-space: nowrap;
  line-height: 1;
}

/* Rate composition breakdown */
.costs-rate-composition {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(147, 197, 253, 0.05)
  );
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.costs-rate-composition-title {
  font-size: 1em;
  font-weight: 600;
  color: var(--heading-color, #1e3a8a);
  margin-bottom: 12px;
  text-align: center;
}

.costs-rate-composition-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.costs-rate-composition-list li {
  font-size: 0.85em;
  color: var(--text-color, #475569);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  border-left: 3px solid #3b82f6;
  transition: all 0.2s ease;
}

.costs-rate-composition-list li:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(2px);
}

/* Animations */
@keyframes costs-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes costs-slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes costs-fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Removed shimmer and pulse animations */

/* Responsive adjustments */
@media (max-width: 1200px) {
  .costs-content-wrapper {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 140px;
  }

  .costs-benefits-icons {
    flex-wrap: wrap;
    gap: 20px;
  }

  .costs-benefits-section {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 25px;
  }

  .costs-summary {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 15px;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .costs-breakdown-card,
  .costs-forecast-card {
    padding: 20px;
  }

  .costs-total-amount {
    font-size: 2.4em;
  }

  .costs-forecast-timeline {
    flex-direction: column;
    gap: 15px;
  }

  .costs-forecast-arrow {
    transform: rotate(90deg);
  }

  .costs-benefits-icons {
    gap: 15px;
  }

  .costs-benefit-icon-item {
    min-width: 70px;
    padding: 12px;
  }

  .costs-summary {
    flex-direction: column;
    gap: 8px;
    padding: 10px 20px;
  }

  /* ROI Grid responsive */
  .costs-roi-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Savings badges responsive */
  .costs-savings-badges {
    gap: 8px;
  }

  .costs-saving-badge {
    font-size: 0.7em;
    padding: 6px 10px;
  }
}
