:root {
  --ink: #102a2a;
  --ink-soft: #25413f;
  --paper: #f4f5ef;
  --paper-deep: #e9eee5;
  --white: #ffffff;
  --lime: #b7e24b;
  --lime-deep: #96c52e;
  --mint: #bfe3d5;
  --teal: #2d716b;
  --line: rgba(16, 42, 42, 0.15);
  --muted: #5f706d;
  --danger: #8a3d2f;
  --shadow: 0 24px 70px rgba(16, 42, 42, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --shell: 1180px;
  --font: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  --display: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
  hyphens: auto;
  overflow-wrap: break-word;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.6rem;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  hyphens: manual;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.shell--narrow {
  width: min(calc(100% - 2.5rem), 880px);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime-deep);
  outline-offset: 4px;
}

.utility {
  color: #f5f7f4;
  background: #32775f;
  font-size: 0.8rem;
  letter-spacing: 0.015em;
}

.utility__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.utility__inner div {
  display: flex;
  gap: 1.25rem;
}

.utility a {
  text-decoration: none;
}

.utility a:hover {
  color: var(--lime);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 42, 42, 0.09);
  background: rgba(244, 245, 239, 0.93);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: 58px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(0.55rem, 1.4vw, 1.2rem);
  list-style: none;
}

.main-nav ul a {
  position: relative;
  padding-block: 0.5rem;
  font-size: 0.9rem;
  font-weight: 580;
  text-decoration: none;
}

.main-nav ul a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--lime-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav ul a:hover::after,
.main-nav ul a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-content: center;
  background: transparent;
}

.nav-toggle > span[aria-hidden="true"] {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease;
}

.nav-open .nav-toggle > span[aria-hidden="true"]:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle > span[aria-hidden="true"]:last-of-type {
  transform: translateY(-1px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button--primary,
.button--nav {
  color: var(--ink);
  background: var(--lime);
}

.button--primary:hover,
.button--nav:hover {
  background: #c9f263;
}

.button--nav {
  min-height: 44px;
  padding-inline: 1rem;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost:hover {
  border-color: var(--lime);
  background: rgba(183, 226, 75, 0.1);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--teal);
}

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

.breadcrumb {
  padding-block: 1rem 0;
}

.breadcrumb ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 0.5rem;
  content: "/";
}

.breadcrumb a {
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 226, 75, 0.16), transparent 29rem),
    linear-gradient(138deg, #102a2a 0%, #183d3a 58%, #245f59 100%);
}

/* Conversion-orientierter Startseiten-Einstieg: eigene Struktur, keine fremden Claims. */
.conversion-hero {
  background: #f5f7f4;
  color: #112d2b;
  padding-block: clamp(2.2rem, 5vw, 5rem) clamp(3.2rem, 7vw, 6.8rem);
}

.conversion-hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.4rem, 7vw, 7rem);
}

.conversion-hero__image {
  min-height: clamp(430px, 48vw, 680px);
  border-radius: 1.4rem;
  background: #dfe6e1 url("yossef-hero-consulting-v1.png") center center / cover no-repeat;
  background-image: image-set(url("yossef-hero-consulting-v1.webp") type("image/webp"), url("yossef-hero-consulting-v1.png") type("image/png"));
  box-shadow: 0 24px 60px rgba(17, 45, 43, 0.16);
}

.conversion-hero__copy {
  max-width: 650px;
}

.conversion-hero__eyebrow {
  color: #387c69;
}

