:root {
  --navy: #183d68;
  --blue: #2878c8;
  --blue-light: #59a7e8;
  --ink: #17202a;
  --white: #ffffff;
  --paper: #f7f9fb;
  --gray: #697586;
  --line: #e7ecf1;
  --deep: #0b2340;
  --gradient: linear-gradient(135deg, #183d68 0%, #2878c8 58%, #59a7e8 100%);
  --layout-max: clamp(1180px, 74vw, 1680px);
  --layout-gutter: clamp(20px, 5vw, 72px);
  --layout-edge: max(var(--layout-gutter), calc((100vw - var(--layout-max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Lato, Arial, Helvetica, sans-serif;
}

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

main {
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 96px;
}

section {
  scroll-margin-top: 112px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px var(--layout-edge);
  border-bottom: 1px solid rgba(21, 23, 24, 0.09);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand img {
  display: block;
  width: 278px;
  max-height: 62px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-header nav,
.site-header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
}

.site-header nav {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header nav li {
  position: relative;
  min-width: 0;
}

.site-header nav li.menu-item-has-children::after {
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  z-index: 31;
  height: 22px;
  content: "";
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 8px 0;
}

.site-header nav .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 32;
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  min-width: 260px;
  gap: 0;
  margin-top: 0;
  padding: 10px 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(11, 35, 64, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.site-header nav li:hover > .sub-menu,
.site-header nav li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-header nav .sub-menu .sub-menu {
  top: -11px;
  left: calc(100% - 1px);
  width: max-content;
  min-width: 0;
  margin-top: 0;
  transform: translate(8px, 0);
}

.site-header nav .sub-menu li.menu-item-has-children::after {
  top: -10px;
  bottom: -10px;
  left: 100%;
  right: auto;
  width: 22px;
  height: auto;
}

.site-header nav .sub-menu li:hover > .sub-menu,
.site-header nav .sub-menu li:focus-within > .sub-menu {
  transform: translate(0, 0);
}

.site-header nav .sub-menu a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
}

.site-header nav .sub-menu a:hover,
.site-header nav .sub-menu a:focus {
  background: var(--paper);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 58px;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle-word {
  display: grid;
  gap: 3px;
  text-align: center;
  color: inherit;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-toggle-word span {
  display: block;
  padding: 0 0 3px;
  border-bottom: 2px solid currentColor;
}

.menu-toggle-word span:last-child {
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.menu-open .menu-toggle-word {
  color: var(--blue);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.english-flag {
  display: block;
  flex: 0 0 29px;
  width: 29px;
  height: 17px;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(9, 43, 78, 0.18);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
}

.header-cta,
.primary-button {
  background: var(--blue);
  color: #fff;
}

.secondary-button {
  border-color: rgba(24, 61, 104, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.secondary-button.light-outline {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: clamp(24px, 3vw, 36px);
  align-items: start;
  min-height: calc(100vh - 80px);
  padding: clamp(44px, 7vw, 88px) var(--layout-edge) 42px;
}

.hero-copy {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 4.15vw, 5.2rem);
  font-weight: 780;
  line-height: 1.02;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 760;
  line-height: 1.02;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 640px;
  color: var(--gray);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

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

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-stats div {
  min-height: 146px;
  padding: 22px 20px;
  background: var(--white);
}

.hero-stats dt {
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--gray);
  font-size: 0.84rem;
  line-height: 1.4;
}

.hero-stats dd span {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(24, 61, 104, 0.16);
  background: var(--line);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.visual-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 4px;
  min-width: 230px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(24, 61, 104, 0.18);
  backdrop-filter: blur(14px);
}

.visual-note span {
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-note strong {
  color: var(--navy);
  font-size: 1.34rem;
}

@media (min-width: 1800px) {
  .hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(620px, 1.02fr);
  }

  .hero-visual,
  .hero-visual img {
    min-height: min(610px, calc(100vh - 260px));
  }
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band p {
  min-height: 104px;
  margin: 0;
  padding: 28px clamp(20px, 4vw, 52px);
  background: var(--white);
  color: var(--navy);
  font-weight: 720;
  line-height: 1.45;
}

.section {
  padding: clamp(72px, 9vw, 124px) var(--layout-edge);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading p:last-child {
  color: var(--gray);
  font-size: 1.03rem;
  line-height: 1.65;
}

.section-heading.compact {
  display: block;
  max-width: 850px;
}

.section > .service-detail-grid + .section-heading,
.section > .service-included-grid + .section-heading {
  margin-top: clamp(54px, 7vw, 92px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 315px;
  padding: 28px;
  background: var(--white);
}

.service-card span {
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 58px;
  background: var(--gradient);
}

.service-card p {
  margin-bottom: 0;
  color: var(--gray);
  line-height: 1.62;
}

.service-card .service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card .service-link::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  padding: clamp(84px, 9vw, 132px) var(--layout-edge);
  background: linear-gradient(120deg, #eef4fa 0%, #f8fbfe 60%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.service-hero h1 {
  max-width: 960px;
  margin-bottom: 24px;
}

.service-hero .hero-lead {
  max-width: 850px;
}

.service-hero-landing {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
}

.service-hero-copy {
  max-width: 920px;
}

.service-hero-visual {
  position: relative;
  min-height: clamp(360px, 35vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 61, 104, 0.16);
  background: var(--white);
}

.service-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.service-hero-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: min(78%, 330px);
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-hero-landing .service-hero-panel {
  grid-column: 1 / -1;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr) minmax(220px, 0.5fr);
  align-items: center;
}

.service-hero-panel {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 4vw, 40px);
  background: var(--deep);
  color: #fff;
}

.service-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.service-hero-panel strong {
  display: block;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.local-service-panel {
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 1fr) minmax(220px, 0.42fr) minmax(220px, auto);
}

.service-panel-link {
  align-self: center;
  min-height: 54px;
  text-align: center;
}

.local-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 8vw, 118px) var(--layout-edge) clamp(46px, 6vw, 78px);
  background: linear-gradient(120deg, #eef4fa 0%, #f8fbfe 64%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.local-landing-copy {
  max-width: 820px;
}

.local-landing-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.35vw, 4.85rem);
}

.local-landing-copy .hero-lead {
  max-width: 780px;
}

.local-landing-visual {
  position: relative;
  min-height: clamp(390px, 36vw, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 61, 104, 0.16);
  background: var(--white);
}

.local-landing-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.local-landing-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: min(82%, 380px);
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep);
}

.local-landing-visual figcaption span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.local-landing-visual figcaption strong {
  display: block;
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  line-height: 1.24;
}

.local-landing-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 61, 104, 0.13);
}

.local-landing-proof div {
  min-height: 132px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.86);
}

.local-landing-proof dt {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.18;
}

.local-landing-proof dd {
  margin: 0;
  color: var(--gray);
  line-height: 1.5;
}

.service-detail-grid,
.service-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-detail-card,
.service-included-card {
  min-height: 260px;
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
}

.service-detail-card span,
.service-included-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-card p,
.service-included-card p {
  margin-bottom: 0;
  color: var(--gray);
  line-height: 1.62;
}

.service-detail-card ul,
.service-included-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gray);
  line-height: 1.7;
}

.region-link-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 clamp(42px, 6vw, 82px);
}

.region-link-list a {
  display: flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  background: #fff;
}

.region-link-list a:hover,
.region-link-list a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.service-check-section {
  background: #eef4fa;
}

.service-check-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-check-list p {
  margin: 0;
  padding: 24px clamp(22px, 4vw, 38px);
  background: #fff;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  margin: 0 var(--layout-edge) clamp(24px, 4vw, 48px);
  padding: clamp(38px, 6vw, 70px);
  background: var(--deep);
  color: #fff;
}

.service-cta h2 {
  max-width: 850px;
  margin-bottom: 16px;
}

.service-cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.service-cta-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.quiet-panel,
.audience-list {
  min-height: 430px;
  padding: clamp(34px, 5vw, 68px);
}

.quiet-panel {
  background: var(--gradient);
  color: #fff;
}

.quiet-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.quiet-panel h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.audience-list {
  display: grid;
  align-content: center;
  gap: 1px;
  background: #fff;
}

.audience-list p {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(24, 61, 104, 0.12);
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 700;
  line-height: 1.38;
}

.audience-list p:last-child {
  border-bottom: 0;
}

.process-section {
  background: #eef4fa;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
  margin-top: 46px;
}

.step {
  padding-top: 24px;
  border-top: 1px solid rgba(24, 61, 104, 0.2);
}

.step span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step p {
  color: var(--gray);
  line-height: 1.6;
}

.insight-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.article-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-list a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.article-thumb {
  position: relative;
  display: block;
  width: 96px;
  aspect-ratio: 1.25;
  overflow: hidden;
  border: 1px solid rgba(24, 61, 104, 0.14);
  background: #eef4fa;
}

.article-thumb::after {
  content: none;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-thumb-ksef {
  background: #eef4fa;
}

.article-thumb-cit {
  background: #eef4fa;
}

.article-thumb-control {
  background: #eef4fa;
}

.article-copy {
  display: grid;
  gap: 12px;
}

.article-list .article-type {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-list strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.knowledge-archive {
  width: calc(100% - var(--layout-edge) - var(--layout-edge));
  max-width: min(var(--layout-max), 1380px);
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(42px, 5vw, 76px);
  padding-bottom: clamp(56px, 7vw, 96px);
  padding-right: 0;
  padding-left: 0;
  background: var(--white);
}

.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.knowledge-results {
  min-width: 0;
}

.knowledge-layout .knowledge-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.knowledge-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: var(--white);
}

.knowledge-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45, 126, 211, 0.18), rgba(9, 43, 78, 0.06)),
    #eef4fa;
}

