:root {
  --night: #102A43;
  --seo-blue: #1D70B8;
  --growth: #22A06B;
  --sand: #F5F1E8;
  --white: #FAFAF7;
  --graphite: #1F2933;
  --muted: #5F6C77;
  --line: rgba(16, 42, 67, 0.14);
  --soft-green: rgba(34, 160, 107, 0.12);
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

::selection {
  color: #ffffff;
  background: var(--growth);
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--night);
}

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

.sr-only {
  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: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--night);
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--growth);
}

.nav-cta {
  padding: 0 18px;
  border: 1px solid rgba(34, 160, 107, 0.45);
  border-radius: var(--radius);
  background: rgba(34, 160, 107, 0.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--night);
}

.hero {
  position: relative;
  min-height: calc(100vh - 132px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 58px 0 52px;
  background:
    linear-gradient(110deg, rgba(245, 241, 232, 0.96), rgba(250, 250, 247, 0.92) 54%, rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 78% 22%, rgba(29, 112, 184, 0.10), transparent 34%);
}

.hero::before {
  content: "JE";
  position: absolute;
  right: 4vw;
  top: 8vh;
  font-family: Georgia, serif;
  font-size: 24rem;
  font-weight: 700;
  color: rgba(16, 42, 67, 0.035);
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  margin: 0 0 16px;
  font-weight: 800;
  color: var(--growth);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Inter", Arial, sans-serif;
  color: var(--night);
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: 3.85rem;
}

h2 {
  font-size: 3.15rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 680px;
  margin-top: 20px;
  font-size: 1.18rem;
  color: var(--night);
}

.hero-support {
  max-width: 640px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--growth);
  box-shadow: 0 14px 28px rgba(34, 160, 107, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1b8d5d;
}

.button-secondary {
  color: var(--night);
  border-color: rgba(29, 112, 184, 0.32);
  background: rgba(255, 255, 255, 0.68);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: var(--night);
  font-weight: 700;
}

.trust-list li {
  position: relative;
  padding-left: 20px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--growth);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  color: rgba(16, 42, 67, 0.2);
}

.serp-panel {
  position: absolute;
  top: 18px;
  left: 0;
  right: 34px;
  z-index: 2;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 250, 247, 0.92);
  box-shadow: var(--shadow);
}

.search-line {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  color: var(--night);
  background: #ffffff;
  font-weight: 700;
}

.search-dot {
  width: 14px;
  height: 14px;
  border: 2px solid var(--growth);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.search-dot::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  transform: rotate(45deg);
  background: var(--growth);
}

.result-line {
  margin-top: 14px;
  padding: 15px 16px;
  border-left: 3px solid rgba(29, 112, 184, 0.28);
  background: rgba(255, 255, 255, 0.62);
}

.result-line strong,
.result-line span {
  display: block;
}

.result-line strong {
  color: var(--night);
}

.result-line span {
  color: var(--muted);
  font-size: 0.95rem;
}

.result-featured {
  border-left-color: var(--growth);
  background: rgba(34, 160, 107, 0.08);
}

.growth-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  z-index: 1;
  width: 184px;
  height: 174px;
  border: 1px solid rgba(34, 160, 107, 0.22);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(16, 42, 67, 0.13);
}

.bar {
  position: absolute;
  bottom: 26px;
  width: 26px;
  border-radius: 6px 6px 0 0;
}

.bar-one {
  left: 38px;
  height: 52px;
  background: var(--night);
}

.bar-two {
  left: 78px;
  height: 82px;
  background: var(--seo-blue);
}

.bar-three {
  left: 118px;
  height: 116px;
  background: var(--growth);
}

.trend-line {
  position: absolute;
  left: 34px;
  top: 38px;
  width: 118px;
  height: 72px;
  border-top: 5px solid var(--growth);
  border-right: 5px solid var(--growth);
  transform: skew(-22deg) rotate(-18deg);
  border-radius: 6px;
}

.boadilla-line {
  position: absolute;
  left: 28px;
  right: 20px;
  bottom: 0;
  width: calc(100% - 48px);
  color: rgba(16, 42, 67, 0.15);
}

.trust-strip {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.strip-grid div {
  min-height: 112px;
  padding: 24px;
  background: #ffffff;
}

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

.strip-grid strong {
  color: var(--night);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 1.05rem;
}

.strip-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.authority-section {
  background: #ffffff;
}

.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 54px;
  align-items: start;
}

.authority-copy {
  display: grid;
  gap: 18px;
}

.authority-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.authority-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(34, 160, 107, 0.08), rgba(29, 112, 184, 0.05)),
    var(--white);
}

.credential-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.credential-list li {
  position: relative;
  padding-left: 20px;
  color: var(--night);
  font-weight: 750;
}

.credential-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--growth);
}

.sector-block {
  margin-top: 68px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.sector-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sector-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--growth);
  font-weight: 900;
  font-size: 0.88rem;
}

.sector-grid h3 {
  font-size: 1.12rem;
}

.sector-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.two-column,
.local-grid,
.diagnosis-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
}

