/* ====================================================================
   SEO Cost Calculator — page-level layout (hero, sections, table, FAQ).
   The wizard widget itself is styled in calculator-core.css.
==================================================================== */

.seo-cost-calculator-page {
  --p-black:    #0a0a0a;
  --p-text:     #1f2937;
  --p-muted:    #6b7280;
  --p-border:   #e5e7eb;
  --p-bg-soft:  #f6f8fb;
  --p-red:      #F40009;
  --p-blue:     #0A66C2;

  color: var(--p-text);
  background: #fff;
}

.seo-cost-calculator-page .container { max-width: 1180px; }

/* ---------- Hero ---------- */
.scc-hero {
  position: relative;
  padding: 110px 0 70px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 90% -10%, rgba(10, 102, 194, 0.35), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(244, 0, 9, 0.22), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #131722 100%);
}

.scc-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.scc-h1 {
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-size: clamp(36px, 5.6vw, 64px);
  color: #fff;
}

.scc-lead {
  margin: 0 auto 12px;
  max-width: 780px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}
.scc-lead-sub {
  margin: 0 auto;
  max-width: 720px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.scc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.scc-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.scc-hero-meta span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p-red);
}

/* ---------- Generic sections ---------- */
.scc-section {
  padding: 80px 0;
}
.scc-section--soft { background: var(--p-bg-soft); }
.scc-section--dark {
  background:
    radial-gradient(1100px 520px at 90% -10%, rgba(10, 102, 194, 0.35), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(244, 0, 9, 0.22), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #131722 100%);
  color: #fff;
}
.scc-section--dark .scc-section-title,
.scc-section--dark .scc-section-eyebrow { color: #fff; }
.scc-section--dark .scc-section-sub { color: rgba(255, 255, 255, 0.7); }

.scc-section-eyebrow {
  display: block;
  margin: 0 auto 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-blue);
}
.scc-section-title {
  margin: 0 auto 14px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--p-black);
  max-width: 900px;
}
.scc-section-sub {
  margin: 0 auto 40px;
  max-width: 780px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--p-muted);
}

/* ---------- Benefits (3 cards) ---------- */
.scc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.scc-benefit {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 16px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.scc-benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -22px rgba(10, 102, 194, 0.25);
}
.scc-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 102, 194, 0.1);
  color: var(--p-blue);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}
.scc-benefit h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--p-black);
}
.scc-benefit p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--p-muted);
}

/* ---------- Calculator wrap ---------- */
.scc-calculator-wrap {
  position: relative;
  padding: 70px 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(10, 102, 194, 0.18), transparent 60%),
    linear-gradient(160deg, #eaf2fb 0%, #d3e6f8 50%, #b6d4f3 100%);
}
.scc-calculator-shell {
  position: relative;
}

/* ---------- White Label tier cards ---------- */
.scc-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.scc-tier {
  position: relative;
  padding: 30px 28px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(4px);
  transition: transform 200ms ease, border-color 200ms ease;
}
.scc-tier:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.25); }
.scc-tier--featured {
  border-color: var(--p-red);
  background:
    linear-gradient(180deg, rgba(244, 0, 9, 0.18) 0%, rgba(255, 255, 255, 0.04) 60%);
}
.scc-tier-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 4px 12px;
  background: var(--p-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.scc-tier h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.scc-tier-sub {
  margin: 0 0 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.scc-tier-discount {
  margin: 0 0 18px;
  font-size: 36px;
  font-weight: 800;
  color: var(--p-red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.scc-tier-discount small {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 4px;
}
.scc-tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.scc-tier li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.scc-tier li:first-child { border-top: 0; }
.scc-tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--p-red);
  border-bottom: 2px solid var(--p-red);
  transform: rotate(-45deg);
}

/* ---------- Industry pricing table ---------- */
.scc-pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--p-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px -28px rgba(10, 10, 10, 0.15);
}
.scc-pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.scc-pricing-table th,
.scc-pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--p-border);
  font-size: 14px;
  vertical-align: top;
}
.scc-pricing-table thead th {
  background: var(--p-bg-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--p-muted);
}
.scc-pricing-table tbody tr:hover { background: var(--p-bg-soft); }
.scc-pricing-table .scc-industry { font-weight: 600; color: var(--p-black); white-space: nowrap; }
.scc-pricing-table .scc-price { font-weight: 700; color: var(--p-blue); white-space: nowrap; }
.scc-pricing-table .scc-notes { color: var(--p-muted); line-height: 1.55; }
.scc-pricing-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- "What affects cost" 8 numbered cards ---------- */
.scc-factors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.scc-factor {
  position: relative;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.scc-factor:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(10, 10, 10, 0.18);
}
.scc-factor-num {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--p-blue);
  margin-bottom: 6px;
  line-height: 1;
}
.scc-factor h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--p-black);
}
.scc-factor p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--p-muted);
}

