/* FieldShed v2 — palette from VISUAL-BRIEF */
:root {
  --navy: #0B2C4A;
  --sky: #1B6CA8;
  --teal: #2A9D8F;
  --sand: #F4F1EA;
  --ink: #1A1A1A;
  --muted: #5C6B7A;
  --line: #D7DEE5;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(11, 44, 74, 0.06);
  --max: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf9f6;
  line-height: 1.65;
}

a { color: var(--sky); }
a:hover { color: var(--navy); }

header, main, footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--card);
  position: sticky;
  top: 0;
  z-index: 20;
}

header .brand {
  font-weight: 750;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

nav a {
  margin-inline-end: 0.9rem;
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--muted);
}
nav a:hover { color: var(--navy); }

.lang { display: flex; gap: 0.5rem; margin-inline-start: auto; font-size: 0.9rem; }
.lang a { text-decoration: none; color: var(--muted); padding: 0.2rem 0.45rem; border-radius: 6px; }
.lang a.active { color: var(--navy); font-weight: 650; background: var(--sand); }

.hidden { display: none !important; }
.section-he { direction: rtl; }

/* ——— Trust strip ——— */
.trust-strip {
  background: #fff8e6;
  border: 1px solid #f0e0a8;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  margin: 1.25rem 0 1.5rem;
}
.trust-strip p { margin: 0; color: var(--ink); }

/* ——— Platform caveat ——— */
.caveat-strip {
  background: #eef6fb;
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--sky);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}
.caveat-strip p { margin: 0; }