.conversion-hero h1 {
  max-width: 14ch;
  margin: 0.55rem 0 1.4rem;
  color: #112d2b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.45rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.conversion-hero__lead {
  max-width: 47ch;
  margin: 0;
  color: #4d5c58;
  font-size: clamp(1.07rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.identity-feature {
  background: #f5f7f4;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.identity-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(16rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.identity-feature__visual {
  margin: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #163735;
  box-shadow: 0 22px 56px rgba(17, 45, 43, 0.16);
}

.identity-feature__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.identity-feature h2 {
  max-width: 14ch;
  margin: 0.45rem 0 1rem;
  color: #112d2b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.identity-feature p {
  max-width: 49ch;
  margin: 0;
  color: #4d5c58;
  font-size: 1.08rem;
  line-height: 1.7;
}

.conversion-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.3rem;
  margin-top: 2rem;
}

.button--text {
  min-height: 0;
  padding: 0.55rem 0;
  border: 0;
  border-radius: 0;
  color: #155d4c;
  background: transparent;
  box-shadow: inset 0 -1px currentColor;
}

.button--text:hover {
  background: transparent;
  color: #0d4035;
}

.conversion-hero__points {
  display: grid;
  gap: 0.55rem;
  margin: 2rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid #d5deda;
  color: #38504a;
  font-size: 0.93rem;
  list-style: none;
}

.conversion-hero__points li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.conversion-hero__points li::before {
  content: "✓";
  color: #1f765f;
  font-weight: 800;
}

.hero::before {
  position: absolute;
  top: -14rem;
  right: -11rem;
  width: 39rem;
  height: 39rem;
  border: 1px solid rgba(183, 226, 75, 0.22);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  right: 7rem;
  bottom: -20rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.hero__copy {
  min-width: 0;
  max-width: 780px;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.hero__lead {
  max-width: 62ch;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__rail {
  min-width: 0;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero__rail-links {
  display: grid;
  margin-top: 1rem;
  gap: 0.65rem;
}

.hero__rail-links .button {
  justify-content: space-between;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--hero,
.hero__rail .eyebrow {
  color: var(--lime);
}

.proof-grid {
  display: grid;
  gap: 0.55rem;
}

.proof-item {
  display: grid;
  min-height: 88px;
  padding: 1rem;
  border-radius: var(--radius-sm);
  align-content: center;
  background: rgba(255, 255, 255, 0.08);
}

.proof-item__value {
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.proof-item__text {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.audience-switch {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.audience-switch__frame {
  display: grid;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: #2d716b;
  box-shadow: var(--shadow);
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem 4rem;
}

.audience-switch__title h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.audience-switch .eyebrow {
  color: var(--lime);
}

.tabs {
  display: grid;
  padding: 0.35rem;
  border-radius: 999px;
  align-self: start;
  background: rgba(16, 42, 42, 0.35);
  grid-template-columns: 1fr 1fr;
}

.tabs button {
  min-height: 44px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-weight: 700;
}

.tabs button[aria-selected="true"] {
  color: var(--ink);
  background: var(--lime);
}

.tab-panel {
  display: flex;
  padding-top: 1rem;
  grid-column: 2;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.tab-panel h3 {
  margin-bottom: 0.5rem;
}

.tab-panel p {
  max-width: 48ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.tab-panel .button {
  flex: 0 0 auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section--cards {
  border-top: 0 !important;
}

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

.card {
  min-height: 315px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  border-color: rgba(45, 113, 107, 0.48);
  box-shadow: 0 22px 50px rgba(16, 42, 42, 0.09);
  transform: translateY(-5px);
}

.card__anchor,
.card__inner {
  display: flex;
  height: 100%;
  padding: 1.5rem;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.card__number {
  margin-bottom: auto;
  color: var(--teal);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
}

.card__title {
  margin-block: 2rem 1rem;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
}

.card__text {
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.card__link {
  margin-top: auto;
  font-weight: 750;
}

.section__heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section__title {
  max-width: 18ch;
  margin-bottom: 0;
}

.section__content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.55fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.prose {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.prose > p:first-child {
  font-size: 1.18em;
}

.prose p:last-child {
  margin-bottom: 0;
}

.section__aside {
  padding: 1.5rem;
  border-top: 4px solid var(--lime-deep);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  align-self: start;
  background: var(--paper-deep);
}

.section__aside strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.section__aside p {
  margin-bottom: 0;
  color: var(--muted);
}

.section__actions {
  margin-top: 1.8rem;
}

.section--compact {
  padding-block: 2.5rem;
  background: var(--white);
}

.article-filter__label {
  display: grid;
  max-width: 760px;
  gap: 0.45rem;
}

.article-filter__label strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.article-filter__label input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.article-filter__label input:focus {
  outline: 3px solid rgba(184, 239, 57, 0.7);
  outline-offset: 2px;
}

.article-filter__status {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.region-router {
  background: var(--paper-deep);
}

.region-router__copy {
  max-width: 680px;
  margin-bottom: 1.6rem;
}

.region-router__copy h2 {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.region-router__copy p {
  max-width: 64ch;
  margin-bottom: 0;
  color: var(--muted);
}

.region-router__form {
  display: grid;
  max-width: 860px;
  grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.55fr) auto;
  align-items: end;
  gap: 0.8rem;
}

.region-router__form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}

.region-router__form label span {
  color: var(--muted);
  font-weight: 500;
}

.region-router__form input {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.region-router__form .button {
  min-height: 3rem;
  white-space: nowrap;
}

.region-router__note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.card[hidden] {
  display: none;
}

.data-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(25, 47, 46, 0.08);
  scrollbar-color: var(--teal) var(--paper-deep);
}

.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.data-table th,
.data-table td {
  padding: 1rem 1.15rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table tr > :last-child {
  border-right: 0;
}

.data-table tbody tr:last-child > * {
  border-bottom: 0;
}

.data-table thead th {
  color: var(--white);
  background: var(--teal);
  font-family: var(--display);
  font-weight: 700;
}

.data-table tbody th {
  width: 20%;
  color: var(--ink);
  background: var(--paper-deep);
  font-family: var(--display);
  font-weight: 700;
}

.section--contrast .data-table-wrap,
.section--dark .data-table-wrap {
  border-color: rgba(255, 255, 255, 0.2);
}

.section--contrast,
.section--dark {
  color: var(--white);
  background: var(--ink);
}

.section--contrast .eyebrow,
.section--dark .eyebrow {
  color: var(--lime);
}

.section--contrast .prose,
.section--dark .prose {
  color: rgba(255, 255, 255, 0.76);
}

.mini-grid {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.52);
}

.section--dark .mini-card,
.section--contrast .mini-card {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.05);
}

.mini-card h3 {
  font-size: 1.3rem;
}

.mini-card p {
  color: var(--muted);
}

.section--dark .mini-card p,
.section--contrast .mini-card p {
  color: rgba(255, 255, 255, 0.7);
}

.mini-card a {
  font-weight: 700;
}

.check-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0.85rem;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.check-list__mark {
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: 0 0 26px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.75rem;
  font-weight: 900;
}

.check-list strong,
.check-list small {
  display: block;
}

.check-list small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section--tool {
  border-top: 0 !important;
  background: var(--paper-deep);
}

.tool-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.tool-card__intro {
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(183, 226, 75, 0.2), transparent 15rem),
    var(--ink);
}

.tool-card__intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.tool-card__intro > p {
  color: rgba(255, 255, 255, 0.76);
}

.tool-card__guard {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.86rem;
}

.tool-form {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  align-content: start;
  gap: 1rem;
}

.tool-form__fields {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 1rem;
}

.tool-form__noscript {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--paper);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field > span {
  font-size: 0.86rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(16, 42, 42, 0.24);
  border-radius: 10px;
  outline: 0;
  background: #fbfcf9;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 113, 107, 0.15);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.field--checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 0.18rem;
  flex: 0 0 20px;
}

.field--checkbox span {
  font-weight: 500;
}

.form-privacy {
  color: var(--muted);
  font-size: 0.82rem;
}

.tool-form__fields > .button {
  width: fit-content;
  margin-top: 0.6rem;
}

.tool-result {
  margin-top: 0.7rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.tool-result:empty {
  display: none;
}

.tool-result h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.tool-result p:last-child,
.tool-result ul:last-child {
  margin-bottom: 0;
}

.tool-result ul {
  padding-left: 1.2rem;
}

.tool-result .button {
  margin-top: 0.7rem;
}

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

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  padding: 1.25rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 650;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 32px;
  place-items: center;
  background: var(--paper-deep);
  transition: transform 160ms ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-width: 68ch;
  padding: 0 3rem 1.4rem 0;
  color: var(--muted);
}

.editorial-meta {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.editorial-meta__inner {
  display: grid;
  padding-block: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.editorial-meta__inner > div {
  display: grid;
  align-content: start;
  gap: 0.15rem;
}

.editorial-meta__label {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.editorial-meta strong,
.editorial-meta time {
  color: var(--ink);
  font-size: 0.9rem;
}

.section--sources {
  padding-block: 2.5rem;
  border-top: 1px solid var(--line) !important;
}

.section--sources details {
  color: var(--muted);
  font-size: 0.88rem;
}

.section--sources summary {
  width: fit-content;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
}

.source-list {
  display: grid;
  margin: 1.3rem 0 0;
  padding-left: 1.25rem;
  gap: 0.7rem;
}

.source-list li {
  padding-left: 0.4rem;
}

.source-list a {
  color: var(--teal);
  font-weight: 650;
}

.source-list span {
  display: block;
  margin-top: 0.15rem;
}

.contact-band {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  color: var(--white);
  background: var(--teal);
}

.contact-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-band .eyebrow {
  color: var(--lime);
}

.contact-band h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-band__actions {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.contact-band__actions > a:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding-block: 4rem 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  background: #0b2020;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.72fr));
  gap: 3rem;
}

.brand--footer {
  color: var(--white);
}

.brand--footer img {
  height: 64px;
  box-sizing: content-box;
  padding: 0.45rem 0.7rem;
  border-radius: 0.65rem;
  background: #fff;
}

.site-footer__grid > div:first-child p {
  max-width: 46ch;
  margin-top: 1.4rem;
}

.site-footer__grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.65rem;
}

.site-footer__grid strong {
  margin-bottom: 0.4rem;
  color: var(--white);
  font-family: var(--display);
}

.site-footer__grid a {
  text-decoration: none;
}

.site-footer__grid a:hover {
  color: var(--lime);
}

.site-footer__base {
  display: flex;
  margin-top: 3.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.site-footer__base nav {
  display: flex;
  gap: 1rem;
}

@media (max-width: 1060px) {
  .utility__inner > span {
    display: none;
  }

  .utility__inner {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    inset: 84px 0 auto;
    display: none;
    max-height: calc(100vh - 84px);
    padding: 1.5rem max(1.25rem, calc((100vw - var(--shell)) / 2));
    overflow-y: auto;
    align-items: stretch;
    background: var(--paper);
    box-shadow: 0 30px 45px rgba(16, 42, 42, 0.14);
  }

  .nav-open .main-nav {
    display: grid;
  }

  .main-nav ul {
    display: grid;
    align-items: stretch;
  }

  .main-nav ul a {
    display: block;
    padding-block: 0.85rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .main-nav .button {
    margin-top: 0.75rem;
  }

  .hero__grid {
    min-height: 610px;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__rail {
    max-width: 760px;
  }

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

  .audience-switch__frame {
    grid-template-columns: 1fr;
  }

  .audience-switch__title h2 {
    max-width: 18ch;
  }

  .tab-panel {
    grid-column: 1;
  }

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

@media (max-width: 760px) {
  .identity-feature__grid {
    grid-template-columns: 1fr;
  }
  .shell,
  .shell--narrow {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .utility__inner div {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .utility__inner div a {
    white-space: nowrap;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .main-nav {
    inset: 72px 0 auto;
    max-height: calc(100vh - 72px);
  }

  .brand img {
    width: auto;
    height: 44px;
  }

  .hero__grid {
    min-height: 0;
    padding-block: 4.5rem;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

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

  .proof-item {
    min-height: 72px;
  }

  .audience-switch {
    margin-top: -1.5rem;
  }

  .audience-switch__frame {
    border-radius: var(--radius);
  }

  .tabs {
    border-radius: var(--radius-sm);
    grid-template-columns: 1fr;
  }

  .tabs button {
    border-radius: 9px;
  }

  .tab-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .tab-panel .button {
    width: 100%;
  }

  .card-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 280px;
  }

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

  .region-router__form {
    grid-template-columns: 1fr;
  }

  .region-router__form .button,
  .region-router__form .region-router__note {
    width: 100%;
    grid-column: 1;
  }

  .data-table {
    min-width: 640px;
    font-size: 0.92rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.85rem 0.9rem;
  }

  .editorial-meta__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tool-card {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .tool-form__fields > .button {
    width: 100%;
  }

  .contact-band__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-band__actions .button {
    width: 100%;
  }

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

  .site-footer__base {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .utility__inner div a:last-child {
    font-size: 0;
  }

  .utility__inner div a:last-child::after {
    content: "E-Mail";
    font-size: 0.8rem;
  }
}

@media (max-width: 860px) {
  .conversion-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .conversion-hero__image {
    min-height: min(112vw, 590px);
    order: 2;
  }

  .conversion-hero__copy {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .conversion-hero {
    padding-block: 1.3rem 3.5rem;
  }

  .conversion-hero__grid {
    gap: 1.75rem;
  }

  .conversion-hero__image {
    min-height: 390px;
    border-radius: 1rem;
  }

  .conversion-hero h1 {
    max-width: 13ch;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .conversion-hero__actions,
  .conversion-hero__actions .button {
    width: 100%;
  }

  .conversion-hero__actions .button--text {
    width: max-content;
  }
}

.audience-gateway {
  padding: clamp(3rem, 7vw, 6.5rem) 0;
  background: linear-gradient(135deg, #f4f7f2 0%, #ffffff 60%);
}

.audience-gateway__inner {
  max-width: 980px;
}

.audience-gateway h1 {
  max-width: 17ch;
  margin: 0.5rem 0 1.25rem;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.audience-gateway .hero__lead {
  color: #36514c;
}

.audience-gateway__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.audience-gateway__choice {
  display: grid;
  gap: 0.65rem;
  min-height: 225px;
  padding: 1.65rem;
  border: 1px solid color-mix(in srgb, var(--green) 20%, #fff);
  border-radius: 1.1rem;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 15px 35px rgba(11, 48, 43, 0.08);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.audience-gateway__choice:hover,
.audience-gateway__choice:focus-visible {
  border-color: var(--lime);
  box-shadow: 0 18px 38px rgba(11, 48, 43, 0.14);
  transform: translateY(-3px);
}

.audience-gateway__choice strong {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.1;
}

.audience-gateway__choice b {
  margin-top: auto;
  color: var(--green);
}

@media (max-width: 640px) {
  .audience-gateway__choices {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.company-trust {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: #102f2b;
  color: #f8fbf7;
}

.official-listings {
  padding: clamp(1.6rem, 4vw, 2.6rem) 0;
  border-block: 1px solid #d9e2dd;
  background: #f5f7f4;
}

.official-listings__inner {
  display: grid;
  grid-template-columns: minmax(13rem, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3.5rem);
}

.official-listings h2 {
  max-width: 20ch;
  margin: 0.35rem 0 0;
  color: #112d2b;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.12;
}

.official-listings__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.official-listings__links a {
  display: grid;
  min-width: 0;
  padding: 1rem 3rem 1rem 1.1rem;
  border: 1px solid #c9d7d0;
  border-radius: 0.8rem;
  color: #112d2b;
  text-decoration: none;
  position: relative;
  background: #fff;
}

.official-listings__links a:hover,
.official-listings__links a:focus-visible {
  border-color: #1f6b63;
}

.official-listings__links span {
  margin-top: 0.2rem;
  color: #4d5c58;
  font-size: 0.9rem;
}

.official-listings__links b {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.company-trust__inner {
  display: grid;
  justify-items: start;
  gap: 1.15rem;
}

.company-trust h2 {
  max-width: 26ch;
  margin: 0.5rem 0 0.9rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.company-trust__references {
  display: grid;
  width: min(100%, 78rem);
  gap: 0.7rem;
}

.company-trust__references-label {
  color: #cfe1d9;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-trust__reference-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-trust__brand-card {
  display: grid;
  min-width: 0;
  min-height: 8.25rem;
  padding: 0.85rem 0.95rem 0.75rem;
  place-items: center;
  align-content: center;
  gap: 0.45rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.14);
}

.company-trust__brand-mark {
  display: grid;
  width: 100%;
  min-height: 4.1rem;
  place-items: center;
}

.company-trust__brand-mark svg {
  display: block;
  width: min(100%, 14rem);
  height: auto;
  max-height: 4.1rem;
}

.company-trust__brand-name {
  color: #123a34;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.company-trust__brand-card--text {
  min-height: 5.8rem;
}

.company-trust__brand-note {
  max-width: 86ch;
  margin: 0;
  color: #b9cdc4;
  font-size: 0.74rem;
  line-height: 1.5;
}

.company-trust__rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: #f8fbf7;
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-decoration: none;
}

.company-trust__rating:hover .company-trust__reviews,
.company-trust__rating:focus-visible .company-trust__reviews {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.company-trust__score {
  font-weight: 700;
}

.company-trust__scale {
  color: #dbe8e2;
}

.company-trust__stars {
  color: #fbbc04;
  font-size: 1.18em;
  letter-spacing: 0.08em;
  line-height: 1;
}

.company-trust__reviews {
  color: #8ab4f8;
}

.company-trust__info {
  display: inline-grid;
  width: 1.05rem;
  height: 1.05rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #dbe8e2;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.company-trust .company-trust__statement {
  max-width: 76ch;
  margin: 0.35rem 0 0;
  color: #f8fbf7;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  line-height: 1.65;
}

.company-trust__signals {
  display: grid;
  width: min(100%, 58rem);
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.8rem;
}

.company-trust__signals > div {
  display: grid;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.company-trust__signals strong {
  color: #c5ef42;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.company-trust__signals span {
  color: #f8fbf7;
}

.company-trust__meta {
  color: #b9cdc4;
}

.company-trust__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  font-size: 0.9rem;
}

  .company-trust__meta a {
    color: #fff;
    font-weight: 750;
  }

  /* Reference and proof block: readable company wordmarks and prominent verified figures. */
  .company-trust__proof {
    display: grid;
    width: min(100%, 74rem);
    gap: 0.85rem;
  }

  .company-trust__rating {
    width: fit-content;
    min-height: 4.75rem;
    padding: 0.9rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
  }

  .company-trust__signals {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  }

  .company-trust__signals > div {
    display: grid;
    min-height: 7.5rem;
    padding: 1.15rem 1.2rem;
    align-content: center;
    background: rgba(255, 255, 255, 0.1);
  }

  .company-trust__signals strong,
  .company-trust__signals span {
    display: block;
  }

  .official-listings__links a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.35rem 0.8rem;
    padding: 1rem 1.1rem;
    border: 1px solid #cfdad4;
    border-radius: 0.85rem;
    background: #fff;
  }

  .official-listings__links a strong,
  .official-listings__links a span {
    display: block;
  }

  .official-listings__links a span {
    grid-column: 1;
    color: #526c65;
  }

  .official-listings__links a b {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

.strengths,
.project-process {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: #102f2b;
  color: #f8fbf7;
}

.strengths h2,
.project-process h2,
.communication-team h2 {
  max-width: 18ch;
  margin: 0.5rem 0 1.4rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}

.strengths h2,
.project-process h2 {
  color: #fff;
}

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

.strengths__item {
  display: grid;
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.strengths__check {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #102f2b;
  font-size: 1.25rem;
  font-weight: 900;
  place-items: center;
  background: #c5ef42;
}

.strengths__item h3,
.project-process__steps h3 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: 1.25rem;
}

.strengths__item p,
.project-process__steps p,
.project-process__intro {
  margin: 0;
  color: #dbe8e2;
}

.communication-team {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: #f5f7f4;
}

.communication-team__grid {
  display: grid;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.communication-team h2 {
  color: #112d2b;
}

.communication-team__copy > p {
  max-width: 58ch;
  color: #4d5c58;
  line-height: 1.7;
}

.communication-team__people {
  display: grid;
  margin-top: 1.5rem;
  gap: 0.65rem;
}

.communication-team__person {
  display: grid;
  padding: 0.9rem 1rem;
  border-left: 4px solid #c5ef42;
  gap: 0.1rem;
  background: #fff;
}

.communication-team__person strong {
  color: #112d2b;
}

.communication-team__person span {
  color: #4d5c58;
}

.communication-team__person a {
  width: fit-content;
  margin-top: 0.35rem;
  color: #1f6b63;
  font-size: 0.88rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.communication-team__visual {
  margin: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #102f2b;
  box-shadow: 0 22px 56px rgba(17, 45, 43, 0.16);
}

.communication-team__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.project-process__intro {
  max-width: 70ch;
  margin-bottom: 2rem;
}

.project-process__steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
  counter-reset: project-step;
}

.project-process__steps li {
  position: relative;
  min-width: 0;
  padding: 1.3rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.city-service-directory {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: #e9eee5;
}

.city-service-directory h2 {
  max-width: 18ch;
  margin: 0.5rem 0 0.9rem;
  color: #102f2b;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.city-service-directory > .shell > p {
  max-width: 72ch;
  color: #4d5c58;
}

.city-service-directory__groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.city-service-directory__groups section {
  padding: 1.2rem;
  border: 1px solid rgba(16, 47, 43, 0.14);
  border-radius: 1rem;
  background: #fff;
}

.city-service-directory__groups h3 {
  margin: 0 0 0.75rem;
  color: #102f2b;
}

.city-service-directory__groups ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.42rem;
  list-style: none;
}

.city-service-directory__groups a {
  color: #1f6b63;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.project-process__phase {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: #102f2b;
  font-size: 0.78rem;
  font-weight: 850;
  background: #c5ef42;
}

.mobile-contact {
  display: none;
}

@media (max-width: 980px) {
  .company-trust__reference-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .communication-team__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 4.25rem;
  }

  .official-listings__inner,
  .official-listings__links {
    grid-template-columns: 1fr;
  }

  .company-trust__rating {
    gap: 0.35rem;
  }

  .company-trust__reference-list {
    grid-template-columns: 1fr;
  }

  .company-trust__brand-card {
    min-height: 7rem;
  }

  .strengths__grid,
  .project-process__steps {
    grid-template-columns: 1fr;
  }

  .mobile-contact {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: #102f2b;
    box-shadow: 0 -10px 30px rgba(5, 28, 25, 0.22);
  }

  .mobile-contact a {
    padding: 0.75rem 0.4rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .mobile-contact a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-contact a:last-child {
    color: #102f2b;
    border-radius: 0.55rem;
    background: #c5ef42;
  }
}