/* ---------- Marketing vs Advertising explainer (2 cards) ---------- */
.scc-vs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.scc-vs-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 16px;
}
.scc-vs-card--blue { border-top: 4px solid var(--p-blue); }
.scc-vs-card--red  { border-top: 4px solid var(--p-red); }
.scc-vs-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--p-black);
}
.scc-vs-card .scc-vs-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.scc-vs-card--blue .scc-vs-tag { background: rgba(10, 102, 194, 0.1); color: var(--p-blue); }
.scc-vs-card--red  .scc-vs-tag { background: rgba(244, 0, 9, 0.1);  color: var(--p-red); }
.scc-vs-card p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--p-muted);
}
.scc-vs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.scc-vs-card li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14px;
  color: var(--p-text);
}
.scc-vs-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--p-blue);
  border-bottom: 2px solid var(--p-blue);
  transform: rotate(-45deg);
}
.scc-vs-card--red li::before {
  border-left-color: var(--p-red);
  border-bottom-color: var(--p-red);
}

/* ---------- FAQ accordion ---------- */
.scc-faq {
  max-width: 900px;
  margin: 0 auto;
}
.scc-faq-item {
  border: 1px solid var(--p-border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.scc-faq-item[open] {
  border-color: var(--p-blue);
  box-shadow: 0 14px 30px -22px rgba(10, 102, 194, 0.4);
}
.scc-faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--p-black);
}
.scc-faq-q::-webkit-details-marker { display: none; }
.scc-faq-q-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.scc-faq-q-icon::before,
.scc-faq-q-icon::after {
  content: "";
  position: absolute;
  background: var(--p-blue);
  border-radius: 2px;
}
.scc-faq-q-icon::before {
  inset: 9px 2px 9px 2px;
}
.scc-faq-q-icon::after {
  inset: 2px 9px 2px 9px;
  transition: transform 200ms ease;
}
.scc-faq-item[open] .scc-faq-q-icon::after { transform: scaleY(0); }

.scc-faq-a {
  padding: 0 22px 20px;
  color: var(--p-muted);
  font-size: 15px;
  line-height: 1.7;
}
.scc-faq-a p { margin: 0 0 10px; }
.scc-faq-a p:last-child { margin: 0; }

/* ---------- Other Calculators ---------- */
.scc-other-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.scc-other-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--p-text);
  transition: border-color 160ms ease, transform 160ms ease;
}
.scc-other-card:hover {
  border-color: var(--p-blue);
  transform: translateY(-2px);
  color: var(--p-text);
}
.scc-other-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--p-black);
}
.scc-other-card p {
  margin: 0;
  font-size: 13px;
  color: var(--p-muted);
}
.scc-other-card .scc-arrow {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--p-blue);
}

