/* ============================================================
   components-2.css — execute, credits, compare, faq, final, footer
   ============================================================ */

/* ---------- EXECUTE ---------- */
.exec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.exec-card { padding: 30px 28px; transition: transform .25s var(--ease), border-color .25s, background .25s; }
.exec-card:hover { transform: translateY(-5px); border-color: var(--line-2); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.exec-card--wide { grid-column: span 1; }
.exec-top { display: flex; align-items: center; justify-content: space-between; }
.exec-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--bg-2); border: 1px solid var(--line); color: var(--accent); transition: background .25s, border-color .25s; }
.exec-card:hover .exec-ico { background: var(--accent-soft); border-color: var(--accent-line); }
.exec-card h3 { font-size: 22px; margin-top: 22px; }
.exec-d { margin-top: 9px; color: var(--text-dim); font-size: 14.5px; line-height: 1.5; }
.exec-list { list-style: none; margin: 22px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 11px; }
.exec-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dim); }
.exec-list li svg { color: var(--accent); flex: none; }
@media (max-width: 940px){ .exec-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .exec-grid { grid-template-columns: 1fr; } }

/* ---------- CREDITS: STEPS ---------- */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 14px; margin-top: 56px; }
.step { padding: 30px 26px; }
.step-n { font-size: 13px; color: var(--accent); }
.step h3 { font-size: 20px; margin-top: 16px; }
.step p { margin-top: 9px; color: var(--text-dim); font-size: 14.5px; }
.step-arrow { display: grid; place-items: center; color: var(--text-faint); }
@media (max-width: 820px){
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* ---------- CREDITS: CALCULATOR ---------- */
.calc { margin-top: 22px; display: grid; grid-template-columns: 340px 1fr; overflow: hidden; }
.calc-left { padding: 32px 30px; border-right: 1px solid var(--line); background: var(--bg-1); display: flex; flex-direction: column; }
.calc-packs { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.pack { position: relative; text-align: left; display: grid; grid-template-columns: 1fr auto; grid-auto-rows: auto; gap: 2px 0; padding: 18px 20px; border-radius: 14px; background: var(--bg-2); border: 1px solid var(--line); transition: border-color .2s, background .2s, transform .15s; }
.pack:hover { border-color: var(--line-2); }
.pack--on { border-color: var(--accent-line); background: var(--accent-soft); }
.pack-name { font-size: 16px; font-weight: 600; color: var(--text); }
.pack-cr { grid-column: 1; font-size: 12px; color: var(--text-dim); }
.pack-price { grid-column: 2; grid-row: 1; justify-self: end; font-size: 16px; font-weight: 600; color: var(--text); }
.pack-rate { grid-column: 2; grid-row: 2; justify-self: end; font-size: 11.5px; color: var(--text-faint); white-space: nowrap; }
.pack-use { grid-column: 1 / -1; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 11.5px; line-height: 1.5; color: var(--text-dim); }
.pack-use-l { display: block; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; }
.pack--on .pack-use { border-top-color: var(--accent-line); }
.pack-flag { position: absolute; top: -9px; left: 18px; font-size: 10px; padding: 3px 8px; border-radius: 100px; background: var(--accent); color: var(--accent-ink); letter-spacing: .04em; }
.pack--best { margin-top: 12px; padding-top: 22px; }
.calc-note { margin-top: auto; padding-top: 18px; font-size: 11px; color: var(--text-faint); }
.earn { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: var(--accent-soft); border: 1px solid var(--accent-line); }
.earn-ico { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; background: var(--bg-1); border: 1px solid var(--accent-line); color: var(--accent); }
.earn-txt { display: flex; flex-direction: column; gap: 2px; }
.earn-txt b { font-size: 13.5px; font-weight: 600; color: var(--text); }
.earn-txt span { font-size: 12.5px; color: var(--text-dim); line-height: 1.4; }

.calc-right { padding: 28px 30px; display: flex; flex-direction: column; }
.calc-meter-top { display: flex; align-items: center; justify-content: space-between; }
.calc-sub { margin-top: 6px; font-size: 13px; color: var(--text-dim); }
.calc-rem { font-size: 13px; color: var(--accent); }
.calc-rem--low { color: #ffb24d; }
.calc-bar { height: 8px; border-radius: 100px; background: var(--bg-2); margin-top: 14px; overflow: hidden; border: 1px solid var(--line); }
.calc-bar-fill { height: 100%; background: var(--accent); border-radius: 100px; transition: width .4s var(--ease); box-shadow: 0 0 14px var(--accent-glow); }
.calc-tasks { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 22px; }
.ctask { display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 11px; text-align: left; padding: 13px 14px; border-radius: 11px; background: var(--bg-1); border: 1px solid var(--line); transition: border-color .18s, background .18s, opacity .18s; }
.ctask-cat { display: none; }
.ctask:hover:not(.ctask--off) { border-color: var(--line-2); }
.ctask--on { border-color: var(--accent-line); background: var(--accent-soft); }
.ctask--off { opacity: .38; cursor: not-allowed; }
.ctask-box { width: 20px; height: 20px; border-radius: 6px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--accent-ink); transition: background .18s, border-color .18s; }
.ctask--on .ctask-box { background: var(--accent); border-color: var(--accent); }
.ctask-t { font-size: 13.5px; color: var(--text); }
.ctask-c { font-size: 12px; color: var(--text-dim); white-space: nowrap; }
.calc-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-dim); flex-wrap: wrap; }
.calc-foot + .calc-cap { margin-top: 14px; }
.calc-right .earn { margin-top: 16px; }
.calc-cap { margin-top: 14px; font-size: 12.5px; color: var(--text-faint); line-height: 1.5; }
@media (max-width: 880px){
  .calc { grid-template-columns: 1fr; }
  .calc-left { border-right: 0; border-bottom: 1px solid var(--line); }
  .calc-tasks { grid-template-columns: 1fr; }
}

