/* ═══════════════════════════════════════════════════════════
   Page /estimation/ — estimateur de valeur d'entreprise.
   Multiple d'EBITDA sectoriel : saisie (secteur, taille, EBITDA,
   trésorerie nette) → valeur indicative des titres.
   Hérite des tokens + du chrome de global.css.
   ═══════════════════════════════════════════════════════════ */

/* ────── HERO ────── */
#hero-est {
  padding-top: 118px;
  padding-bottom: 2.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
#hero-est::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 600px at 80% 20%, var(--accent-a-10), transparent 60%),
    #fff;
}
.hero-est-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 2rem 0.5rem;
  text-align: center;
}
.hero-est-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-est-eyebrow::before, .hero-est-eyebrow::after {
  content: ''; width: 24px; height: 2px; background: var(--accent);
}
.hero-est-h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.028em;
  color: var(--text-strong); margin: 0 0 1.1rem;
}
.hero-est-h1 .accent { color: var(--accent); }
.hero-est-sub {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.65;
  margin: 0 auto; max-width: 680px;
}

/* ────── SECTION ────── */
.est-section { padding: 2.5rem 0 5rem; position: relative; }
.est-inner { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }

/* ────── CARTE (saisie + résultat) ────── */
.est-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -32px rgba(6, 24, 56, 0.35);
}

/* ── Colonne saisie ── */
.est-form { padding: 2.4rem 2.4rem 2.6rem; }
.est-step-intro {
  font-size: 0.9rem; color: var(--text-3); line-height: 1.55;
  margin-bottom: 1.9rem;
}
.est-field { margin-bottom: 1.9rem; border: none; }
.est-field:last-child { margin-bottom: 0; }

.est-label {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.92rem; font-weight: 700; color: var(--text-strong);
  margin-bottom: 0.85rem; padding: 0;
}
.est-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex: none;
  border-radius: 999px;
  background: var(--accent-deeper); color: var(--text-on-accent);
  font-size: 0.74rem; font-weight: 800;
}

/* Select secteur */
.est-select-wrap { position: relative; }
.est-select {
  width: 100%;
  appearance: none; -webkit-appearance: none;
  font-family: inherit; font-size: 0.95rem; font-weight: 500;
  color: var(--text-1);
  background: var(--bg-mid);
  border: 1px solid var(--line-3);
  border-radius: 11px;
  padding: 13px 44px 13px 15px;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.est-select:focus-visible {
  outline: none;
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px var(--accent-a-15);
}
.est-select:invalid { color: var(--text-3); }
.est-select-chevron {
  position: absolute; right: 15px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); pointer-events: none;
}

/* Segments taille */
.est-seg {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.est-seg-opt { position: relative; cursor: pointer; display: block; }
.est-seg-opt input {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.est-seg-box {
  display: flex; flex-direction: column; gap: 3px;
  height: 100%;
  padding: 13px 12px;
  text-align: center;
  background: var(--bg-mid);
  border: 1.5px solid var(--line-3);
  border-radius: 11px;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.12s;
}
.est-seg-name { font-size: 0.95rem; font-weight: 800; color: var(--text-strong); }
.est-seg-crit { font-size: 0.72rem; color: var(--text-3); line-height: 1.3; }
.est-seg-opt:hover .est-seg-box { border-color: var(--line-4); }
.est-seg-opt input:focus-visible + .est-seg-box {
  box-shadow: 0 0 0 3px var(--accent-a-15);
}
.est-seg-opt input:checked + .est-seg-box {
  border-color: var(--accent-deep);
  background: var(--accent-a-08);
  box-shadow: inset 0 0 0 1px var(--accent-deep);
}
.est-seg-opt input:checked + .est-seg-box .est-seg-name { color: var(--accent-deeper); }

/* Résultat net : champ + curseur */
.est-rn-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 0.85rem;
}
.est-rn-head .est-label { margin-bottom: 0; }
.est-rn-value {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--bg-mid);
  border: 1.5px solid var(--line-3);
  border-radius: 10px;
  padding: 6px 12px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.est-rn-value:focus-within {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px var(--accent-a-15);
}
.est-rn-input {
  width: 8ch; border: none; background: transparent;
  font-family: inherit; font-size: 1.05rem; font-weight: 800;
  color: var(--text-strong); text-align: right;
  padding: 0;
}
.est-rn-input:focus { outline: none; }
.est-rn-cur { font-size: 1.05rem; font-weight: 800; color: var(--text-2); }

/* Slider */
.est-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; margin: 0.35rem 0 0;
  border-radius: 999px;
  background: var(--surface-high);
  cursor: pointer;
}
.est-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-deeper);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px -1px var(--accent-a-40), 0 0 0 1px var(--line-3);
  cursor: pointer; transition: transform 0.12s;
}
.est-range::-webkit-slider-thumb:hover { transform: scale(1.08); }
.est-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-deeper); border: 3px solid #fff;
  box-shadow: 0 2px 8px -1px var(--accent-a-40);
  cursor: pointer;
}
.est-range:focus-visible { outline: none; }
.est-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px var(--accent-a-22); }
.est-range:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 4px var(--accent-a-22); }
.est-range-scale {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: var(--text-3); margin-top: 0.5rem;
}
.est-rn-hint {
  font-size: 0.78rem; color: var(--text-3); line-height: 1.5;
  margin-top: 0.75rem;
}

