:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #dfe6ef;
  --primary: #0b6bcb;
  --primary-dark: #064f99;
  --green: #0f8a62;
  --gold: #b7791f;
  --red: #c24145;
  --shadow: 0 16px 40px rgba(23, 32, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.eyebrow {
  color: var(--muted);
  font-size: 13px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  color: #354155;
  font-size: 14px;
}

.main-nav a:hover,
.section-head a:hover,
.footer-links a:hover,
.article-card a:hover,
.breadcrumb a:hover {
  color: var(--primary);
}

.hero,
.page-hero,
.section,
.ad-split,
.seo-copy,
.contact-band,
.contact-card,
.search-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 32px;
  align-items: stretch;
  padding: 56px 0 28px;
}

.hero-copy,
.page-hero {
  min-height: 420px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 107, 203, 0.10), rgba(15, 138, 98, 0.10)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-copy::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.hero-copy > *,
.page-hero > * {
  position: relative;
}

.eyebrow {
  margin: 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 66px);
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
}

h3 {
  font-size: 19px;
}

.hero-text,
.page-hero > p,
.tool-hero > p {
  max-width: 760px;
  color: #334155;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.button.primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: #172033;
  box-shadow: var(--shadow);
}

.hero-panel a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero-panel span {
  font-size: 18px;
  font-weight: 800;
}

.hero-panel small {
  color: #cbd5e1;
}

.search-band,
.contact-band,
.ad-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 22px;
  border-radius: 8px;
  background: #e9f5f0;
  border: 1px solid #cce6dc;
}

.search-band p,
.ad-inline p,
.contact-band p {
  margin: 4px 0 0;
  color: var(--muted);
}

.search-band a,
.ad-inline a,
.contact-band a {
  color: var(--green);
  font-weight: 800;
}

.section {
  padding: 50px 0 0;
}

.section.muted {
  width: 100%;
  margin-top: 54px;
  padding: 50px max(18px, calc((100vw - 1180px) / 2)) 54px;
  background: #edf2f7;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head.compact {
  margin-bottom: 14px;
}

.section-head a,
.count {
  color: var(--primary);
  font-weight: 800;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-tool-grid,
.directory-tool-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.all-tools-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tool-card,
.article-card,
.category-card,
.feature-grid > div,
.side-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(23, 32, 51, 0.05);
}

.tool-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 18px;
}

.home-tool-grid .tool-card,
.directory-tool-grid .tool-card {
  min-height: 260px;
  padding: 16px;
}

.tool-card-compact {
  min-height: auto;
}

.tool-card-head,
.tool-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tool-card-head img,
.tool-title-row img {
  flex: 0 0 auto;
  border-radius: 8px;
  background: #f8fafc;
}

.tool-card h3 a {
  color: var(--ink);
}

.tool-card h3 a:hover {
  color: var(--primary);
}

.tool-card-head p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.tool-summary {
  flex: 1;
  color: #475569;
}

.home-tool-grid .tool-summary,
.directory-tool-grid .tool-summary,
.article-card p,
.category-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.home-tool-grid .tool-summary,
.directory-tool-grid .tool-summary {
  -webkit-line-clamp: 4;
}

.article-card p,
.category-card p {
  -webkit-line-clamp: 3;
}

.tag-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span,
.pill-row span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.category-grid,
.article-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card,
.article-card,
.feature-grid > div {
  padding: 18px;
}

.category-card p,
.article-card p,
.feature-grid p {
  color: var(--muted);
}

.category-card span,
.article-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.ad-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 54px;
}

.ad-panel {
  min-height: 250px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  box-shadow: var(--shadow);
}