/* ---------- CREDITS: micro-copy + ROI ---------- */
.micro { display: flex; align-items: center; gap: 14px; margin-top: 18px; padding: 18px 22px; border: 1px solid var(--accent-line); border-radius: var(--radius); background: var(--accent-soft); }
.micro-ico { width: 38px; height: 38px; border-radius: 10px; flex: none; display: grid; place-items: center; background: var(--bg-1); border: 1px solid var(--accent-line); color: var(--accent); }
.micro p { font-size: 15px; color: var(--text-dim); line-height: 1.5; }
.micro b { color: var(--text); font-weight: 600; }

.roi { margin-top: 16px; padding: 30px 32px; }
.roi-head p { margin-top: 8px; font-size: 14px; color: var(--text-dim); }
.roi-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 24px; }
.roi-item { display: flex; flex-direction: column; gap: 3px; padding: 20px; border-radius: 14px; background: var(--bg-1); border: 1px solid var(--line); }
.roi-cost { font-size: 24px; font-weight: 600; letter-spacing: -0.03em; color: var(--text); }
.roi-per { font-size: 11px; color: var(--text-faint); }
.roi-role { margin-top: 8px; font-size: 13px; color: var(--text-dim); }
.roi-item--us { background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); border-color: var(--accent-line); justify-content: center; gap: 10px; }
.roi-usname { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--text); }
.roi-usname .brand-dot { width: 8px; height: 8px; }
.roi-usline { font-size: 13px; color: var(--accent); line-height: 1.45; }
@media (max-width: 880px){ .roi-grid { grid-template-columns: repeat(2, 1fr); } .roi-item--us { grid-column: 1 / -1; } }
@media (max-width: 460px){ .roi-grid { grid-template-columns: 1fr; } }

/* ---------- WHY SCALEXEC ---------- */
.switch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; align-items: stretch; }
.sw-card { padding: 26px 24px; display: flex; flex-direction: column; position: relative; }
.sw-old { background: var(--bg-1); }
.sw-old:hover { border-color: var(--line-2); }
.sw-head { min-height: 62px; }
.sw-head h3 { font-size: 19px; letter-spacing: -0.02em; }
.sw-note { display: block; margin-top: 7px; font-size: 13px; color: var(--text-faint); }
.sw-list { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 13px; flex: 1; }
.sw-list li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--text-dim); }
.sw-x { width: 20px; height: 20px; border-radius: 6px; flex: none; display: grid; place-items: center; background: rgba(255,90,90,0.10); color: #ff7a7a; }
.sw-c { width: 20px; height: 20px; border-radius: 6px; flex: none; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
/* highlighted Scalexec card */
.sw-new { background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); border-color: var(--accent-line); overflow: hidden; box-shadow: 0 30px 80px -50px var(--accent-glow); }
.sw-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 140%; height: 80%; background: radial-gradient(50% 50% at 50% 50%, var(--accent-soft), transparent 70%); pointer-events: none; }
.sw-new > * { position: relative; }
.sw-brand { display: flex; align-items: center; gap: 11px; }
.sw-mark { width: 30px; height: 30px; color: var(--accent); filter: drop-shadow(0 0 6px var(--accent-glow)); }
.sw-mark svg { width: 18px; height: 18px; }
.sw-new .sw-head h3 { font-size: 20px; }
.sw-note--on { color: var(--accent); }
.sw-new .sw-list li { color: var(--text); }
.sw-cta { margin-top: 22px; width: 100%; }
@media (max-width: 900px){ .switch-grid { grid-template-columns: repeat(2,1fr); } .sw-head { min-height: 0; } }
@media (max-width: 520px){ .switch-grid { grid-template-columns: 1fr; } }