.knowledge-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.knowledge-card > div {
  padding: clamp(24px, 4vw, 34px);
}

.knowledge-card h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(1.28rem, 1.55vw, 1.62rem);
  line-height: 1.25;
  overflow-wrap: break-word;
}

.knowledge-card p:not(.article-type) {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
}

.knowledge-sidebar {
  position: sticky;
  top: 126px;
  min-width: 0;
  width: 100%;
}

.knowledge-filter-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.knowledge-filter-card-mobile {
  display: none;
  margin-bottom: 24px;
}

.knowledge-filter-heading {
  display: grid;
  gap: 8px;
}

.knowledge-filter-heading .eyebrow {
  margin-bottom: 0;
}

.knowledge-filter-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.knowledge-filter-card label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-filter-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid #cfd9e5;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.knowledge-filter-actions {
  display: grid;
  gap: 12px;
}

.knowledge-filter-actions .primary-button {
  justify-content: center;
  width: 100%;
}

.knowledge-filter-actions a {
  color: var(--blue);
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.knowledge-empty {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--gray);
  line-height: 1.6;
}

.pagination-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pagination-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.pagination-nav .current {
  background: var(--blue);
  color: var(--white);
}

.post-single .pricing-hero {
  border-bottom: 0;
}

.post-hero-image {
  display: grid;
  justify-items: center;
  width: calc(100% - var(--layout-edge) - var(--layout-edge));
  max-width: var(--layout-max);
  margin: 0 auto;
  background: var(--white);
}