.content-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.mini-card {
  min-height: 104px;
  display: flex;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--night);
  background: #ffffff;
  font-weight: 800;
}

.services-section,
.process-section,
.faq-section {
  background: var(--sand);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  background: rgba(250, 250, 247, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: var(--growth);
  background: var(--soft-green);
  font-weight: 900;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--night);
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--growth);
}

.local-section {
  background: var(--night);
  color: rgba(255, 255, 255, 0.78);
}

.local-section h2,
.local-section .eyebrow {
  color: #ffffff;
}

.local-section p + p {
  margin-top: 18px;
}

.local-list {
  display: grid;
  gap: 14px;
}

.local-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.local-list strong,
.local-list span {
  display: block;
}

.local-list strong {
  color: #ffffff;
  font-family: "Sora", "Inter", Arial, sans-serif;
}

.local-list span {
  margin-top: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.process-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--night);
  font-weight: 900;
}

.process-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.diagnosis-section {
  background: #ffffff;
}

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

.diagnosis-points div {
  min-height: 130px;
  display: flex;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--night);
  background: linear-gradient(145deg, rgba(34, 160, 107, 0.08), rgba(29, 112, 184, 0.05));
  font-weight: 800;
}

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

details {
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--night);
  font-weight: 900;
  cursor: pointer;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--growth);
  font-size: 1.45rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(140deg, rgba(16, 42, 67, 0.96), rgba(16, 42, 67, 0.92)),
    var(--night);
  color: rgba(255, 255, 255, 0.78);
}

.contact-section h2,
.contact-section .eyebrow {
  color: #ffffff;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 600px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-methods a,
.contact-methods span {
  color: #ffffff;
  font-weight: 800;
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--graphite);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row.split {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label,
.privacy-check {
  color: var(--night);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 42, 67, 0.18);
  border-radius: var(--radius);
  padding: 11px 13px;
  color: var(--graphite);
  background: #ffffff;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(34, 160, 107, 0.18);
  border-color: var(--growth);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 18px;
  font-size: 0.95rem;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.privacy-check a {
  color: var(--seo-blue);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 36px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  color: var(--night);
  font-weight: 800;
}

.footer-cookie-button {
  border: 0;
  padding: 0;
  color: var(--night);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--growth);
}

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

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 90;
  color: var(--graphite);
}

.cookie-banner__inner {
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(16, 42, 67, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(16, 42, 67, 0.2);
}

.cookie-banner__title,
.cookie-modal__title {
  margin: 0;
  color: var(--night);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.cookie-banner p,
.cookie-modal p {
  margin-top: 8px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(16, 42, 67, 0.18);
  border-radius: var(--radius);
  color: var(--night);
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  border-color: rgba(34, 160, 107, 0.55);
}

.cookie-button--primary {
  color: #ffffff;
  border-color: var(--growth);
  background: var(--growth);
}

.cookie-button--ghost {
  background: rgba(245, 241, 232, 0.72);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 42, 67, 0.48);
}

.cookie-modal__panel {
  width: min(100%, 640px);
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.cookie-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cookie-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.cookie-option strong {
  display: block;
  color: var(--night);
}

.cookie-option span span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}

.cookie-modal__links {
  margin-top: 14px;
}

.cookie-modal__links a {
  color: var(--seo-blue);
  font-weight: 800;
  text-decoration: underline;
}

.legal-page {
  background: var(--sand);
}

.legal-main {
  padding: 92px 0;
}

.legal-box {
  max-width: 860px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.legal-box h1 {
  font-size: 3.6rem;
}

.legal-box h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-box p,
.legal-box li {
  color: var(--muted);
}

.legal-box p {
  margin-top: 14px;
}

.legal-box ul {
  margin: 14px 0 0;
}

@media (max-width: 1040px) {
  .hero::before {
    font-size: 18rem;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-grid,
  .authority-grid,
  .two-column,
  .local-grid,
  .diagnosis-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .strip-grid,
  .services-grid,
  .sector-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: 3.45rem;
  }

  .hero::before {
    font-size: 13rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-lead {
    font-size: 1.16rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 50px;
    padding: 0 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .serp-panel {
    right: 0;
  }

  .growth-panel {
    width: 156px;
    height: 152px;
  }

  .problem-grid,
  .diagnosis-points,
  .form-row.split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 74px;
  }

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

  .site-nav {
    top: 74px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero {
    padding: 46px 0 28px;
  }

  .hero::before {
    font-size: 9rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .trust-list {
    gap: 8px 12px;
    font-size: 0.92rem;
  }

  .trust-list li {
    padding-left: 14px;
  }

  .strip-grid,
  .services-grid,
  .sector-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .service-card,
  .authority-panel,
  .sector-grid article,
  .process-grid article,
  .contact-form,
  .legal-box {
    padding: 22px;
  }

  .legal-box h1 {
    font-size: 2.65rem;
  }

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

  .footer-grid nav {
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    padding: 18px;
  }

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

  .cookie-modal__panel {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.45rem;
  }
}

@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;
  }
}
