:root {
  --ink: #102033;
  --muted: #607080;
  --line: #dce6ee;
  --paper: #f6f9fb;
  --white: #ffffff;
  --blue: #1267d8;
  --blue-dark: #0a4fae;
  --cyan: #16b8ca;
  --green: #27a66b;
  --amber: #f6a800;
  --navy: #081522;
  --navy-soft: #10243a;
  --shadow: 0 24px 70px rgba(16, 32, 51, .14);
  --shadow-soft: 0 16px 40px rgba(16, 32, 51, .1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f9fcfd 0%, #eef5f7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 92px;
  line-height: .92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: 0;
}

p { margin-bottom: 0; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(220, 230, 238, .74);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease, padding .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 34px rgba(16, 32, 51, .1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-logo {
  width: 122px;
  height: 58px;
  padding: 6px 8px;
  object-fit: contain;
  background: white;
  border: 1px solid rgba(220, 230, 238, .96);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 32, 51, .08);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 15px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #26384b;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.main-nav a:hover {
  color: var(--blue);
  background: #eef6ff;
}

.main-nav a.is-active {
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(18, 103, 216, .2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 156px clamp(20px, 5vw, 80px) 50px;
  color: white;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .75), transparent 72%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 21, 34, .96) 0%, rgba(8, 21, 34, .78) 46%, rgba(8, 21, 34, .28) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 510px);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-text {
  width: min(650px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .84);
  font-size: 22px;
}

.hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-stack span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}

.hero-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(5, 13, 24, .78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f15b5b;
}

.console-top span:nth-child(2) {
  background: var(--amber);
}

.console-top span:nth-child(3) {
  background: var(--green);
}

.console-top strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.hero-console pre {
  margin: 0;
  padding: 24px;
  overflow: auto;
  color: #d7f5ff;
  font: 600 14px/1.9 "Cascadia Code", Consolas, "Liberation Mono", monospace;
}

.hero-console code,
.hero-console code span {
  display: block;
}

.hero-console b {
  color: #7edcff;
  font-weight: 800;
}

.code-muted {
  color: rgba(255, 255, 255, .46);
}

.code-ok {
  margin-top: 8px;
  color: #70f0a2;
}

.console-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.console-foot span {
  padding: 14px 16px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions,
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button::after {
  content: ">";
  margin-left: 10px;
  font-size: 14px;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 32px rgba(18, 103, 216, .28);
}

.button.primary:hover {
  box-shadow: 0 20px 42px rgba(18, 103, 216, .34);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, .14);
}

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

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 74px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.hero-panel div {
  padding: 24px;
  background: rgba(8, 21, 34, .72);
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 6px;
  color: white;
  font-size: 28px;
  line-height: 1;
}

.hero-panel span {
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.section {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 80px);
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: minmax(300px, .74fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(18, 103, 216, .08), rgba(22, 184, 202, .08)),
    white;
}

.intro-copy {
  display: grid;
  gap: 24px;
}

.intro-lead {
  padding: 28px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
  font-size: 24px;
  line-height: 1.32;
  font-weight: 900;
}

.intro-card-grid {
  display: grid;
  gap: 14px;
}

.intro-card-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(16, 32, 51, .08);
}

.intro-card-grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
  font-weight: 900;
}

.intro-card-grid h3 {
  margin-bottom: 6px;
}

.intro-card-grid p {
  color: var(--muted);
  font-size: 17px;
}

.services-showcase {
  color: white;
  background: linear-gradient(135deg, #081522 0%, #10243a 62%, #083b49 100%);
}

.services-showcase .section-heading p:not(.eyebrow),
.services-showcase .feature-card p {
  color: rgba(255, 255, 255, .74);
}

.feature-grid,
.service-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.feature-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber));
}

.method {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 96px);
  background: #edf6f8;
}

.method-visual,
.section-visual,
.page-hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.method-visual img,
.section-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.method p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 19px;
}

.steps span {
  padding: 10px 14px;
  color: #0e3d6f;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.services {
  background: var(--navy);
  color: white;
}

.services .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.service-card,
.audience-grid article {
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover,
.audience-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 103, 216, .28);
  box-shadow: var(--shadow);
}

