/* ============================================================
   FUNNEL / KALKULAČKA — doplnok k main.css
   ============================================================
   Hlavička, prebar, menu, footer a cookie lišta sú spoločné s celým webom
   a rieši ich main.css. Tento súbor sa načítava PO ňom (functions.php:
   sp-funnel závisí od sp-main) a pridáva len sekcie landing page.
   NEDEFINUJ tu znova .topbar, .topbar-inner, .brand, .prebar, .mainnav,
   .footer ani .cookiebar — prebilo by to spoločnú hlavičku a rozsypalo ju.
   ============================================================ */

:root {
  /* Premenné, ktoré main.css nepozná — používajú ich len sekcie nižšie. */
  --red-bright: #ef5350;
  --green-light: #e8f5e9;
  --case-to: #c7dff5;
  --note-bg: #fff8e1;
  --note-border: #f0e0a8;
  --note-ink: #6b5d2e;
}
[data-theme="dark"] {
  --green-light: #14301a;
  --case-to: #1e3550;
  --note-bg: #2f2a12;
  --note-border: #4a4020;
  --note-ink: #e8c766;
}

/* Sticky CTA visí nad obsahom — telu treba spodnú rezervu. */
body.is-funnel { padding-bottom: 60px; }

.narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--bg) 65%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,101,192,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(211,47,47,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1.4fr 1fr; gap: 60px; } }

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 18px;
  font-weight: 900;
  line-height: 1.05;
}
.hero h1 span {
  color: var(--red);
  white-space: nowrap;
}
.hero-sub {
  font-size: 18px;
  color: var(--grey-700);
  margin: 0 0 24px;
  max-width: 560px;
}
.hero-sub b { color: var(--grey-900); }

.hero-bullets { margin-bottom: 32px; }
.hero-bullets li {
  padding: 6px 0;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.hero-bullets span {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.hero-trust {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: var(--grey-700);
}
.hero-trust b { color: var(--grey-900); font-weight: 700; }

/* Hero side */
.hero-side { display: grid; gap: 16px; }
.hero-vid {
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: 60px 24px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: transform .2s;
  background-image: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
}
.hero-vid:hover { transform: translateY(-2px); }
.hv-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 26px;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(211,47,47,0.4);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211,47,47,0.5); }
  50% { box-shadow: 0 0 0 18px rgba(211,47,47,0); }
}
.hero-vid span { font-size: 14px; opacity: 0.85; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  padding: 18px 12px;
  box-shadow: var(--shadow-sm);
}
.hero-stats > div { text-align: center; }
.hero-stats b {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stats span {
  font-size: 11.5px;
  color: var(--grey-700);
  line-height: 1.25;
}

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2px;
  padding: 16px 30px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  font-family: inherit;
  box-shadow: 0 6px 16px rgba(211,47,47,0.3);
}
.cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(211,47,47,0.4);
}
.cta small {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0;
}
.cta-lg { padding: 20px 40px; font-size: 18px; }
.cta-xl {
  display: flex;
  padding: 22px 40px;
  font-size: 19px;
  width: 100%;
}
.cta-block { display: flex; width: 100%; margin-top: 30px; }
.cta-sm { padding: 10px 18px; font-size: 14px; box-shadow: none; }

.cta-shop {
  background: var(--blue);
  box-shadow: 0 6px 16px rgba(21,101,192,0.3);
}
.cta-shop:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 22px rgba(21,101,192,0.4);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .hero-cta-row .cta { width: 100%; }
}

/* ============================================================
   LOGO BAR
   ============================================================ */