/* ---------- AI / COMPLIANCE TRUST BAND ---------- */
.trustband { margin-top: 16px; padding: 28px 30px; display: grid; grid-template-columns: 1fr auto; gap: 28px 40px; align-items: center; background: var(--bg-1); }
.tb-lead p { margin-top: 12px; color: var(--text-dim); font-size: 15px; line-height: 1.55; max-width: 460px; }
.tb-lead em { color: var(--text); font-style: normal; }
.tb-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.tb-item { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: var(--text-dim); white-space: nowrap; }
.tb-ico { width: 32px; height: 32px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--bg-2); border: 1px solid var(--line); color: var(--accent); }
@media (max-width: 760px){ .trustband { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 420px){ .tb-items { grid-template-columns: 1fr; } }

/* ---------- COMPARE ---------- */
.cmp { margin-top: 56px; padding: 10px; }
.cmp-tabs { display: flex; align-items: center; gap: 8px; padding: 14px 16px; flex-wrap: wrap; }
.cmp-tabs-label { font-size: 12px; color: var(--text-faint); margin-right: 6px; }
.cmp-tab { padding: 9px 18px; border-radius: 100px; background: transparent; border: 1px solid var(--line); color: var(--text-dim); font-size: 14px; font-weight: 500; transition: all .18s; }
.cmp-tab:hover { color: var(--text); border-color: var(--line-2); }
.cmp-tab--on { background: var(--text); color: #0a0a0c; border-color: var(--text); }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1.1fr 1.3fr 1.3fr; align-items: center; }
.cmp-head { padding: 16px 22px 14px; border-bottom: 1px solid var(--line); }
.cmp-col { font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.cmp-col--us { color: var(--text); }
.cmp-usdot { width: 8px; height: 8px; }
.cmp-col--them { color: var(--text-faint); }
.cmp-rows { }
.cmp-row { padding: 17px 22px; border-bottom: 1px solid var(--line); }
.cmp-row:last-child { border-bottom: 0; }
.cmp-label { font-size: 14px; color: var(--text-dim); }
.cmp-cell { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; }
.cmp-cell--us { color: var(--text); font-weight: 450; }
.cmp-cell--us svg { color: var(--accent); flex: none; }
.cmp-cell--them { color: var(--text-faint); }
.cmp-cell--them svg { color: #ff7a7a; opacity: .8; flex: none; }
@media (max-width: 720px){
  .cmp-head { display: none; }
  .cmp-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 18px; }
  .cmp-label { font-weight: 600; color: var(--text); }
}

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.faq-head { position: sticky; top: 100px; }
.faq-head h2 { font-size: clamp(30px,4vw,48px); margin-top: 22px; }
.faq-head p { margin-top: 16px; color: var(--text-dim); font-size: 17px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; background: none; border: 0; color: var(--text); font-size: 17px; font-weight: 500; text-align: left; letter-spacing: -0.01em; transition: color .18s; }
.faq-q:hover { color: var(--accent); }
.faq-q > span:first-child { flex: 1; }
.faq-ic { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; border: 1px solid var(--line); color: var(--text-dim); transition: all .2s; }
.faq-item--open .faq-ic { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 60px 26px 4px; color: var(--text-dim); font-size: 15px; line-height: 1.6; }
@media (max-width: 820px){
  .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .faq-head { position: static; }
}

/* ---------- FINAL CTA ---------- */
.final { padding-bottom: 130px; }
.final-card { position: relative; overflow: hidden; text-align: center; padding: 80px 40px; border-radius: 28px; border: 1px solid var(--line-2); background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); }
.final-glow { position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 80%; height: 120%; background: radial-gradient(50% 50% at 50% 50%, var(--accent-soft), transparent 70%); pointer-events: none; }
.final-card > * { position: relative; }
.final-h { font-size: clamp(34px,5.2vw,62px); margin: 24px auto 0; letter-spacing: -0.035em; max-width: 820px; text-wrap: balance; }
.final-p { margin: 22px auto 0; color: var(--text-dim); font-size: 18px; max-width: 480px; }
.final-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; justify-content: center; }
.final-trust { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; justify-content: center; color: var(--text-faint); font-size: 12.5px; }
.final-trust span { display: inline-flex; align-items: center; gap: 8px; }
.final-trust svg { color: var(--accent); }
.final-ent { margin-top: 22px; font-size: 12.5px; color: var(--text-faint); }
.final-ent a { color: var(--text-dim); border-bottom: 1px solid var(--line-2); padding-bottom: 1px; transition: color .18s, border-color .18s; }
.final-ent a:hover { color: var(--accent); border-color: var(--accent-line); }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding: 72px 0 40px; background: var(--bg-1); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 56px; }
.footer-brand p { margin: 20px 0 24px; color: var(--text-dim); font-size: 14.5px; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-h { font-size: 11px; color: var(--text-faint); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { color: var(--text-dim); font-size: 14px; transition: color .18s; }
.footer-col a:hover { color: var(--text); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); }
.footer-bot .mono { font-size: 12px; color: var(--text-faint); }
@media (max-width: 820px){
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 520px){
  .footer-cols { grid-template-columns: repeat(2,1fr); }
}
