:root {
  --seo-blue: #0f2444;
  --seo-blue-dark: #08182c;
  --seo-red: #d33d4b;
  --seo-paper: #f4f1ec;
  --seo-ink: #142033;
  --seo-muted: #5b6472;
  --seo-line: #d9dde3;
  --seo-white: #fff;
  --seo-width: 76rem;
}

.seo-page {
  color: var(--seo-ink);
  background: var(--seo-white);
}

.seo-wrap {
  width: min(var(--seo-width), calc(100% - 2rem));
  margin-inline: auto;
}

.seo-breadcrumb {
  display: flex;
  width: min(var(--seo-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  align-items: center;
  color: var(--seo-muted);
  font-size: .83rem;
  gap: .5rem;
}

.seo-breadcrumb a { color: var(--seo-blue); }

.seo-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--seo-blue-dark);
}

.seo-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(8 24 44 / .98) 0 48%, rgb(8 24 44 / .78) 70%, rgb(8 24 44 / .42));
  content: "";
}

.seo-hero__image {
  position: absolute;
  inset: 0 0 0 42%;
  width: 58%;
  height: 100%;
  object-fit: cover;
}

.seo-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 34rem;
  align-content: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.seo-hero__copy { max-width: 48rem; }
.seo-kicker {
  margin: 0 0 .7rem;
  color: var(--seo-red);
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-hero h1,
.seo-article-hero h1 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 7vw, 6.25rem);
  line-height: .92;
  text-transform: uppercase;
}