.ad-panel.training {
  background:
    linear-gradient(135deg, rgba(11, 107, 203, 0.88), rgba(15, 138, 98, 0.82)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.ad-panel.geo {
  background:
    linear-gradient(135deg, rgba(23, 32, 51, 0.9), rgba(183, 121, 31, 0.78)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.ad-panel span {
  font-weight: 800;
}

.ad-panel p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.list-stack {
  display: grid;
  gap: 12px;
}

.contact-band {
  margin-top: 54px;
  margin-bottom: 54px;
  background: #fff7e8;
  border-color: #f3ddb5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-contact a {
  color: var(--primary);
  font-weight: 800;
}

.page-hero {
  margin-top: 28px;
  min-height: 320px;
}

.page-hero.landing {
  min-height: 380px;
}

.geo-landing {
  background:
    linear-gradient(135deg, rgba(23, 32, 51, 0.1), rgba(183, 121, 31, 0.14)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto 0;
  align-items: start;
}

.article-main {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-main.narrow {
  width: min(860px, calc(100% - 36px));
  margin: 28px auto 60px;
}

.article-main section + section {
  margin-top: 30px;
}

.article-main h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.article-main p,
.article-main li {
  color: #405066;
}

.article-main a {
  color: var(--primary);
  font-weight: 700;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 12px;
  border-radius: 8px;
  background: #f5f8fb;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pros-cons > div {
  padding: 18px;
  border-radius: 8px;
  background: #f8fafc;
}

.conversion-box {
  padding: 24px;
  border-radius: 8px;
  background: #e9f5f0;
  border: 1px solid #cce6dc;
}

.article-side {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 14px;
}

.side-card {
  padding: 18px;
}

.side-card h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.side-card a {
  display: block;
  padding: 8px 0;
  color: var(--primary);
  font-weight: 700;
}

.side-card.accent {
  background: #fff7e8;
}

.seo-copy {
  margin-top: 36px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.seo-copy p {
  color: var(--muted);
}

.ad-inline {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
}

.contact-card {
  width: min(760px, calc(100% - 36px));
  margin: 30px auto 60px;
  padding: 28px;
}

.contact-card a {
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .two-columns,
  .article-layout,
  .ad-split {
    grid-template-columns: 1fr;
  }

  .tool-grid,
  .home-tool-grid,
  .directory-tool-grid,
  .category-grid,
  .article-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-side {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .section,
  .page-hero,
  .seo-copy,
  .contact-band,
  .search-band {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy,
  .page-hero {
    min-height: 0;
    padding: 26px 20px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-panel,
  .tool-grid,
  .home-tool-grid,
  .directory-tool-grid,
  .category-grid,
  .article-grid,
  .feature-grid,
  .check-list,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .section-head,
  .search-band,
  .contact-band,
  .ad-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-main {
    padding: 20px;
  }
}

/* Visual refresh for the service-oriented v1.1 pages. */
:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --ink: #121a2b;
  --muted: #59677c;
  --line: #d9e2ef;
  --primary: #1267e8;
  --primary-dark: #083f9d;
  --green: #0b8f74;
  --gold: #d08a16;
  --cyan: #0891b2;
  --shadow: 0 18px 46px rgba(18, 26, 43, 0.10);
}

body {
  background:
    linear-gradient(180deg, #eef5ff 0, #f8fafc 360px, #f3f6fb 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(18, 26, 43, 0.06);
}

.brand-mark {
  background: linear-gradient(135deg, #1267e8, #0b8f74);
}

.main-nav a {
  padding: 6px 8px;
  border-radius: 7px;
}

.main-nav a:hover {
  background: #eef6ff;
}

.hero-upgraded {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  padding-top: 42px;
}

.hero-copy,
.page-hero {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.70)),
    url("https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero-copy::before,
.page-hero::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(235, 248, 255, 0.74));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.hero-copy h1 {
  font-size: clamp(44px, 6vw, 78px);
}

.hero-text {
  max-width: 820px;
  color: #2f3e55;
}

.button {
  box-shadow: 0 8px 22px rgba(18, 26, 43, 0.06);
}

.button.primary {
  background: linear-gradient(135deg, #1267e8, #0b8f74);
  border-color: transparent;
}

.button.ghost {
  background: #121a2b;
  color: #fff;
  border-color: #121a2b;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 30px;
}

.hero-metrics span {
  padding: 12px;
  border: 1px solid rgba(18, 103, 232, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #4a5870;
  font-size: 14px;
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.hero-panel {
  align-content: start;
  background:
    linear-gradient(145deg, rgba(18, 26, 43, 0.96), rgba(8, 63, 157, 0.88)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.hero-panel-title {
  grid-column: 1 / -1;
  padding: 4px 4px 8px;
  color: #fff;
}

.hero-panel-title span {
  display: block;
  font-size: 22px;
}

.hero-panel-title small {
  color: #dbeafe;
}

.hero-panel a:hover,
.tool-card:hover,
.category-card:hover,
.article-card:hover,
.feature-grid > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(18, 26, 43, 0.10);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 36px));
  margin: 8px auto 0;
}

.service-strip a {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(18, 103, 232, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.service-strip p {
  margin: 0;
  color: var(--muted);
}

.tool-card,
.article-card,
.category-card,
.feature-grid > div,
.side-card,
.contact-card,
.value-card,
.faq-grid > div,
.timeline-item {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tool-card {
  border-color: rgba(18, 103, 232, 0.10);
}

.category-card {
  min-height: 210px;
}

.section.muted {
  background: linear-gradient(180deg, #eaf2fb, #f5f8fc);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: center;
}

.split-section > div:first-child p {
  color: var(--muted);
}

.pill-row.large span {
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid rgba(18, 103, 232, 0.16);
  color: #12345e;
  font-size: 15px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: stretch;
  width: min(1180px, calc(100% - 36px));
  margin: 32px auto 0;
  padding: clamp(28px, 5vw, 54px);
  min-height: 460px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(18, 26, 43, 0.90), rgba(8, 63, 157, 0.74)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80") center/cover;
  box-shadow: var(--shadow);
}

.service-hero h1 {
  max-width: 840px;
}

.service-hero .hero-text,
.service-hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.service-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.service-panel span {
  color: #dbeafe;
  font-weight: 800;
}

.service-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 34px;
  line-height: 1.1;
}

.service-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.service-panel a {
  color: #fff;
  font-weight: 800;
}

.geo-hero {
  background:
    linear-gradient(115deg, rgba(18, 26, 43, 0.90), rgba(11, 143, 116, 0.70)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.service-grid > div {
  min-height: 220px;
}

.service-grid h2 {
  font-size: 22px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--primary);
  font-weight: 900;
}

.timeline-item p,
.value-card p,
.faq-grid p,
.compare-section li {
  color: var(--muted);
}

.audience-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
}

.value-card {
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.value-card.warm {
  background: #fff7e8;
  border-color: #f1d6a6;
}

.value-card a {
  color: var(--primary);
  font-weight: 800;
}

.check-list.single {
  grid-template-columns: 1fr;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.industry-grid div {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(11, 143, 116, 0.18);
  border-radius: 8px;
  background: #fff;
  color: #0a5648;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(18, 26, 43, 0.05);
}

.compare-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-section > div {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.compare-section > div:last-child {
  background: #ecfdf7;
  border-color: #bfe8d8;
}

.rich-text p {
  margin: 0 0 14px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison-grid > div,
.faq-list details {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.comparison-grid p,
.faq-list p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.ad-panel.training {
  background:
    linear-gradient(135deg, rgba(18, 103, 232, 0.82), rgba(11, 143, 116, 0.76)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.ad-panel.geo {
  background:
    linear-gradient(135deg, rgba(18, 26, 43, 0.88), rgba(208, 138, 22, 0.72)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1200&q=80") center/cover;
}

@media (max-width: 980px) {
  .hero-upgraded,
  .service-strip,
  .split-section,
  .service-hero,
  .audience-section,
  .compare-section {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 240px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero,
  .service-strip,
  .service-hero,
  .split-section,
  .audience-section {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-copy h1,
  .service-hero h1 {
    font-size: 36px;
  }

  .hero-metrics,
  .industry-grid,
  .comparison-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 24px 18px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}