/* ── Trésorerie nette : deux saisies positives → net calculé ── */
.est-cash-intro {
  font-size: 0.8rem; color: var(--text-3); line-height: 1.55;
  margin: -0.2rem 0 1rem;
}
.est-cash-intro strong { color: var(--text-2); font-weight: 700; }
.est-cash-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: start; gap: 12px;
}
.est-cash-cell { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.est-cash-cap { font-size: 0.74rem; font-weight: 700; color: var(--text-2); }
.est-cash-value { display: flex; width: 100%; }
.est-cash-value .est-rn-input { flex: 1 1 auto; width: auto; min-width: 0; }
.est-cash-help { font-size: 0.7rem; color: var(--text-3); line-height: 1.35; }
.est-cash-minus {
  align-self: center; padding-top: 1.15rem;
  font-size: 1.3rem; font-weight: 800; color: var(--text-3);
}

/* Trésorerie nette calculée (lecture en clair) */
.est-net {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px 10px;
  margin-top: 1rem; padding: 11px 14px; border-radius: 11px;
  background: var(--surface-low); border: 1px solid var(--line-2);
}
.est-net-title { font-size: 0.84rem; font-weight: 700; color: var(--text-strong); }
.est-net-calc {
  font-size: 0.82rem; color: var(--text-2);
  font-variant-numeric: tabular-nums;
}
.est-net-calc b { color: var(--text-strong); font-weight: 800; }
.est-net-tag {
  margin-left: auto; white-space: nowrap;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 3px 9px; border-radius: 999px;
  color: var(--text-3); background: var(--surface-mid);
}
.est-net-pos { border-color: var(--accent-a-22); background: var(--accent-a-06); }
.est-net-pos .est-net-calc b { color: var(--accent-deeper); }
.est-net-pos .est-net-tag { color: var(--accent-deeper); background: var(--accent-a-12); }
.est-net-neg .est-net-tag { color: var(--text-1); background: var(--surface-high); }

/* ── Colonne résultat (panneau navy) ── */
.est-result {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.4rem 2.2rem;
  background:
    radial-gradient(600px 400px at 80% 0%, rgba(56, 189, 248, 0.18), transparent 60%),
    linear-gradient(160deg, #0B1E40 0%, #061838 100%);
  color: #fff;
  position: relative;
}
/* État d'invitation (le résultat final s'affiche en modale centrale) */
.est-result-placeholder {
  font-size: 0.95rem; color: rgba(255,255,255,0.78); line-height: 1.65;
}
.est-result-placeholder .est-ph-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  color: var(--accent-bright); margin-bottom: 1.1rem;
}

/* ────── NOTE MÉTHODOLOGIQUE ────── */
.est-method {
  margin-top: 1.6rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 2.2rem 2.4rem;
}
.est-method-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem;
}
.est-method-h {
  font-size: 1.02rem; font-weight: 800; color: var(--text-strong);
  margin-bottom: 0.85rem; letter-spacing: -0.01em;
}
.est-method-col p {
  font-size: 0.9rem; color: var(--text-2); line-height: 1.7;
  margin-bottom: 0.75rem;
}
.est-method-col p:last-child { margin-bottom: 0; }
.est-method-col strong { color: var(--text-1); font-weight: 700; }

.est-method-source {
  font-size: 0.78rem; color: var(--text-3); line-height: 1.55;
  margin: 1.6rem 0 0;
}
.est-method-source strong { color: var(--text-2); font-weight: 700; }

