/* ============================================================
   SARGAWATT – Page /sargajet/reduction-couts
   Extends styles.css + sargasses.css
   ROI / cost-reduction page for the SargaJet® tunnel
   ============================================================ */

/* ---------- Hero note ---------- */
.hero-note {
  margin-top: 18px;
  font-size: 13px; color: var(--gray); line-height: 1.55;
  max-width: 520px;
  display: flex; gap: 8px; align-items: flex-start;
}
.hero-note svg { flex: none; width: 15px; height: 15px; color: var(--teal); margin-top: 1px; }

/* ============================================================
   COST DRIVERS – 5 short cards
   ============================================================ */
.cost-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.cost-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cost-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.cost-card .cc-ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--teal-tint); color: var(--teal-700);
  display: grid; place-items: center; margin-bottom: 16px;
}
.cost-card .cc-ico svg { width: 22px; height: 22px; }
.cost-card h3 { font-size: 16.5px; font-family: var(--font-display); font-weight: 600; line-height: 1.18; }
.cost-card p { margin-top: 9px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   BEFORE / AFTER SCHEMA
   ============================================================ */
.approach { background: var(--surface); border-block: 1px solid var(--line); }
.ba {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 2.5vw, 28px); align-items: stretch;
  margin-top: clamp(30px, 4vw, 46px);
}
.ba-col {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  background: var(--bg);
}
.ba-col.after {
  background: linear-gradient(180deg, var(--teal-tint-2), var(--surface));
  border-color: var(--teal);
}
.ba-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.ba-col.before .ba-tag { background: var(--gray-300); color: var(--ink); }
.ba-col.after .ba-tag { background: var(--teal); color: #fff; }
.ba-col h3 { font-size: clamp(19px, 2vw, 24px); font-family: var(--font-display); font-weight: 600; }
.ba-list { margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.ba-list li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); line-height: 1.4; }
.ba-list li svg { flex: none; width: 18px; height: 18px; margin-top: 1px; }
.ba-col.before .ba-list li svg { color: var(--gray); }
.ba-col.after .ba-list li svg { color: var(--teal); }
.ba-arrow {
  display: grid; place-items: center; align-self: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line); color: var(--teal-700);
  box-shadow: var(--shadow-sm);
}
.ba-arrow svg { width: 22px; height: 22px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.cost-table-wrap {
  margin-top: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
table.cost-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.cost-table thead th {
  text-align: left; font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: 0.02em;
  padding: 16px 20px; background: var(--bg); color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.cost-table thead th.col-jet {
  background: var(--teal-900); color: #eafafa;
}
.cost-table tbody td {
  padding: 15px 20px; vertical-align: top; color: var(--ink-soft); line-height: 1.45;
  border-bottom: 1px solid var(--line);
}
.cost-table tbody tr:last-child td { border-bottom: 0; }
.cost-table tbody td.poste { font-weight: 700; color: var(--ink); white-space: nowrap; }
.cost-table tbody td.col-jet {
  background: var(--teal-tint-2); color: var(--ink);
  border-left: 1px solid var(--teal-tint);
}
.cost-table tbody td.col-jet b { color: var(--teal-700); font-weight: 700; }
.cost-table tbody tr:hover td { background: var(--surface); }
.cost-table tbody tr:hover td.col-jet { background: var(--teal-tint); }

/* ============================================================
   KEY FIGURES
   ============================================================ */
.kfigs { background: var(--bg); }
.kfig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: clamp(30px, 4vw, 46px);
}
.kfig {
  border-top: 2px solid var(--teal);
  padding-top: 22px;
}
.kfig .kf-num {
  font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em;
  font-size: clamp(34px, 4.4vw, 54px); line-height: 0.98; color: var(--teal-700);
}
.kfig .kf-num .u { font-size: 0.42em; color: var(--ink); letter-spacing: 0; font-weight: 500; }
.kfig .kf-label { margin-top: 14px; font-size: 15px; color: var(--ink-soft); line-height: 1.45; }

.caution {
  margin-top: clamp(28px, 3.5vw, 40px);
  font-size: 14px; color: var(--ink-soft); line-height: 1.55;
  max-width: 880px;
}
.caution svg { display: none; }
.kfig-cta { margin-top: clamp(28px, 3.5vw, 40px); }

/* ============================================================
   PER-ACTOR CARDS (reuse icard) – section uses card-grid-4
   ============================================================ */

/* ============================================================
   SARGAMAP SPLIT
   ============================================================ */
.smap { background: var(--surface); border-block: 1px solid var(--line); }
.smap-split {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 4.5vw, 64px); align-items: center;
}
.smap-points { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.smap-point { display: flex; gap: 13px; align-items: flex-start; }
.smap-point .sp-ico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: var(--teal-tint); color: var(--teal-700);
  display: grid; place-items: center;
}
.smap-point .sp-ico svg { width: 20px; height: 20px; }
.smap-point h3 { font-size: 16px; font-family: var(--font-display); font-weight: 600; }
.smap-cta { margin-top: 28px; }
.smap-visual .ph { min-height: 340px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cost-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .ba { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); margin: 2px auto; }
  .smap-split { grid-template-columns: 1fr; gap: 32px; }
  .smap-visual { order: -1; }
}
@media (max-width: 760px) {
  .cost-grid { grid-template-columns: 1fr; }
  .kfig-grid { grid-template-columns: 1fr; gap: 26px; }
  .card-grid-4.actor-cards { grid-template-columns: 1fr; }
  .cost-table { font-size: 13.5px; }
  .cost-table thead th, .cost-table tbody td { padding: 12px 14px; }
}