.logobar {
  background: var(--grey-50);
  padding: 28px 0;
  border-bottom: 1px solid var(--grey-100);
}
.logobar p {
  text-align: center;
  font-size: 12.5px;
  color: var(--grey-700);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 600;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.logos span {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--grey-300);
  letter-spacing: 1px;
  transition: color .2s;
}
.logos span:hover { color: var(--blue); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding: 80px 0; }
@media (max-width: 700px) { .section { padding: 56px 0; } }
.section-grey { background: var(--grey-50); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow.yellow { color: var(--yellow); }

.section-h {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-h span { color: var(--red); }
.section-h.light { color: #fff; }
.section-h.light span { color: var(--yellow); }

.lead {
  font-size: 17px;
  color: var(--grey-700);
  margin: 0 0 36px;
  line-height: 1.55;
  max-width: 720px;
}
.lead.light { color: rgba(255,255,255,0.85); }

/* ============================================================
   PAIN SECTION
   ============================================================ */
.section-pain { background: var(--surface); }
.pains {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 40px 0;
}
@media (min-width: 800px) { .pains { grid-template-columns: repeat(3, 1fr); } }

.pain {
  background: var(--surface);
  border: 1px solid var(--grey-100);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pain-num {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.pain h3 {
  font-size: 19px;
  margin: 8px 0 12px;
  color: var(--grey-900);
}
.pain p {
  font-size: 14.5px;
  color: var(--grey-700);
  margin: 0;
  line-height: 1.55;
}
.pain p b { color: var(--red); }
.pain p i { font-style: italic; color: var(--grey-700); }

.pain-cta {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: #fff;
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.pain-cta p {
  font-size: 16px;
  margin: 0;
  flex: 1;
  min-width: 280px;
  line-height: 1.5;
}

/* ============================================================
   PROMISE / SOLUTION
   ============================================================ */
.section-promise {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-promise .eyebrow { color: var(--yellow); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 50px 0;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
}
.step-n {
  position: absolute;
  top: -22px;
  left: 24px;
  background: var(--yellow);
  color: var(--grey-900);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}
.step h3 {
  font-size: 19px;
  margin: 14px 0 10px;
  color: #fff;
}
.step p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.55;
}
.step p b { color: var(--yellow); }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
}
.pillar b {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.pillar span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}
@media (min-width: 900px) { .cases { grid-template-columns: repeat(3, 1fr); } }

.case {
  background: var(--surface);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.case:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.case-img {
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--case-to) 100%);
  height: 160px;
  display: grid;
  place-items: center;
  font-size: 80px;
  color: var(--blue);
}
.case-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.case h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--grey-900);
}
.case-meta {
  font-size: 13px;
  color: var(--grey-700);
  margin: 0 0 14px;
  font-weight: 500;
}
.case ul { margin-bottom: 14px; }
.case li {
  padding: 4px 0;
  font-size: 13.5px;
  color: var(--grey-900);
  border-bottom: 1px dashed var(--grey-100);
}
.case li:last-child { border: 0; }
.case li b { color: var(--red); }
.case small {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--grey-100);
  font-size: 12.5px;
  color: var(--grey-700);
  font-style: italic;
  line-height: 1.5;
}
.case small b { font-style: normal; color: var(--grey-900); }

/* ============================================================
   CALCULATOR — main lead capture
   ============================================================ */
.section-calc {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 50%, var(--blue-deep) 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.section-calc::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.section-calc::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 50%; height: 150%;
  background: radial-gradient(circle, rgba(211,47,47,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.calc {
  background: var(--surface);
  border-radius: 14px;
  padding: 40px;
  margin-top: 30px;
  box-shadow: var(--shadow-lg);
  color: var(--grey-900);
  position: relative;
}
@media (max-width: 600px) { .calc { padding: 28px 22px; } }

.calc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 600px) { .calc-row { grid-template-columns: 1fr 1fr; } }

.calc label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--grey-900);
  margin: 0;
}
.calc input,
.calc select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 2px solid var(--grey-200);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
  outline: none;
  transition: border-color .15s;
}
.calc input:focus,
.calc select:focus {
  border-color: var(--red);
}

.calc-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 6px 0 22px;
  font-size: 13px;
  color: var(--grey-700);
  font-weight: 500;
  cursor: pointer;
}
.calc-check input { width: auto; margin: 3px 0 0; }

.calc-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--grey-700);
}

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses {
  margin: 40px 0 0;
  display: grid;
  gap: 14px;
}
.bonuses li {
  background: var(--surface);
  border: 1px solid var(--grey-200);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all .15s;
}
.bonuses li:hover {
  border-left-color: var(--red);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 700px) {
  .bonuses li { grid-template-columns: 1fr; gap: 8px; }
}
.bn-tag {
  background: var(--blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}
.bn-body h4 {
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--grey-900);
}
.bn-body p {
  font-size: 14px;
  color: var(--grey-700);
  margin: 0;
  line-height: 1.5;
}
.bn-body p b { color: var(--green); }
.bn-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
  text-decoration: line-through;
  text-decoration-color: rgba(61,97,53,0.4);
}