/* ---------- Final CTA ---------- */
.scc-cta-final { text-align: center; }
.scc-cta-final .scc-section-title { color: #fff; max-width: 760px; }
.scc-cta-final .scc-section-sub { color: rgba(255, 255, 255, 0.75); }
.scc-cta-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.scc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 80ms ease, background 160ms ease, color 160ms ease;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.scc-btn--primary {
  background: var(--p-red);
  color: #fff;
  box-shadow: 0 14px 28px -10px rgba(244, 0, 9, 0.55);
}
.scc-btn--primary:hover { background: #c40008; color: #fff; }
.scc-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.scc-btn--ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .scc-benefits-grid,
  .scc-tiers-grid,
  .scc-other-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scc-factors-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scc-vs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .scc-hero { padding: 95px 0 56px; }
  .scc-section { padding: 56px 0; }
  .scc-benefits-grid,
  .scc-tiers-grid,
  .scc-factors-grid,
  .scc-other-grid { grid-template-columns: 1fr; }
  .scc-tier-tag { left: 22px; }
}

/* ====================================================================
   New ranking-pass sections — HowTo, CPC, Geo, About, ROI, Glossary
==================================================================== */

/* ---------- HowTo (4 numbered steps) ---------- */
.scc-howto-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: howto;
}
.scc-howto-step {
  position: relative;
  padding: 26px 22px 22px;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.scc-howto-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(10, 10, 10, 0.18);
}
.scc-howto-num {
  display: inline-block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--p-blue) 0%, var(--p-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.scc-howto-step h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--p-black);
}
.scc-howto-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--p-muted);
}

/* ---------- SEO vs Paid Ads CPC (2 cards) ---------- */
.scc-cpc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 18px;
}
.scc-cpc-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 16px;
  border-top: 4px solid var(--p-blue);
}
.scc-cpc-card--alt { border-top-color: var(--p-red); }
.scc-cpc-card .scc-vs-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(10, 102, 194, 0.1);
  color: var(--p-blue);
}
.scc-cpc-card--alt .scc-vs-tag {
  background: rgba(244, 0, 9, 0.1);
  color: var(--p-red);
}
.scc-cpc-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--p-black);
}
.scc-cpc-formula {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  background: var(--p-bg-soft);
  border: 1px solid var(--p-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--p-text);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.scc-cpc-card p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--p-muted);
}
.scc-cpc-card ul { list-style: none; padding: 0; margin: 0; }
.scc-cpc-card li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14px;
  color: var(--p-text);
}
.scc-cpc-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--p-blue);
  border-bottom: 2px solid var(--p-blue);
  transform: rotate(-45deg);
}
.scc-cpc-card--alt li::before {
  border-left-color: var(--p-red);
  border-bottom-color: var(--p-red);
}
.scc-cpc-takeaway {
  max-width: 780px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--p-text);
  padding: 14px 18px;
  background: var(--p-bg-soft);
  border-left: 3px solid var(--p-blue);
  border-radius: 0 10px 10px 0;
}

/* ---------- Geographic pricing (5 cards) ---------- */
.scc-geo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.scc-geo-card {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 14px;
  transition: border-color 160ms ease, transform 200ms ease;
}
.scc-geo-card:hover {
  border-color: var(--p-blue);
  transform: translateY(-2px);
}
.scc-geo-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--p-black);
}
.scc-geo-price {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--p-blue);
  letter-spacing: -0.01em;
}
.scc-geo-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--p-muted);
}

/* ---------- About this tool / E-E-A-T ---------- */
.scc-about-tool .scc-section-eyebrow,
.scc-about-tool .scc-section-title { display: block; }
.scc-about-tool .scc-section-title {
  margin-bottom: 18px;
  text-align: left;
  font-size: clamp(24px, 3vw, 32px);
}
.scc-about-tool p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--p-text);
}
.scc-about-tool a {
  color: var(--p-blue);
  font-weight: 600;
  text-decoration: underline;
}
.scc-about-h3 {
  margin: 22px 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--p-black);
}
.scc-about-meta {
  margin-top: 18px !important;
  padding: 12px 16px;
  background: var(--p-bg-soft);
  border-radius: 10px;
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--p-muted) !important;
}