.est-method-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line-2);
}
.est-method-cta-text { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }
.est-method-cta-text strong { color: var(--text-strong); }
.est-cta-btn {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  padding: 13px 24px; border-radius: 9px;
  background: var(--accent-deeper); color: var(--text-on-accent);
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 0 0 1px var(--accent-bright), 0 8px 28px -8px var(--accent-a-30);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.est-cta-btn:hover { background: var(--accent-ink); transform: translateY(-1px); }
.est-cta-btn svg { transition: transform 0.2s; }
.est-cta-btn:hover svg { transform: translateX(3px); }

/* ────── BOUTON DÉCLENCHEUR ────── */
.est-go-wrap { margin-top: 2.1rem; }
.est-go {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 24px; border: none; border-radius: 12px;
  font-family: inherit; font-size: 0.95rem; font-weight: 800; letter-spacing: 0.02em;
  color: var(--text-on-accent); background: var(--accent-deeper);
  box-shadow: 0 0 0 1px var(--accent-bright), 0 12px 30px -10px var(--accent-a-35);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, opacity 0.2s, color 0.2s;
}
.est-go-content { display: inline-flex; align-items: center; gap: 10px; }
.est-go:not(:disabled):hover {
  background: var(--accent-ink); transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--accent-bright), 0 16px 40px -10px var(--accent-a-35);
}
.est-go:not(:disabled):active { transform: translateY(0); }
.est-go:disabled {
  cursor: not-allowed; background: var(--surface-strong); color: var(--text-3);
  box-shadow: 0 0 0 1px var(--line-3);
}
.est-go-spark { transition: transform 0.4s cubic-bezier(.2,.8,.2,1); }
.est-go:not(:disabled):hover .est-go-spark { transform: rotate(90deg) scale(1.08); }
.est-go.is-ready { animation: est-ready-pulse 2.6s ease-in-out infinite; }
.est-go.is-ready:hover { animation: none; }
@keyframes est-ready-pulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--accent-bright), 0 12px 30px -10px var(--accent-a-35), 0 0 0 0 var(--accent-a-15); }
  50%      { box-shadow: 0 0 0 1px var(--accent-bright), 0 12px 30px -10px var(--accent-a-35), 0 0 0 7px var(--accent-a-04); }
}
.est-go-hint {
  font-size: 0.78rem; color: var(--text-3); text-align: center;
  margin-top: 0.75rem; line-height: 1.45;
}

/* ────── ÉTAT « CALCUL EN COURS » (suspense) ────── */
.est-compute { display: flex; flex-direction: column; align-items: flex-start; gap: 1.3rem; width: 100%; }
.est-spinner-ring {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--accent-bright);
  animation: est-spin 0.8s linear infinite;
}
.est-compute-msg {
  font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.4;
  min-height: 2.8em;
}
.est-compute-bar {
  width: 100%; height: 4px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.14); overflow: hidden;
}
.est-compute-bar > span {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  /* doit rester synchronisé avec STEPS.length × STEP_MS dans estimation.js */
  animation: est-fill 2200ms ease-out forwards;
}
@keyframes est-spin { to { transform: rotate(360deg); } }
@keyframes est-fill { from { width: 0; } to { width: 100%; } }

/* ────── FOURCHETTE — jauge visuelle (modale) ────── */
.est-val {
  font-size: clamp(1.45rem, 6.2vw, 1.95rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--text-strong); white-space: nowrap; font-variant-numeric: tabular-nums;
}
.est-gauge { position: relative; margin: 0.7rem 0 1.1rem; }
.est-gauge-ends {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 1rem; margin-bottom: 1.35rem;
}
.est-gauge-end { display: flex; flex-direction: column; gap: 3px; }
.est-gauge-end-hi { text-align: right; align-items: flex-end; }
.est-gauge-cap {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3);
}
.est-val-high { color: var(--accent-deeper); }
.est-gauge-track {
  position: relative; height: 10px; border-radius: 999px;
  background: var(--bg-higher);
}
.est-gauge-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-deeper), var(--accent));
}
.est-gauge-dot {
  position: absolute; top: 50%; width: 13px; height: 13px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 2px var(--accent-deep), 0 1px 3px rgba(6, 24, 56, 0.2);
}