.bonus-total {
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
  padding: 18px;
  background: var(--grey-50);
  border-radius: 8px;
  color: var(--grey-700);
}
.bonus-total s { color: var(--grey-300); margin-right: 12px; }
.bonus-total b {
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.section-guarantee {
  background: var(--grey-50);
}
.guarantee-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 800px) { .guarantee-wrap { grid-template-columns: 200px 1fr; gap: 50px; } }

.g-seal {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 32px rgba(21,101,192,0.35);
  transform: rotate(-8deg);
  border: 4px solid var(--red);
}
.g-seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 50%;
}
.g-seal-inner {
  text-align: center;
  line-height: 1.1;
}
.g-seal-inner small {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}
.g-seal-inner b {
  display: block;
  font-size: 26px;
  font-weight: 900;
  margin: 4px 0;
}

.section-guarantee h2 { margin-bottom: 16px; }
.section-guarantee p {
  font-size: 16px;
  color: var(--grey-700);
  line-height: 1.6;
  margin: 0 0 12px;
}
.g-extra { font-size: 14.5px !important; }
.g-extra b { color: var(--red); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}
@media (min-width: 700px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .reviews { grid-template-columns: repeat(2, 1fr); } }

.review {
  background: var(--surface);
  border: 1px solid var(--grey-100);
  border-radius: 10px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.rv-stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-900);
  margin: 0 0 14px;
}
.review small {
  font-size: 12.5px;
  color: var(--grey-700);
}
.review small b { color: var(--grey-900); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .15s;
}
.faq[open] {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: 20px 50px 20px 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--grey-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 300;
  color: var(--red);
  transition: transform .2s;
}
.faq[open] summary::after { content: '−'; }
.faq p {
  padding: 0 22px 22px;
  margin: 0;
  font-size: 14.5px;
  color: var(--grey-700);
  line-height: 1.6;
}
.faq p b { color: var(--grey-900); }

/* ============================================================
   FINAL CALL
   ============================================================ */
.section-final {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 50%, var(--red) 130%);
  color: #fff;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.section-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-h { margin-bottom: 20px; }
.final-h span { background: rgba(0,0,0,0.25); padding: 0 12px; border-radius: 4px; }

.final-or {
  margin: 30px 0 24px;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: center;
}

.final-alts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 600px) { .final-alts { grid-template-columns: 1fr 1fr; } }
.alt-link {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 18px 22px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  transition: all .15s;
}
.alt-link:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}
.alt-link b {
  font-weight: 800;
  font-size: 17px;
  margin: 4px 0 2px;
}
.alt-link small {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 400;
}

/* ============================================================

   STICKY BOTTOM CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--blue-deep);
  color: #fff;
  border-top: 3px solid var(--red);
  padding: 12px 0;
  z-index: 30;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
}
.sticky-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.sticky-inner span { font-size: 13.5px; color: var(--grey-100); }
.sticky-inner b { color: var(--yellow); font-weight: 700; }
@media (max-width: 600px) {
  .sticky-inner span { display: none; }
  .sticky-inner { justify-content: center; }
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 600px) {
  .hero { padding: 40px 0 50px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }
  .pain-cta { padding: 24px; }
  .calc { padding: 24px 18px; }
  .g-seal { width: 160px; height: 160px; }
  .g-seal-inner b { font-size: 22px; }
  .section-h { font-size: 26px; }
}

/* ============================================================

/* ============================================================
   PRACOVNÁ VERZIA — dočasné upozornenie nad formulárom
   ============================================================ */
.calc-wip {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto 22px;
  padding: 12px 16px;
  background: var(--note-bg);
  border: 1px solid var(--note-border);
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  color: var(--note-ink);
  font-size: 14px;
  line-height: 1.5;
}
.calc-wip b { font-weight: 800; }
@media (max-width: 600px) {
  .calc-wip { font-size: 13px; padding: 10px 12px; }
}
