

:root {
  --navy-950: #041426;
  --navy-900: #071c33;
  --navy-800: #0b2948;
  --navy-700: #12395d;
  --ink: #102033;
  --muted: #667385;
  --paper: #f4f6f4;
  --white: #ffffff;
  --yellow: #f4d51f;
  --green: #85bd3e;
  --line: #dce2e4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(12, 32, 53, 0.1);
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  height: 88px;
  padding: 0 clamp(24px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-self: start;
}

.brand img {
  height: 58px;
  object-fit: contain;
  width: 92px;
}

.brand span {
  border-left: 1px solid #cfd5d7;
  color: #536071;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  padding: 5px 0 5px 12px;
}

.main-nav {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}

.main-nav a {
  color: #283849;
  font-size: 14px;
  font-weight: 700;
  padding: 35px 0 31px;
  position: relative;
}

.main-nav a::after {
  background: var(--yellow);
  bottom: 24px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  flex-direction: column;
  justify-self: end;
  text-align: right;
}

.phone-label {
  color: #7a8591;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--navy-900);
  font-size: 18px;
  margin-top: 2px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(4, 20, 38, 0.98) 0%, rgba(4, 20, 38, 0.93) 42%, rgba(4, 20, 38, 0.62) 70%, rgba(4, 20, 38, 0.25) 100%),
    url("/assets/hero-prospex.webp") center / cover no-repeat;
  color: var(--white);
  min-height: calc(100vh - 88px);
  overflow: hidden;
  padding: clamp(70px, 8vw, 124px) clamp(24px, 7vw, 110px) 78px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,0.04) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(255,255,255,0.035) 50%, transparent 50.3%);
  background-size: 110px 110px;
  content: "";
  inset: 0 0 0 48%;
  opacity: 0.18;
  position: absolute;
  transform: perspective(600px) rotateY(-13deg) scale(1.2);
}

.hero-glow {
  background: var(--yellow);
  border-radius: 999px;
  filter: blur(110px);
  height: 150px;
  opacity: 0.07;
  position: absolute;
  right: 6%;
  top: 20%;
  width: 150px;
}

.hero-inner {
  display: grid;
  gap: clamp(56px, 7vw, 120px);
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  margin: 0 auto;
  max-width: 1460px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 24px;
}