.service-card img,
.audience-grid img {
  width: 100%;
  height: 166px;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.audience-grid h3,
.audience-grid p,
.audience-grid span,
.audience-grid .text-link {
  margin-left: 26px;
  margin-right: 26px;
}

.service-card h3,
.audience-grid h3 {
  margin-top: 24px;
}

.service-card p,
.audience-grid p {
  color: var(--muted);
}

.service-card p {
  padding-bottom: 28px;
}

.logo-reference-card img {
  padding: 34px;
  object-fit: contain;
  background: #f4f8fb;
}

.page-cards {
  background: white;
}

.light-card {
  color: var(--ink);
  background: #fbfdfe;
}

.audiences {
  background: white;
}

.audience-grid span {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #08764b;
  background: #e9f8f1;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
  font-size: 13px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 22px 26px 28px;
  padding: 10px 14px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.card-link::after {
  content: ">";
  margin-left: 8px;
  font-size: 13px;
}

.references {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  background: #dfeef4;
}

.references p {
  color: var(--muted);
  font-size: 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 460px);
  gap: 34px;
  padding: clamp(74px, 8vw, 120px) clamp(20px, 5vw, 80px);
  color: white;
  background: linear-gradient(135deg, #081522 0%, #113a63 58%, #087882 100%);
}

.contact p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.contact-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.contact-card p {
  margin-bottom: 10px;
}

.contact-card .button {
  width: 100%;
  margin-top: 18px;
}

.contact-logo {
  width: 136px;
  height: 74px;
  margin-bottom: 22px;
  padding: 8px 10px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 80px);
  color: #d9e8f5;
  background: #06101b;
  font-size: 14px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-meta a {
  color: white;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-cookie-link {
  padding: 0;
  color: white;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.footer-brand img {
  width: 94px;
  height: 48px;
  padding: 6px 8px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  min-height: 74svh;
  padding: 148px clamp(20px, 5vw, 80px) 76px;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #07111d 0%, #113a63 56%, #087882 100%);
}

.page-hero .hero-text {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .82);
}

.page-hero h1 {
  font-size: 66px;
}

.page-hero-media {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  background: white;
}

.split-section.soft {
  background: #edf6f8;
}

.section-visual {
  margin-top: 24px;
}

.section-copy {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
}

.section-copy::before {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.copy-lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.22;
  font-weight: 900;
}

.copy-points {
  display: grid;
  gap: 14px;
}

.copy-points p {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  color: var(--muted);
  font-size: 18px;
}

.copy-points span {
  width: 9px;
  height: 9px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(22, 184, 202, .12);
}

.cookie-banner {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(220, 230, 238, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 60px rgba(16, 32, 51, .18);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__title {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.cookie-banner__text {
  color: var(--muted);
  font-size: 15px;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(320px, 100%);
  justify-self: end;
}

.cookie-banner__button {
  min-height: 44px;
  width: 100%;
  white-space: nowrap;
}

.legal-hero {
  min-height: 66svh;
}

.legal-section {
  background: white;
}

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

.legal-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 103, 216, .06), rgba(255, 255, 255, 0) 38%),
    #fbfdfe;
  box-shadow: var(--shadow-soft);
}

.legal-card h3 {
  margin-bottom: 22px;
}

.legal-card dl,
.legal-card dd {
  margin: 0;
}

.legal-card dl {
  display: grid;
  gap: 16px;
}

.legal-card dl div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.legal-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card dd {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.legal-copy-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: #edf6f8;
}

.legal-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.legal-copy h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

.legal-copy p {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1180px) {
  .brand-copy {
    display: none;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: center;
    min-height: 44px;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 40px;
  }

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

  .hero-panel,
  .hero-layout,
  .intro,
  .method,
  .references,
  .contact,
  .page-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid,
  .audience-grid,
  .legal-grid,
  .legal-copy-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 46px;
  }

  .hero-console {
    max-width: 620px;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .page-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

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

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .site-header {
    padding: 12px 16px;
    justify-content: flex-end;
    min-height: 86px;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand-logo {
    width: 138px;
    height: 68px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .hero,
  .section,
  .contact,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-text,
  .intro-card-grid p,
  .method p,
  .copy-points p {
    font-size: 18px;
  }

  .intro-lead {
    padding: 24px;
    font-size: 21px;
  }

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

  .intro-card-grid span {
    margin-bottom: 16px;
  }

  .hero-console pre {
    padding: 18px;
    font-size: 12px;
  }

  .console-foot {
    grid-template-columns: 1fr;
  }

  .section-copy {
    padding: 24px;
  }

  .copy-lead {
    font-size: 23px;
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-self: stretch;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .feature-card,
  .contact-card {
    padding: 24px;
  }

  .service-card h3,
  .service-card p,
  .audience-grid h3,
  .audience-grid p,
  .audience-grid span,
  .audience-grid .text-link {
    margin-left: 22px;
    margin-right: 22px;
  }
}