.seo-hero__lead {
  max-width: 43rem;
  margin: 1.35rem 0 0;
  color: rgb(255 255 255 / .88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.seo-actions { display: flex; flex-wrap: wrap; margin-top: 1.65rem; gap: .75rem; }
.seo-button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.15rem;
  border: 2px solid var(--seo-red);
  color: #fff;
  background: var(--seo-red);
  font-weight: 850;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}

.seo-button:hover { color: #fff; background: #b92f3c; }
.seo-button--line { border-color: rgb(255 255 255 / .7); background: transparent; }
.seo-button--dark { border-color: var(--seo-blue); background: var(--seo-blue); }

.seo-trust {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: .65rem;
}

.seo-trust span {
  padding: .48rem .7rem;
  border: 1px solid rgb(255 255 255 / .3);
  color: rgb(255 255 255 / .88);
  background: rgb(8 24 44 / .45);
  font-size: .78rem;
  font-weight: 750;
}

.seo-section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.seo-section--paper { background: var(--seo-paper); }
.seo-section--dark { color: #fff; background: var(--seo-blue); }
.seo-section--tight { padding-block: 2.4rem; }

.seo-section-head { max-width: 49rem; margin-bottom: 2rem; }
.seo-section-head h2,
.seo-prose h2,
.seo-article h2 {
  margin: 0 0 .8rem;
  color: var(--seo-blue);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.seo-section--dark h2 { color: #fff; }
.seo-section-head > p { margin: 0; color: var(--seo-muted); font-size: 1.08rem; line-height: 1.7; }
.seo-section--dark .seo-section-head > p { color: rgb(255 255 255 / .78); }

.seo-prose { max-width: 52rem; }
.seo-prose p,
.seo-article p,
.seo-article li { font-size: 1.03rem; line-height: 1.75; }
.seo-prose a,
.seo-article a { color: #0c568f; text-underline-offset: .18em; }

.seo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.seo-card {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  padding: 1.5rem;
  border-top: 5px solid var(--seo-red);
  color: var(--seo-ink);
  background: #fff;
  box-shadow: 0 12px 32px rgb(15 36 68 / .09);
  text-decoration: none;
}

.seo-card__number { color: var(--seo-red); font-weight: 900; }
.seo-card h3 { margin: auto 0 .6rem; color: var(--seo-blue); font-size: 1.45rem; line-height: 1.1; }
.seo-card p { margin: 0 0 1.2rem; color: var(--seo-muted); line-height: 1.55; }
.seo-card strong { margin-top: auto; color: var(--seo-red); }

.seo-split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); align-items: start; gap: clamp(2rem, 6vw, 5rem); }
.seo-panel {
  padding: 1.6rem;
  border-top: 5px solid var(--seo-red);
  background: var(--seo-paper);
}

.seo-panel h2,
.seo-panel h3 { margin-top: 0; color: var(--seo-blue); }
.seo-panel ul { padding-left: 1.2rem; }
.seo-panel li + li { margin-top: .55rem; }
.seo-note { padding: 1.25rem 1.4rem; border-left: 5px solid var(--seo-red); background: #fff; box-shadow: 0 8px 28px rgb(15 36 68 / .08); }
.seo-note p:last-child { margin-bottom: 0; }

.seo-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.seo-feature {
  padding: 1.45rem;
  border: 1px solid var(--seo-line);
  background: #fff;
}
.seo-feature h3 { margin: 0 0 .55rem; color: var(--seo-blue); font-size: 1.25rem; }
.seo-feature p { margin: 0; color: var(--seo-muted); line-height: 1.65; }

.seo-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: seo-step; gap: 1rem; }
.seo-step { counter-increment: seo-step; padding: 1.35rem; border: 1px solid rgb(255 255 255 / .18); }
.seo-step::before { display: block; margin-bottom: .9rem; color: var(--seo-red); font-size: 2rem; font-weight: 900; content: "0" counter(seo-step); }
.seo-step h3 { margin: 0 0 .5rem; color: #fff; }
.seo-step p { margin: 0; color: rgb(255 255 255 / .75); line-height: 1.55; }

.seo-local-links { display: flex; flex-wrap: wrap; padding: 0; list-style: none; gap: .6rem; }
.seo-local-links a { display: block; padding: .55rem .75rem; border: 1px solid var(--seo-line); color: var(--seo-blue); background: #fff; text-decoration: none; }

.seo-faq { max-width: 58rem; }
.seo-faq details { border-top: 1px solid var(--seo-line); }
.seo-faq details:last-child { border-bottom: 1px solid var(--seo-line); }
.seo-faq summary { padding: 1.1rem .2rem; color: var(--seo-blue); font-size: 1.08rem; font-weight: 800; cursor: pointer; }
.seo-faq details p { max-width: 48rem; margin: 0 0 1.25rem; color: var(--seo-muted); line-height: 1.65; }

.seo-quote { color: #fff; background: var(--seo-blue-dark); }
.seo-quote__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(2rem, 6vw, 5rem); }
.seo-quote h2 { margin: 0 0 1rem; color: #fff; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: .95; text-transform: uppercase; }
.seo-quote__phone { display: inline-block; margin-top: 1rem; color: #fff; font-size: 1.4rem; font-weight: 850; }
.seo-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 1.4rem; background: #fff; gap: 1rem; }
.seo-form label { display: grid; color: var(--seo-ink); font-size: .88rem; font-weight: 750; gap: .35rem; }
.seo-form input,
.seo-form textarea,
.seo-form select { width: 100%; padding: .72rem; border: 1px solid #b9c0ca; color: var(--seo-ink); background: #fff; font: inherit; }
.seo-form__wide { grid-column: 1 / -1; }
.seo-form__consent { display: flex !important; grid-column: 1 / -1; align-items: flex-start; font-weight: 400 !important; gap: .55rem !important; }
.seo-form__consent input { width: 1rem; margin-top: .25rem; }
.seo-form [data-form-status] { grid-column: 1 / -1; margin: 0; color: var(--seo-ink); }

.seo-article-hero { padding-block: clamp(3.5rem, 8vw, 7rem); color: #fff; background: var(--seo-blue-dark); }
.seo-article-hero h1 { max-width: 20ch; font-size: clamp(2.8rem, 6vw, 5.7rem); }
.seo-article-hero__lead { max-width: 52rem; margin: 1.3rem 0; color: rgb(255 255 255 / .82); font-size: 1.2rem; line-height: 1.6; }
.seo-byline { display: flex; flex-wrap: wrap; color: rgb(255 255 255 / .72); font-size: .86rem; gap: 1rem; }
.seo-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 17rem; align-items: start; gap: 3rem; }
.seo-article { min-width: 0; }
.seo-article h2 { margin-top: 3rem; scroll-margin-top: 8rem; }
.seo-article h3 { margin-top: 2rem; color: var(--seo-blue); font-size: 1.4rem; }
.seo-article figure { margin: 2rem 0; }
.seo-article figure img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.seo-article figcaption { margin-top: .55rem; color: var(--seo-muted); font-size: .82rem; }
.seo-toc { position: sticky; top: 1rem; padding: 1.15rem; border-top: 5px solid var(--seo-red); background: var(--seo-paper); }
.seo-toc strong { color: var(--seo-blue); }
.seo-toc ol { margin: .8rem 0 0; padding-left: 1.15rem; }
.seo-toc li + li { margin-top: .55rem; }
.seo-toc a { color: var(--seo-blue); font-size: .9rem; }
.seo-answer { margin: 0 0 2rem; padding: 1.3rem 1.45rem; border-left: 5px solid var(--seo-red); background: var(--seo-paper); font-size: 1.08rem; line-height: 1.65; }
.seo-inline-cta { margin: 2.5rem 0; padding: 1.4rem; color: #fff; background: var(--seo-blue); }
.seo-inline-cta h2,
.seo-inline-cta h3 { margin: 0 0 .45rem; color: #fff; font-size: 1.7rem; }
.seo-inline-cta p { margin: 0 0 1rem; color: rgb(255 255 255 / .8); }

.seo-table-wrap { max-width: 100%; overflow-x: auto; margin: 1.5rem 0 2rem; border: 1px solid var(--seo-line); }
.seo-table { width: 100%; min-width: 48rem; border-collapse: collapse; font-size: .92rem; }
.seo-table th,
.seo-table td { padding: .85rem; border-right: 1px solid var(--seo-line); border-bottom: 1px solid var(--seo-line); text-align: left; vertical-align: top; }
.seo-table th { color: #fff; background: var(--seo-blue); }
.seo-table tbody tr:nth-child(even) { background: var(--seo-paper); }
.seo-table caption { padding: .75rem; color: var(--seo-muted); text-align: left; caption-side: bottom; }

.news-hero { padding-block: clamp(3.5rem, 8vw, 6rem); color: #fff; background: var(--seo-blue-dark); }
.news-hero h1 { margin: 0; color: #fff; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: clamp(3.2rem, 8vw, 6rem); line-height: .9; text-transform: uppercase; }
.news-hero p { max-width: 44rem; color: rgb(255 255 255 / .78); font-size: 1.15rem; line-height: 1.6; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.news-card { overflow: hidden; border: 1px solid var(--seo-line); background: #fff; }
.news-card img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.news-card__body { padding: 1.25rem; }
.news-card time { color: var(--seo-red); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.news-card h2 { margin: .55rem 0; color: var(--seo-blue); font-size: 1.35rem; line-height: 1.2; }
.news-card p { color: var(--seo-muted); line-height: 1.55; }
.news-card a { color: var(--seo-blue); font-weight: 850; }
.news-pagination { display: flex; margin-top: 2rem; gap: .6rem; }
.news-pagination a,
.news-pagination span { min-width: 2.6rem; padding: .6rem .8rem; border: 1px solid var(--seo-line); color: var(--seo-blue); background: #fff; text-align: center; text-decoration: none; }
.news-pagination [aria-current="page"] { color: #fff; background: var(--seo-blue); }
.seo-sources { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--seo-line); }
.seo-sources h2 { font-size: 2rem; }
.seo-sources li { font-size: .9rem; }

@media (max-width: 64rem) {
  .seo-grid,
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-article-layout { grid-template-columns: 1fr; }
  .seo-toc { position: static; order: -1; }
}

@media (max-width: 46rem) {
  .seo-hero__image { inset: 0; width: 100%; opacity: .28; }
  .seo-hero::after { background: rgb(8 24 44 / .78); }
  .seo-hero__inner { min-height: 30rem; }
  .seo-grid,
  .news-grid,
  .seo-feature-grid,
  .seo-split,
  .seo-quote__grid,
  .seo-form { grid-template-columns: 1fr; }
  .seo-form__wide,
  .seo-form__consent { grid-column: auto; }
  .seo-steps { grid-template-columns: 1fr; }
  .seo-card { min-height: 14rem; }
}

@media print {
  [data-shell-header], [data-shell-footer], .seo-quote, .seo-inline-cta, .seo-actions { display: none !important; }
  .seo-article-layout { display: block; }
  .seo-toc { position: static; }
}