.eyebrow {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow span {
  background: var(--yellow);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.hero h1 {
  font-size: clamp(48px, 5.4vw, 86px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  max-width: 940px;
}

.hero h1 em {
  color: var(--yellow);
  display: block;
  font-style: normal;
  font-weight: 700;
}

.hero-lead {
  color: #c4cfda;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.65;
  margin: 32px 0 0;
  max-width: 720px;
}

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

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 20px;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 56px;
  padding: 0 27px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--yellow);
  color: var(--navy-950);
}

.button-primary:hover {
  background: #ffe338;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  max-width: 820px;
  padding-top: 25px;
}

.hero-proof div {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.hero-proof strong {
  color: var(--green);
  font-size: 11px;
  padding-top: 3px;
}

.hero-proof span {
  color: #b5c1cd;
  font-size: 12px;
  line-height: 1.55;
}

.hero-panel {
  align-self: center;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  padding: clamp(28px, 3vw, 46px);
}

.panel-kicker {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-size: clamp(27px, 2.2vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 14px 0 30px;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-panel li {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #d3dce5;
  font-size: 13px;
  line-height: 1.45;
  padding: 17px 0;
}

.hero-panel li span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  margin-right: 13px;
}

.hero-panel > a {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  margin-top: 28px;
}

.hero-panel > a span {
  color: var(--yellow);
  font-size: 22px;
}

.scroll-cue {
  align-items: center;
  bottom: 30px;
  color: #8393a3;
  display: flex;
  font-size: 9px;
  font-weight: 700;
  gap: 11px;
  left: clamp(24px, 7vw, 110px);
  letter-spacing: 0.16em;
  position: absolute;
  z-index: 3;
}

.scroll-cue span {
  background: var(--yellow);
  height: 1px;
  width: 34px;
}

.section {
  margin: 0 auto;
  max-width: 1460px;
  padding: clamp(80px, 9vw, 140px) clamp(24px, 5vw, 74px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 0.75fr;
  margin-bottom: 64px;
}

.section-heading h2,
.placeholder-section h2,
.contact-intro h2 {
  color: var(--navy-900);
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.04;
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 5px;
}

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

.service-card {
  background: var(--white);
  min-height: 345px;
  padding: 34px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: 0 20px 50px rgba(6, 28, 51, 0.1);
  transform: translateY(-5px);
  z-index: 2;
}

.service-number {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  color: var(--navy-900);
  font-size: 23px;
  letter-spacing: -0.025em;
  margin: 34px 0 16px;
}

.service-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.tag-list {
  bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  left: 34px;
  position: absolute;
  right: 34px;
}

.tag-list span {
  background: #eef2ed;
  color: #5b685b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.quick-contact {
  align-items: center;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1460px;
  padding: 50px clamp(28px, 5vw, 76px);
}

.quick-contact p {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.quick-contact h2 {
  font-size: clamp(25px, 2.3vw, 36px);
  letter-spacing: -0.035em;
  margin: 0;
}

.audience-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.audience-grid article {
  border-right: 1px solid var(--line);
  min-height: 280px;
  padding: 35px 28px;
}

.audience-grid article:last-child {
  border-right: 0;
}

.audience-grid span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.audience-grid h3 {
  color: var(--navy-900);
  font-size: 21px;
  letter-spacing: -0.025em;
  margin: 48px 0 15px;
}

.audience-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.approach {
  background: var(--navy-900);
  color: var(--white);
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: 1fr 0.9fr;
  margin: 0 auto;
  max-width: 1600px;
  overflow: hidden;
  padding: clamp(80px, 9vw, 140px) clamp(24px, 8vw, 130px);
  position: relative;
}

.approach::after {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
  height: 520px;
  position: absolute;
  right: -180px;
  top: -240px;
  width: 520px;
}

.approach h2 {
  font-size: clamp(40px, 4.2vw, 66px);
  letter-spacing: -0.055em;
  line-height: 1.03;
  margin: 0;
}

.approach-copy > p:not(.section-label) {
  color: #b7c4d0;
  font-size: 15px;
  line-height: 1.8;
  margin: 30px 0;
  max-width: 650px;
}

.approach-copy > a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  max-width: 320px;
  padding: 16px 0;
}

.approach-copy > a span {
  color: var(--yellow);
  font-size: 20px;
}

.approach-list {
  position: relative;
  z-index: 2;
}

.approach-list > div {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 18px;
  grid-template-columns: 34px 1fr;
  padding: 24px 0;
}

.approach-list > div > span {
  align-items: center;
  border: 1px solid rgba(133, 189, 62, 0.55);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  font-size: 12px;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.approach-list p {
  color: #acbac7;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.approach-list strong {
  color: var(--white);
  display: block;
  font-size: 16px;
  margin-bottom: 7px;
}

.process {
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.8fr 1.2fr;
}

.process-heading {
  align-self: start;
  position: sticky;
  top: 138px;
}

.process-heading h2 {
  color: var(--navy-900);
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -0.05em;
  line-height: 1.06;
  margin: 0;
}

.process-list article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 45px 1fr;
  padding: 28px 0;
}

.process-list article > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  padding-top: 5px;
}

.process-list h3 {
  color: var(--navy-900);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.process-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.funding-callout {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(133, 189, 62, 0.11), transparent 42%),
    var(--white);
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1460px;
  padding: clamp(55px, 7vw, 96px) clamp(28px, 6vw, 90px);
}

.funding-callout h2 {
  color: var(--navy-900);
  font-size: clamp(36px, 4vw, 60px);
  letter-spacing: -0.05em;
  margin: 0;
}

.funding-callout > div > p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 760px;
}

.faq {
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-heading h2 {
  color: var(--navy-900);
  font-size: clamp(36px, 3.6vw, 55px);
  letter-spacing: -0.05em;
  line-height: 1.06;
  margin: 0;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  color: var(--navy-900);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  padding-right: 40px;
}

.faq-list details p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 700px;
}

.contact-shell {
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-intro > p:not(.section-label) {
  color: var(--muted);
  line-height: 1.7;
  margin: 26px 0 30px;
}

.contact-intro > a {
  color: var(--navy-900);
  display: block;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  margin: 9px 0;
}

form {
  background: var(--white);
  box-shadow: 0 22px 60px rgba(9, 33, 54, 0.09);
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 52px);
}

form label {
  color: #384858;
  display: grid;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

form input,
form textarea {
  background: #f7f8f7;
  border: 1px solid #dce2e2;
  border-radius: 0;
  color: var(--ink);
  outline: none;
  padding: 14px 15px;
  text-transform: none;
  transition: border 150ms ease, box-shadow 150ms ease;
}

form input:focus,
form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(133, 189, 62, 0.13);
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.consent {
  align-items: start;
  display: flex;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.consent input {
  margin: 0;
}

.consent a,
.form-privacy-note a {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
}

.form-privacy-note {
  background: #f1f4f1;
  color: #5b6876;
  font-size: 11px;
  line-height: 1.65;
  margin: 0;
  padding: 14px 16px;
}

.form-status {
  color: #536271;
  font-size: 12px;
  margin: 0;
}

footer {
  background: var(--navy-950);
  color: #b9c5d0;
  font-size: 12px;
  line-height: 1.7;
  padding: 0 clamp(24px, 7vw, 110px) 34px;
}

.footer-cta {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 54px 0 46px;
}

.footer-cta .section-label {
  margin-bottom: 12px;
}

.footer-cta h2 {
  color: var(--white);
  font-size: clamp(27px, 2.5vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0;
  max-width: 760px;
}

.footer-phone {
  align-items: flex-start;
  background: var(--yellow);
  color: var(--navy-950);
  display: flex;
  flex-direction: column;
  min-width: 250px;
  padding: 17px 24px;
}

.footer-phone span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-phone strong {
  color: var(--navy-950);
  font-size: 20px;
}

.footer-main {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.3fr 1fr 0.8fr 0.8fr;
  padding: 42px 0 30px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-top: 20px;
}

.footer-bottom span:last-child {
  color: #8e9eac;
  font-size: 11px;
  max-width: 640px;
  text-align: right;
}

footer strong,
footer a {
  color: var(--white);
}

footer a {
  display: block;
  font-weight: 700;
}

.footer-brand img {
  background: var(--white);
  height: 68px;
  object-fit: contain;
  padding: 4px 12px;
  width: 118px;
}

.footer-brand p {
  margin-bottom: 0;
}

.footer-company p,
.footer-registers p {
  margin: 8px 0 0;
}

.footer-links {
  display: grid;
  gap: 5px;
}

.footer-cookie-settings,
.legal-cookie-settings {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
  text-align: left;
}

.cookie-panel {
  align-items: end;
  background: var(--white);
  border-top: 4px solid var(--yellow);
  bottom: 0;
  box-shadow: 0 -18px 60px rgba(4, 20, 38, 0.2);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 0;
  padding: 28px clamp(24px, 6vw, 88px);
  position: fixed;
  right: 0;
  z-index: 100;
}

.cookie-kicker {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 8px;
}

.cookie-copy h2 {
  color: var(--navy-900);
  font-size: 23px;
  letter-spacing: -0.03em;
  margin: 0;
}

.cookie-copy > p:last-child {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  margin: 10px 0 0;
  max-width: 760px;
}

.cookie-copy a {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 48px;
  padding: 0 19px;
}

.cookie-reject,
.cookie-customize {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-900);
}

.cookie-options {
  display: grid;
  gap: 10px;
  min-width: 330px;
}

.cookie-options > div,
.cookie-options label {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 8px 0;
}

.cookie-options strong {
  color: var(--green);
  font-size: 10px;
  text-transform: uppercase;
}

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

.legal-page {
  background: var(--paper);
  min-height: 100vh;
}

.legal-header {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 88px;
  padding: 12px clamp(24px, 7vw, 110px);
}

.legal-back {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.legal-hero {
  background:
    linear-gradient(135deg, rgba(133, 189, 62, 0.08), transparent 45%),
    var(--navy-950);
  color: var(--white);
  padding: clamp(62px, 8vw, 112px) max(24px, calc((100vw - 1120px) / 2));
}

.legal-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 0;
}

.legal-intro {
  color: #c4cfda;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  margin-top: 28px;
  max-width: 820px;
}

.legal-intro p {
  margin: 0;
}

.legal-date {
  color: #8fa0af;
  font-size: 11px;
  margin: 28px 0 0;
}

.legal-content {
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 28, 51, 0.07);
  margin: clamp(36px, 6vw, 72px) auto;
  max-width: 1120px;
  padding: clamp(30px, 6vw, 78px);
}

.legal-content section + section {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 36px;
}

.legal-content h2 {
  color: var(--navy-900);
  font-size: clamp(25px, 2.4vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0 0 20px;
}

.legal-content h3 {
  color: var(--navy-800);
  font-size: 17px;
  margin: 24px 0 8px;
}

.legal-content p,
.legal-content li {
  color: #586779;
  font-size: 14px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-footer {
  align-items: center;
  background: var(--navy-950);
  color: #aebbc6;
  display: grid;
  gap: 8px 32px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 34px clamp(24px, 7vw, 110px);
}

.legal-footer > div {
  display: flex;
  gap: 18px;
  grid-column: 1 / -1;
  padding-top: 10px;
}

.legal-footer a,
.legal-footer strong {
  color: var(--white);
}

.mobile-contact {
  display: none;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .audience-grid article:nth-child(2) {
    border-right: 0;
  }

  .audience-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .approach,
  .process,
  .faq {
    grid-template-columns: 1fr;
  }

  .process-heading {
    position: static;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .legal-footer {
    grid-template-columns: 1fr;
  }

  .legal-footer > div {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand img {
    height: 48px;
    width: 78px;
  }

  .brand span {
    display: none;
  }

  .phone-label {
    display: none;
  }

  .header-phone strong {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 64px 22px 75px;
  }

  .hero::before {
    inset: 0;
    opacity: 0.3;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

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

  .hero-panel {
    padding: 27px 22px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 82px 20px;
  }

  .section-heading h2,
  .placeholder-section h2,
  .contact-intro h2 {
    font-size: 39px;
  }

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

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

  .quick-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    margin: 0 20px;
    padding: 38px 28px;
  }

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

  .audience-grid article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 240px;
  }

  .audience-grid article:last-child {
    border-bottom: 0;
  }

  .approach {
    padding: 82px 22px;
  }

  .approach h2 {
    font-size: 41px;
  }

  .funding-callout {
    align-items: start;
    grid-template-columns: 1fr;
    margin: 0 20px;
    padding: 52px 28px;
  }

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

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

  form {
    padding: 26px 20px;
  }

  footer {
    padding-bottom: 100px;
  }

  .footer-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-phone {
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom,
  .legal-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }

  .legal-header {
    min-height: 72px;
    padding: 10px 18px;
  }

  .legal-back {
    font-size: 11px;
  }

  .legal-content {
    margin: 20px;
    padding: 30px 22px;
  }

  .mobile-contact {
    background: var(--white);
    bottom: 0;
    box-shadow: 0 -8px 28px rgba(7, 28, 51, 0.14);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    left: 0;
    padding: 10px;
    position: fixed;
    right: 0;
    z-index: 60;
  }

  .mobile-contact a {
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 800;
    padding: 14px 8px;
    text-align: center;
  }

  .mobile-contact a:last-child {
    background: var(--yellow);
  }

  .cookie-panel {
    align-items: stretch;
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 23px 18px 92px;
  }

  .cookie-actions {
    display: grid;
  }

  .cookie-options {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.form-status.success { color: #176b36; font-weight: 700; }
.form-status.error { color: #a12622; font-weight: 700; }
form button[disabled] { opacity: .65; cursor: wait; }
.website-field { position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; overflow:hidden!important; }