/* ——— Hero ——— */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
  align-items: center;
  background: linear-gradient(145deg, var(--navy) 0%, #123a5c 55%, #1a4f6e 100%);
  color: #f5f8fb;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  margin: 0 0 1.75rem;
  overflow: hidden;
}
.hero__copy h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.22;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__sub { margin: 0 0 1.15rem; color: #c9d7e4; font-size: 1.05rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 0.85rem; }
.hero__soft { margin: 0; font-size: 0.92rem; color: #a8bccf; }
.hero__soft a { color: #d7ecff; }

.hero__visual--css {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art {
  position: relative;
  width: min(100%, 320px);
  height: 180px;
}
.hero-art__van {
  position: absolute;
  inset-inline-start: 8%;
  bottom: 18%;
  width: 58%;
  height: 42%;
  background: var(--teal);
  border-radius: 10px 14px 6px 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.hero-art__van::before {
  content: "";
  position: absolute;
  inset-inline-start: 12%;
  top: -28%;
  width: 38%;
  height: 36%;
  background: #1e7a70;
  border-radius: 8px 8px 0 0;
}
.hero-art__van::after {
  content: "";
  position: absolute;
  inset-inline-end: 10%;
  bottom: -10%;
  width: 18%;
  height: 18%;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: -42% 0 0 var(--navy);
}
.hero-art__tablet {
  position: absolute;
  inset-inline-end: 4%;
  top: 10%;
  width: 42%;
  height: 62%;
  background: var(--sand);
  border-radius: 12px;
  border: 3px solid #dfe6ec;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}
.hero-art__tablet::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  background:
    linear-gradient(var(--sky), var(--sky)) 0 0 / 70% 10% no-repeat,
    linear-gradient(#fff, #fff) 0 22% / 100% 28% no-repeat,
    linear-gradient(var(--teal), var(--teal)) 0 58% / 55% 10% no-repeat,
    linear-gradient(var(--line), var(--line)) 0 76% / 80% 8% no-repeat;
  border-radius: 6px;
  opacity: 0.95;
}

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding: 1.35rem 1.15rem; }
  .hero__visual--css { min-height: 140px; order: -1; }
  .hero-art { height: 140px; }
}

/* ——— Buttons ——— */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 650;
  padding: 0.7rem 1.15rem;
  border-radius: 10px;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.btn--primary {
  background: var(--sky);
  color: #fff !important;
}
.btn--primary:hover { background: #155a8f; color: #fff !important; }
.btn--ghost {
  background: transparent;
  color: #e8f2fa !important;
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--secondary {
  background: var(--sand);
  color: var(--navy) !important;
  border-color: var(--line);
}
.btn--secondary:hover { border-color: var(--sky); }

/* Outside hero: ghost needs dark treatment */
.cta-band .btn--ghost,
.teaser-card .btn--ghost {
  color: var(--navy) !important;
  border-color: var(--line);
}

/* ——— Intro / section chrome ——— */
.intro-band {
  margin: 0 0 2rem;
  font-size: 1.02rem;
  color: var(--ink);
}
.intro-band p { margin: 0 0 0.85rem; }

section header { all: unset; display: block; margin-bottom: 1rem; }
section header h2,
.audience > h2,
.benefits-strip > h2,
.caveats > h2,
.pricing-soft > h2,
.teaser-card > h2,
.cta-band > h2,
.coming-next > h2,
.compare-soft > h2,
.featured-product > header h2,
.seat-math > header h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: var(--navy);
  letter-spacing: -0.015em;
}
.section-lead, .eyebrow {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.industries, .features, .featured-product, .audience,
.benefits-strip, .caveats, .pricing-soft, .teaser-card,
.cta-band, .coming-next, .seat-math, .compare-soft {
  margin: 0 0 2.25rem;
}

/* ——— Industries grid ——— */
.industries__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .industries__grid { grid-template-columns: 1fr; }
}

.industry-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1.15rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
}
.industry-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 0.35rem;
  background:
    radial-gradient(circle at 30% 30%, #fff8, transparent 45%),
    linear-gradient(145deg, var(--sky), var(--teal));
}
.industry-card[data-trade="electrical"]::before { background: linear-gradient(145deg, #1B6CA8, #0B2C4A); }
.industry-card[data-trade="plumbing"]::before { background: linear-gradient(145deg, #2A9D8F, #1B6CA8); }
.industry-card[data-trade="hvac"]::before { background: linear-gradient(145deg, #5C6B7A, #1B6CA8); }
.industry-card[data-trade="cleaning"]::before { background: linear-gradient(145deg, #2A9D8F, #7ec8b8); }
.industry-card[data-trade="locksmith"]::before { background: linear-gradient(145deg, #0B2C4A, #5C6B7A); }
.industry-card[data-trade="pool"]::before { background: linear-gradient(145deg, #1B6CA8, #4db8e8); }
.industry-card[data-trade="pest"]::before { background: linear-gradient(145deg, #2A9D8F, #0B2C4A); }
.industry-card[data-trade="lawn"]::before { background: linear-gradient(145deg, #3d9b5f, #2A9D8F); }
.industry-card[data-trade="appliance"]::before { background: linear-gradient(145deg, #5C6B7A, #2A9D8F); }

.industry-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}
.industry-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}

/* ——— Features row ——— */
.features__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 900px) {
  .features__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .features__row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .features__row .feature-card {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.feature-card::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sand);
  border: 2px solid #cfe0ec;
  margin-bottom: 0.65rem;
  box-shadow: inset 0 0 0 8px transparent, inset 0 0 0 10px var(--sky);
}
.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: var(--navy);
}
.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ——— Featured product / cards ——— */
.featured-product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}
.featured-product .bullets { padding-inline-start: 1.2rem; margin: 0.75rem 0 1rem; }
.soft-pricing {
  background: var(--sand);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}
@media (max-width: 640px) {
  .card-row { grid-template-columns: 1fr; }
}
a.card.card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: border-color .15s, box-shadow .15s;
}
a.card.card--link:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow);
}
a.card.card--highlight {
  background: linear-gradient(160deg, #e8f6f3, var(--sand));
  border-color: #b7ddd6;
}
a.card.card--link h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.05rem;
}
a.card.card--link p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ——— Audience chips ——— */
.chip-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (max-width: 640px) {
  .chip-grid { grid-template-columns: 1fr; }
}
.chip-grid li {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

/* ——— Benefits / caveats ——— */
.benefits-list { padding-inline-start: 1.25rem; margin: 0.5rem 0 0; }
.benefits-list li { margin-bottom: 0.65rem; }
.caveats ul { padding-inline-start: 1.2rem; }
.caveats li { margin-bottom: 0.55rem; }

/* ——— Pricing table ——— */
.pricing-soft {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
}
.pricing-soft table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 0.85rem 0;
}
.pricing-soft th, .pricing-soft td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  text-align: start;
}
.pricing-soft th { background: var(--sand); color: var(--navy); }
.pricing-soft .note { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ——— Teaser / CTA / coming next ——— */
.teaser-card {
  background: linear-gradient(160deg, #eef7f5, var(--sand));
  border: 1px solid #b7ddd6;
  border-radius: 16px;
  padding: 1.35rem;
}
.teaser-card .btn { margin-top: 0.5rem; }

.cta-band {
  background: var(--navy);
  color: #e8eef4;
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.cta-band h2 { color: #fff !important; }
.cta-band p { color: #c5d3e0; }
.cta-band__alt { margin: 0.85rem 0 0; font-size: 0.92rem; }
.cta-band__alt a { color: #d7ecff; }
.cta-band .btn--primary { margin-top: 0.35rem; }

.coming-next {
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
}
.coming-next ul { margin: 0.5rem 0 0; padding-inline-start: 1.2rem; color: var(--muted); }

/* ——— Seat math ——— */
.math-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 900px) {
  .math-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .math-cards { grid-template-columns: 1fr; }
}
.math-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  position: relative;
}
.math-card__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.math-card h3 { margin: 0 0 0.35rem; color: var(--navy); font-size: 1rem; }
.math-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.math-verdict {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: var(--card);
  border-inline-start: 4px solid var(--teal);
  border-radius: 8px;
  font-size: 0.95rem;
}

/* ——— Compare soft ——— */
.compare-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.compare-cards li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.compare-cards h3 { margin: 0 0 0.35rem; color: var(--navy); font-size: 1.02rem; }
.compare-cards p { margin: 0; color: var(--muted); font-size: 0.94rem; }

footer {
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-bottom: 2rem;
}
footer p { margin: 0.25rem 0; }

/* RTL tweaks */
[dir="rtl"] .lang { margin-inline-start: 0; margin-inline-end: auto; }
[dir="rtl"] nav a { margin-inline-end: 0; margin-inline-start: 0.9rem; }
[dir="rtl"] .caveat-strip {
  border-inline-start: none;
  border-inline-end: 4px solid var(--sky);
}
[dir="rtl"] .math-verdict {
  border-inline-start: none;
  border-inline-end: 4px solid var(--teal);
}

/* ——— Hub cards (home) ——— */
.hub-cards { margin: 0 0 2.25rem; }
.card-row--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 760px) {
  .card-row--3 { grid-template-columns: 1fr; }
}

/* ——— Page hero (hubs / articles) ——— */
.page-hero {
  margin: 0 0 1.75rem;
  padding: 1.35rem 0 0.25rem;
}
.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.page-hero .lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}
.breadcrumb {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--sky); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ——— Guide / hub card grids ——— */
.guide-grid {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 640px) {
  .guide-grid { grid-template-columns: 1fr; }
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 100%;
}
a.guide-card {
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
a.guide-card:hover {
  border-color: var(--sky);
  box-shadow: 0 6px 22px rgba(11, 44, 74, 0.1);
}
.guide-card .tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  background: #e8f6f3;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.guide-card h3 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--navy);
}
.guide-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}
.guide-card .meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ——— Article layout ——— */
.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.75rem;
  align-items: start;
  margin: 0 0 2rem;
}
@media (max-width: 860px) {
  .article-layout { grid-template-columns: 1fr; }
}
.article-toc {
  position: sticky;
  top: 4.5rem;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
}
.article-toc h2 {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
}
.article-toc ol {
  margin: 0;
  padding-inline-start: 1.1rem;
  color: var(--muted);
}
.article-toc a {
  text-decoration: none;
  color: var(--navy);
}
.article-toc a:hover { color: var(--sky); }
.article-toc li { margin-bottom: 0.35rem; }

.article-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.6rem;
  box-shadow: var(--shadow);
}
.article-body > h2 {
  margin: 1.6rem 0 0.55rem;
  font-size: 1.28rem;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.article-body > h2:first-child { margin-top: 0; }
.article-body > h3 {
  margin: 1.15rem 0 0.4rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.article-body p { margin: 0 0 0.9rem; }
.article-body ul, .article-body ol {
  margin: 0 0 1rem;
  padding-inline-start: 1.25rem;
}
.article-body li { margin-bottom: 0.4rem; }
.article-intro {
  font-size: 1.05rem;
  color: var(--ink);
  border-inline-start: 3px solid var(--teal);
  padding-inline-start: 0.9rem;
  margin-bottom: 1.25rem;
}
[dir="rtl"] .article-intro {
  border-inline-start: none;
  border-inline-end: 3px solid var(--teal);
}

/* ——— FAQ ——— */
.faq {
  margin: 1.5rem 0 0;
}
.faq h2 {
  margin: 0 0 0.75rem;
  font-size: 1.28rem;
  color: var(--navy);
}
.faq details {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.55rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--navy);
}
.faq details p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Comparison table ——— */
.compare-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0.8rem;
  text-align: start;
  vertical-align: top;
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 650;
  white-space: nowrap;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) td { background: var(--sand); }
.compare-table .check { color: var(--teal); font-weight: 700; }
.compare-table .soft { color: var(--muted); }

/* ——— Criteria / methodology / tool cards ——— */
.criteria-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.criteria-list li {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.criteria-list strong { color: var(--navy); display: block; margin-bottom: 0.2rem; }
.criteria-list span { color: var(--muted); font-size: 0.92rem; }

.tool-cards {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.tool-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}
.tool-card.tool-card--featured {
  border-color: #b7ddd6;
  background: linear-gradient(160deg, #e8f6f3, var(--card));
}
.tool-card h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.1rem;
}
.tool-card .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  background: #e8f6f3;
  padding: 0.12rem 0.45rem;
  border-radius: 6px;
  margin-bottom: 0.4rem;
}
.tool-card p { margin: 0 0 0.55rem; color: var(--muted); font-size: 0.94rem; }
.tool-card ul { margin: 0.35rem 0 0.65rem; padding-inline-start: 1.15rem; font-size: 0.92rem; }
.tool-card .tool-card__cta { margin-top: 0.5rem; }

.methodology {
  background: var(--sand);
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.methodology h2 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: var(--navy);
}
.methodology p { margin: 0 0 0.55rem; }
.methodology p:last-child { margin-bottom: 0; }

/* Soft CTA token comment area stays in HTML; visual soft-cta box */
.soft-cta {
  background: var(--navy);
  color: #e8eef4;
  border-radius: 16px;
  padding: 1.35rem 1.3rem;
  text-align: center;
  margin: 1.5rem 0 0;
}
.soft-cta h2 { color: #fff !important; margin: 0 0 0.45rem; font-size: 1.2rem; }
.soft-cta p { color: #c5d3e0; margin: 0 0 0.85rem; }
.soft-cta .btn--primary { margin-top: 0.15rem; }
.soft-cta .note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #a8bccf;
}

/* Section chrome for new page types */
.hub-section, .article-page, .compare-page {
  margin: 0 0 2rem;
}

.related {
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.related h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.related ul { margin: 0; padding-inline-start: 1.2rem; }
.related li { margin-bottom: 0.35rem; }