/* ────── MODALE « NOTIFICATION CENTRALE » ────── */
.est-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.est-modal[hidden] { display: none; }
.est-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 24, 56, 0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.25s ease;
}
.est-modal.is-open .est-modal-backdrop { opacity: 1; }
.est-modal-card {
  position: relative; width: 100%; max-width: 744px;
  padding: 4.9rem 4.2rem 4.2rem;
  max-height: calc(100dvh - 2.5rem); overflow-y: auto;
  border-radius: 20px; color: var(--text-1);
  background: linear-gradient(165deg, #FFFFFF 0%, #EEF3FB 100%);
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 70px -30px rgba(6, 24, 56, 0.35);
  opacity: 0; transform: translateY(14px) scale(0.96);
  transition: opacity 0.28s ease, transform 0.34s cubic-bezier(.2,.9,.25,1);
}
.est-modal.is-open .est-modal-card { opacity: 1; transform: none; }
.est-modal-close {
  position: absolute; top: 13px; right: 13px;
  width: 34px; height: 34px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 9px; cursor: pointer;
  color: var(--text-3); background: var(--surface-mid);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.est-modal-close:hover { background: var(--surface-high); color: var(--text-1); }
.est-modal-close:active { transform: scale(0.94); }
.est-modal-close:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; }
.est-modal-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-deeper);
  display: flex; align-items: center; gap: 8px; margin-bottom: 1.55rem;
  padding-right: 2rem;
}
.est-modal-label::before {
  content: ''; width: 20px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--accent-deeper), transparent);
}
/* ── Pont : valeur d'entreprise → valeur des titres ── */
.est-bridge {
  margin: 0.2rem 0 1.2rem;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 0.2rem 1.1rem 0.5rem;
  background: var(--bg-base);
}
.est-bridge-title {
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); padding: 0.85rem 0 0.2rem;
}
.est-bridge-row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.62rem 0;
  border-top: 1px solid var(--line-1);
}
.est-bridge-row:first-of-type { border-top: none; }
.est-bridge-lbl {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-1);
}
.est-bridge-lbl small { font-size: 0.7rem; font-weight: 400; color: var(--text-3); }
.est-bridge-op .est-bridge-lbl { flex-direction: row; align-items: center; color: var(--text-2); }
.est-bridge-amt {
  font-size: 1rem; font-weight: 800; color: var(--text-strong); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.est-bridge-op .est-bridge-amt { font-weight: 700; color: var(--text-2); }
.est-op {
  display: inline-flex; align-items: center; justify-content: center;
  width: 19px; height: 19px; border-radius: 6px; margin-right: 9px; flex: none;
  font-size: 0.82rem; font-weight: 800; line-height: 1;
}
.est-op-plus { background: var(--accent-a-12); color: var(--accent-deeper); }
.est-op-minus { background: var(--surface-mid); color: var(--text-2); }
.est-bridge-total { border-top: 1px solid var(--line-3); }
.est-bridge-total .est-bridge-lbl { color: var(--text-strong); font-weight: 700; }
.est-bridge-total .est-bridge-amt { font-size: 1.2rem; color: var(--accent-deeper); }
.est-modal-note {
  font-size: 0.84rem; color: var(--text-2); line-height: 1.55;
  margin: 0.2rem 0 1.2rem; padding: 0.85rem 1rem; border-radius: 12px;
  background: var(--bg-base); border: 1px solid var(--line-2);
}
.est-modal-note strong { color: var(--text-strong); font-weight: 700; }

.est-modal-unit { font-size: 0.86rem; color: var(--text-2); line-height: 1.6; margin-bottom: 0.7rem; }
.est-modal-unit strong { color: var(--text-strong); }
.est-modal-unit-lg { font-size: 1.05rem; font-weight: 700; color: var(--text-strong); margin-bottom: 0.7rem; }
.est-modal-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 2.5rem;
  padding: 18px 24px; border-radius: 12px;
  font-size: 1rem; font-weight: 800; letter-spacing: 0.02em; text-decoration: none;
  color: var(--text-on-accent);
  background: linear-gradient(135deg, var(--accent-deeper), var(--accent-deep));
  box-shadow: 0 10px 24px -12px rgba(3, 105, 161, 0.5);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}
.est-modal-cta:hover { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 14px 30px -12px rgba(3, 105, 161, 0.6); }
.est-modal-cta svg { transition: transform 0.2s; }
.est-modal-cta:hover svg { transform: translateX(3px); }
.est-modal-src { font-size: 0.74rem; color: var(--text-3); line-height: 1.5; margin-top: 0.85rem; }
.est-modal-src strong { color: var(--text-2); font-weight: 700; }
.est-modal-fine { font-size: 0.74rem; color: var(--text-3); line-height: 1.5; text-align: center; margin-top: 1.2rem; }

@media (prefers-reduced-motion: reduce) {
  .est-go.is-ready { animation: none; }
  .est-go-spark { transition: none; }
  .est-spinner-ring { animation: none; border-top-color: rgba(255, 255, 255, 0.16); }
  .est-compute-bar > span { animation: none; width: 100%; }
  .est-modal-backdrop, .est-modal-card { transition: none; }
}

/* ────── RESPONSIVE ────── */
@media (max-width: 860px) {
  .est-card { grid-template-columns: 1fr; }
  .est-result { padding: 2.2rem 2.4rem; }
  .est-method-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 560px) {
  .est-inner { padding: 0 1.1rem; }
  .est-form { padding: 1.8rem 1.5rem 2rem; }
  .est-result { padding: 1.9rem 1.6rem; }
  .est-method { padding: 1.8rem 1.5rem; }
  .est-seg { grid-template-columns: 1fr; }
  .est-seg-box { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 10px; text-align: left; }
  .est-cash-grid { grid-template-columns: 1fr; gap: 1rem; }
  .est-cash-minus { display: none; }
  .est-method-cta { flex-direction: column; align-items: flex-start; }
  .hero-est-inner { padding: 1.5rem 1rem 0.5rem; }
}