.post-hero-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(640px, 72vh);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.post-content {
  max-width: 980px;
  background: var(--white);
}

.post-content > * {
  max-width: 820px;
}

.post-content p,
.post-content li {
  color: var(--gray);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.78;
}

.post-content h2,
.post-content h3 {
  color: var(--navy);
}

.post-content a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 760px) 430px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  justify-content: space-between;
  margin: 0 var(--layout-edge) clamp(24px, 4vw, 48px);
  padding: clamp(42px, 6vw, 72px);
  background: var(--deep);
  color: #fff;
}

.contact-intro {
  display: grid;
  gap: 0;
}

.contact-section h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.contact-section p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.primary-button.light {
  background: var(--white);
  color: var(--navy);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  justify-self: end;
  width: 100%;
  max-width: 260px;
}

.contact-actions .primary-button.light {
  width: 100%;
  min-height: 58px;
  justify-content: center;
}

.contact-action-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex: 0 0 auto;
}

.contact-action-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 720px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  grid-column: 1 / -1;
  color: var(--ink);
}

.contact-details {
  display: grid;
  gap: 12px;
  justify-self: center;
  width: 430px;
  max-width: 100%;
  margin-top: calc(0.75rem * 1.2 + 15px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
}

.contact-details > span {
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-details p,
.contact-details a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  white-space: nowrap;
}

.contact-link-icon {
  display: inline-grid;
  flex: 0 0 18px;
  place-items: center;
  width: 18px;
  height: 18px;
}

.contact-link-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.intertax-social-links {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.intertax-social-heading {
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intertax-social-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 14px;
}

.intertax-social-list a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.contact-actions .intertax-social-links {
  flex-basis: 100%;
  width: 100%;
}

.contact-form .consent-line a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-label {
  display: block;
}

.related-entities {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.related-entities summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.related-entities summary::after {
  display: inline-grid;
  flex: 0 0 16px;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1;
  content: "+";
}

.related-entities[open] summary::after {
  content: "−";
}

.related-entities summary::-webkit-details-marker {
  display: none;
}

.related-entities:not([open]) .related-grid {
  display: none;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.related-grid p {
  min-width: 0;
  margin: 0;
  font-size: 0.67rem;
  line-height: 1.38;
}

.related-grid strong,
.related-grid span {
  display: block;
}

.related-grid strong {
  color: var(--white);
  font-size: inherit;
  line-height: inherit;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  color: var(--gray);
  font-weight: 700;
  line-height: 1.5;
}

.form-status.success {
  color: #157347;
}

.form-status.error {
  color: #b42318;
}

.site-footer-bar {
  width: 100%;
  padding: 0;
  background: var(--blue);
  color: #fff;
}

.site-footer-bar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: calc(100% - var(--layout-edge) - var(--layout-edge));
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 10px 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: left;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-regions {
  justify-self: end;
}

.site-footer-bar p {
  margin: 0;
  justify-self: center;
  text-align: center;
}

.site-footer-bar a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cookie-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-consent {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 50;
  width: min(520px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(24, 61, 104, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(11, 35, 64, 0.16);
}

.cookie-consent[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-consent h2,
.cookie-modal h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.cookie-consent p,
.cookie-modal p {
  margin: 0;
  color: var(--gray);
  line-height: 1.65;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(24, 61, 104, 0.18);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.cookie-button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.cookie-button.link {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 35, 64, 0.42);
}

.cookie-dialog {
  width: min(720px, 100%);
  max-height: min(780px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: 0 28px 90px rgba(11, 35, 64, 0.24);
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cookie-option strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.pricing-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  padding: clamp(56px, 8vw, 112px) var(--layout-edge) clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(40, 120, 200, 0.1), rgba(255, 255, 255, 0) 52%),
    var(--paper);
}

.pricing-hero h1 {
  max-width: 1180px;
  overflow-wrap: break-word;
}

.pricing-hero p:not(.eyebrow) {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-hero p:not(.eyebrow),
.legal-section p {
  text-align: justify;
  text-align-last: left;
}

.knowledge-hero {
  padding-bottom: clamp(54px, 6vw, 84px);
}

.knowledge-hero h1 {
  max-width: 880px;
}

.knowledge-hero p:not(.eyebrow) {
  max-width: 760px;
  text-align: left;
}

.legal-section {
  width: calc(100% - var(--layout-edge) - var(--layout-edge));
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  background: var(--white);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.legal-section h2:not(:first-child) {
  margin-top: 34px;
}

.legal-section p {
  margin: 0;
  color: var(--gray);
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.price-card {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
}

.price-card span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 34px;
}

.price-card sup,
.pricing-footnote sup {
  color: var(--blue);
  font-size: 0.68em;
  font-weight: 800;
}

.price-value {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
}

.price-card p:last-child,
.calculator-intro p,
.summary-note {
  color: var(--gray);
  line-height: 1.62;
}

.pricing-footnote {
  width: 100%;
  max-width: none;
  margin: 16px 0 0;
  color: var(--gray);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: justify;
  text-align-last: left;
}

.calculator-section {
  background: #eef4fa;
}

.calculator-intro {
  width: 100%;
  max-width: none;
  margin-bottom: 42px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.quote-form,
.quote-summary {
  border: 1px solid var(--line);
  background: var(--white);
}

.quote-form {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 36px);
}

.quote-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-form legend {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.form-grid,
.conditional-fields,
.toggle-grid,
.option-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.option-fields-grid fieldset {
  min-width: 0;
}

.quote-form label {
  display: grid;
  align-content: start;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.required-mark {
  color: var(--blue);
  font-weight: 800;
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(24, 61, 104, 0.18);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.quote-form input,
.quote-form select {
  min-height: 46px;
  padding: 0 12px;
}

.quote-form textarea {
  resize: vertical;
  padding: 12px;
}

.quote-form label.option-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  line-height: 1.35;
}

.quote-form label.option-line input[type="radio"],
.quote-form label.option-line input[type="checkbox"] {
  align-self: flex-start;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  min-height: auto;
  margin: 1px 0 0;
  padding: 0;
}

.quote-form .consent-line {
  position: relative;
  display: block;
  padding-left: 48px;
}

.quote-form .consent-line input[type="checkbox"] {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 14px;
  height: 14px;
  min-height: auto;
  margin: 0;
  padding: 0;
}

.quote-form .consent-line span {
  display: block;
}

.quote-form .full-field {
  grid-column: 1 / -1;
}

.switch-line {
  display: grid;
  gap: 8px;
}

.full-field {
  display: grid;
}

.consent-line {
  padding: 18px;
  border: 1px solid rgba(24, 61, 104, 0.18);
  background: var(--paper);
  color: var(--gray);
  line-height: 1.5;
}

.quote-summary {
  position: sticky;
  top: 116px;
  padding: 28px;
}

.summary-price {
  margin: 18px 0 24px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
}

.quote-summary .summary-note,
.quote-summary dd {
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}

.quote-summary dl {
  display: grid;
  gap: 1px;
  margin: 0 0 24px;
  background: var(--line);
}

.quote-summary dl div {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  background: var(--white);
}

.quote-summary dt {
  color: var(--gray);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.quote-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 620px;
  padding: clamp(56px, 8vw, 112px) var(--layout-edge) clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(40, 120, 200, 0.1), rgba(255, 255, 255, 0) 54%),
    var(--paper);
}

.about-hero h1 {
  max-width: 940px;
}

.about-mark {
  display: grid;
  justify-items: center;
  gap: 26px;
  min-height: 420px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(24, 61, 104, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.about-mark img {
  width: min(240px, 58vw);
  align-self: end;
}

.about-mark p {
  align-self: start;
  margin: 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.people-band {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  align-items: start;
  padding: clamp(44px, 5vw, 72px) var(--layout-edge);
  border-block: 1px solid var(--line);
  background: var(--deep);
  color: #fff;
}

.people-band strong {
  display: block;
  max-width: 1160px;
  color: var(--white);
  font-size: clamp(2.25rem, 3.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.people-band p {
  max-width: 1040px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  font-weight: 700;
  line-height: 1.5;
}

.about-story {
  background: var(--white);
}

.timeline-section {
  padding: clamp(44px, 6vw, 76px) var(--layout-edge);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.timeline-art {
  display: block;
  width: 100%;
  border: 1px solid rgba(24, 61, 104, 0.12);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(24, 61, 104, 0.08);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 38px;
  left: 8.5%;
  right: 8.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--blue-light));
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 160px;
  padding: 0 16px;
  text-align: center;
}

.timeline li::before {
  z-index: 1;
  justify-self: center;
  width: 20px;
  height: 20px;
  margin-top: 29px;
  border: 4px solid var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(24, 61, 104, 0.18);
  content: "";
}

.timeline time {
  order: -1;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 800;
}

.timeline span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.about-values,
.leader-grid,
.beyond-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-values {
  grid-template-columns: repeat(3, 1fr);
}

.about-values article,
.leader-card,
.beyond-grid article {
  background: var(--white);
}

.about-values article {
  min-height: 260px;
  padding: 28px;
}

.about-values span,
.leader-card span,
.beyond-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-values p,
.leader-card p,
.beyond-grid p {
  margin-bottom: 0;
  color: var(--gray);
  line-height: 1.62;
}

.team-section {
  background: #eef4fa;
}

.leader-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.leader-card {
  position: relative;
  min-height: 420px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}

.leader-card::before {
  display: block;
  width: 48px;
  height: 5px;
  margin-bottom: 46px;
  background: var(--partner-color);
  content: "";
}

.leader-card span {
  color: var(--partner-color);
}

.partner-navy {
  --partner-color: var(--navy);
}

.partner-blue {
  --partner-color: var(--blue);
}

.partner-sky {
  --partner-color: var(--blue-light);
}

.leader-card h3,
.beyond-grid h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.beyond-section {
  background: var(--white);
}

.beyond-grid {
  grid-template-columns: repeat(3, 1fr);
}

.beyond-grid article {
  min-height: 330px;
  padding: clamp(26px, 4vw, 38px);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    display: inline-grid;
    justify-self: end;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-header nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: stretch;
    gap: 4px;
    width: 100%;
    max-height: calc(100dvh - 96px);
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, padding 0.18s ease;
  }

  .site-header nav ul {
    display: grid;
    justify-content: stretch;
    gap: 0;
    width: 100%;
  }

  .site-header nav a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    overflow-wrap: anywhere;
  }

  .site-header nav li.menu-item-has-children::after {
    display: none;
  }

  .site-header nav li.menu-item-has-children > a::after {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 1rem;
    font-weight: 900;
    content: "+";
  }

  .site-header nav li.submenu-open > a::after {
    content: "-";
  }

  .site-header nav .sub-menu {
    position: static;
    display: none;
    left: auto;
    top: auto;
    min-width: 0;
    max-height: none;
    margin-top: 0;
    padding: 0 0 0 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    overflow: visible;
    pointer-events: none;
    transform: none !important;
    transition: none;
  }

  .site-header nav li:hover > .sub-menu,
  .site-header nav li:focus-within > .sub-menu,
  .site-header nav .sub-menu li:hover > .sub-menu,
  .site-header nav .sub-menu li:focus-within > .sub-menu {
    transform: none !important;
  }

  .site-header nav li.submenu-open > .sub-menu {
    display: grid;
    max-height: none;
    padding: 0 0 8px 16px;
    pointer-events: auto;
    transform: none !important;
  }

  .site-header nav .sub-menu .sub-menu {
    transform: none;
    padding-left: 14px;
  }

  .site-header nav .sub-menu a {
    padding: 10px 0;
    color: var(--gray);
    white-space: normal;
  }

  .menu-open .site-header nav,
  html.menu-open .site-header nav,
  body.menu-open .site-header nav {
    display: grid;
    padding-top: 8px;
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
  }

  .hero,
  .about-hero,
  .section-heading,
  .split-section,
  .insight-section,
  .contact-section,
  .people-band,
  .pricing-hero,
  .service-hero,
  .local-landing-hero,
  .service-cta,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .service-cta-actions {
    width: min(100%, 420px);
  }

  .service-hero-landing .service-hero-panel {
    grid-template-columns: 1fr;
  }

  .local-service-panel {
    grid-template-columns: 1fr;
  }

  .local-landing-copy,
  .local-landing-copy h1,
  .local-landing-copy .hero-lead {
    max-width: 100%;
  }

  .local-landing-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: stretch;
    max-width: none;
    margin-top: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 460px;
  }

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

  .about-values,
  .leader-grid,
  .beyond-grid,
  .knowledge-grid,
  .knowledge-layout .knowledge-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .knowledge-layout {
    grid-template-columns: 1fr;
  }

  .knowledge-archive {
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: var(--layout-edge);
    padding-left: var(--layout-edge);
  }

  .knowledge-sidebar {
    display: none;
  }

  .knowledge-filter-card-mobile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .knowledge-filter-card-mobile .knowledge-filter-heading,
  .knowledge-filter-card-mobile .knowledge-filter-actions {
    grid-column: 1 / -1;
  }

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

  .quote-summary {
    position: static;
  }

  .site-footer-bar-inner {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    align-items: flex-start;
  }

  .site-footer-bar p {
    justify-self: start;
    text-align: left;
  }

  .footer-regions {
    justify-self: start;
  }

  .contact-details {
    justify-self: center;
    width: min(100%, 430px);
    margin-top: 0;
  }

  .cookie-consent {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }

  .cookie-dialog {
    max-height: calc(100vh - 32px);
  }
}

@media (max-width: 720px) {
  .region-link-list {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: clamp(170px, 48vw, 212px);
    max-height: 52px;
  }

  .language-switch {
    min-height: 34px;
    font-size: 0.66rem;
  }

  .english-flag {
    flex-basis: 27px;
    width: 27px;
    height: 15px;
  }

  .menu-toggle {
    width: 52px;
  }

  .menu-toggle-word {
    font-size: 0.52rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 3.1rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .pricing-hero h1,
  .service-hero h1,
  .local-landing-copy h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .pricing-hero,
  .service-hero,
  .local-landing-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .local-landing-hero {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .local-landing-copy .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-stats,
  .local-landing-proof,
  .trust-band,
  .service-grid,
  .service-detail-grid,
  .service-included-grid,
  .steps,
  .about-values,
  .leader-grid,
  .beyond-grid,
  .knowledge-grid,
  .knowledge-layout .knowledge-grid,
  .pricing-grid,
  .form-grid,
  .conditional-fields,
  .toggle-grid,
  .option-fields-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-filter-card-mobile {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .knowledge-archive {
    padding-right: 18px;
    padding-left: 18px;
  }

  .knowledge-card > div {
    padding: 24px;
  }

  .article-list a {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    padding: 22px;
  }

  .article-thumb {
    width: 74px;
  }

  .hero-stats div,
  .trust-band p {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 340px;
  }

  .service-hero-visual,
  .service-hero-visual img {
    min-height: 300px;
  }

  .service-hero-visual figcaption {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 14px 16px;
  }

  .local-landing-visual,
  .local-landing-visual img {
    min-height: 260px;
  }

  .local-landing-visual figcaption {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 16px;
  }

  .local-landing-proof div {
    min-height: auto;
    padding: 18px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 36px;
  }

  .about-mark {
    min-height: 300px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-top: 30px;
    background: var(--line);
    border: 1px solid var(--line);
  }

  .timeline::before {
    display: none;
  }

  .timeline li {
    grid-template-columns: 90px 1fr;
    min-height: auto;
    padding: 20px;
    background: var(--white);
    text-align: left;
  }

  .timeline li::before {
    display: none;
  }

  .timeline span {
    align-self: center;
  }

  .visual-note {
    right: 16px;
    bottom: 16px;
    min-width: 190px;
  }

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

  .quiet-panel,
  .audience-list,
  .contact-section {
    padding: 28px;
  }

  .related-entities summary {
    margin-bottom: 0;
    cursor: pointer;
  }

  .related-entities[open] summary {
    margin-bottom: 14px;
  }

  .related-entities:not([open]) .related-grid {
    display: none;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    padding: 18px;
  }

  .cookie-actions,
  .cookie-button {
    width: 100%;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }
}