/* ---------- ROI mini-calculator ---------- */
.scc-roi-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 16px;
  padding: 24px;
  margin: 0 auto 30px;
  max-width: 980px;
  box-shadow: 0 18px 40px -28px rgba(10, 10, 10, 0.12);
}
.scc-roi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.scc-roi-input {
  display: block;
  padding: 12px 14px;
  background: var(--p-bg-soft);
  border: 1.5px solid var(--p-border);
  border-radius: 10px;
  cursor: text;
  transition: border-color 160ms ease;
}
.scc-roi-input:focus-within { border-color: var(--p-blue); }
.scc-roi-input-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--p-muted);
  margin-bottom: 6px;
  line-height: 1.4;
}
.scc-roi-input input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  color: var(--p-black);
  padding: 0;
  font-family: inherit;
}
.scc-roi-input input:focus { outline: none; }

.scc-roi-output {
  background: linear-gradient(160deg, rgba(10, 102, 194, 0.06) 0%, rgba(244, 0, 9, 0.04) 100%);
  border: 1px solid #cfe0f5;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scc-roi-output-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(10, 102, 194, 0.25);
}
.scc-roi-output-row:last-of-type { border-bottom: 0; }
.scc-roi-output-row--big { padding: 14px 0 6px; }
.scc-roi-output-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--p-muted);
  flex: 1;
}
.scc-roi-output-row--big .scc-roi-output-label {
  font-size: 14px;
  color: var(--p-black);
}
.scc-roi-output-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--p-black);
  letter-spacing: -0.01em;
  text-align: right;
}
.scc-roi-output-row--big .scc-roi-output-value {
  font-size: clamp(28px, 3.6vw, 36px);
  letter-spacing: -0.02em;
}
.scc-roi-output-roi.is-neg    { color: #b91c1c; }
.scc-roi-output-roi.is-low    { color: #c2410c; }
.scc-roi-output-roi.is-solid  { color: #15803d; }
.scc-roi-output-roi.is-strong {
  background: linear-gradient(135deg, var(--p-blue) 0%, var(--p-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.scc-roi-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--p-text);
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
}

.scc-roi-h3 {
  margin: 30px 0 14px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--p-black);
  text-align: center;
}

.scc-roi-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 6px;
}
.scc-roi-example {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 14px;
  border-left: 4px solid var(--p-blue);
}
.scc-roi-example:nth-child(2) { border-left-color: var(--p-red); }
.scc-roi-example h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--p-black);
}
.scc-roi-example-math {
  margin: 0 0 8px;
  padding: 8px 12px;
  background: var(--p-bg-soft);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--p-text);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.scc-roi-example-meta {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--p-muted);
  font-style: italic;
}

.scc-roi-tips {
  max-width: 880px;
  margin: 0 auto;
  padding-left: 24px;
  counter-reset: scc-roi-tips;
  list-style: none;
}
.scc-roi-tips li {
  position: relative;
  padding: 12px 0 12px 50px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--p-text);
  border-bottom: 1px solid var(--p-border);
  counter-increment: scc-roi-tips;
}
.scc-roi-tips li:last-child { border-bottom: 0; }
.scc-roi-tips li::before {
  content: counter(scc-roi-tips, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p-blue) 0%, var(--p-red) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Glossary ---------- */
.scc-glossary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}
.scc-glossary-item {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--p-border);
  border-radius: 12px;
  transition: border-color 160ms ease, transform 200ms ease;
}
.scc-glossary-item:hover {
  border-color: var(--p-blue);
  transform: translateY(-2px);
}
.scc-glossary dt {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--p-black);
}
.scc-glossary dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--p-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .scc-howto-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scc-cpc-grid      { grid-template-columns: 1fr; }
  .scc-geo-grid      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scc-roi-shell     { grid-template-columns: 1fr; }
  .scc-roi-examples  { grid-template-columns: 1fr; }
  .scc-glossary      { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .scc-howto-grid { grid-template-columns: 1fr; }
  .scc-geo-grid   { grid-template-columns: 1fr; }
  .scc-roi-grid   { grid-template-columns: 1fr; }
}
