:root {
  --navy: #0b1736;
  --navy-2: #122349;
  --gold: #c7a15a;
  --gold-dark: #a77e35;
  --ink: #121722;
  --muted: #667085;
  --line: #e5e9f0;
  --soft: #f8f9fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 23, 54, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.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: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(199, 161, 90, 0.78);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(11, 23, 54, 0.18);
}

.brand-mark img {
  position: absolute;
  top: -18px;
  left: -33px;
  width: 118px;
  max-width: none;
}

.brand-text {
  display: grid;
  gap: 1px;
  color: var(--navy);
  line-height: 1;
}

.brand-text strong {
  font-family: Poppins, Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-toggle {
  display: none;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

#oferta,
#o-mnie,
#proces,
#towarzystwa,
#kontakt {
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  gap: 52px;
  min-height: calc(100vh - 76px);
  padding-top: 52px;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.care-copy h2,
.cta-section h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: Poppins, Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(3.15rem, 5vw, 4.7rem);
  overflow-wrap: break-word;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy .headline-tail {
  max-width: 610px;
  margin-top: 8px;
  color: #1d2c4f;
  font-size: 0.54em;
  line-height: 1.12;
}

.hero-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: #485267;
  font-size: 1.18rem;
}

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

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

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

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(11, 23, 54, 0.18);
}

.button-primary:hover {
  background: var(--navy-2);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 20px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(199, 161, 90, 0.48);
  border-radius: 6px;
}

.hero-visual::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
}

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

.assurance-panel {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  width: min(310px, calc(100% - 68px));
  padding: 22px;
  color: var(--white);
  background: rgba(11, 23, 54, 0.9);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

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

.assurance-panel strong {
  font-size: 1rem;
}

.assurance-panel span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.trust-section,
.partners-section,
.care-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  background: var(--soft);
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.split {
  grid-template-columns: 1fr auto;
  align-items: end;
  max-width: none;
}

.section-heading h2,
.about-copy h2,
.care-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.section-heading p,
.about-copy p,
.care-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.feature-card,
.audience-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.feature-card svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card h3,
.process-rail h3,
.audience-panel h3,
.service-detail h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-family: Poppins, Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.16;
}

.feature-card p,
.process-rail p,
.audience-panel p,
.service-detail p,
.service-detail li {
  margin: 0;
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.about-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center center;
}

.about-copy {
  display: grid;
  gap: 28px;
}

.about-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.about-copy h2 {
  max-width: 690px;
}

.about-role {
  margin-top: 14px;
  color: var(--gold-dark);
  font-weight: 850;
}

.about-role-note {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.about-registration {
  margin-top: 10px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 780;
}

.about-logo {
  width: 118px;
  height: 118px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(199, 161, 90, 0.74);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(11, 23, 54, 0.16);
}

.about-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  display: grid;
  gap: 15px;
  max-width: 760px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
}

.about-highlights span {
  position: relative;
  min-height: 62px;
  padding: 18px 18px 18px 48px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 780;
}

.about-highlights span::before {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--gold);
  content: "✓";
  font-weight: 850;
}

.text-link {
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  font-weight: 760;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.service-card {
  display: grid;
  align-items: center;
  justify-items: start;
  min-height: 152px;
  padding: 18px;
  color: var(--navy);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card:hover svg,
.service-card.is-active svg {
  color: rgba(255, 255, 255, 0.88);
}

.service-card strong {
  display: block;
  max-width: 130px;
  font-size: 0.96rem;
  line-height: 1.2;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr 0.9fr;
  gap: 34px;
  margin-top: 18px;
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.service-detail h3 {
  margin-top: 0;
  color: var(--white);
  font-size: 1.8rem;
}

.service-detail p,
.service-detail li {
  color: rgba(255, 255, 255, 0.76);
}

.service-detail ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 0;
}

.process-section {
  padding-top: 100px;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 38px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #152b58);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-rail::before {
  position: absolute;
  top: 69px;
  right: 110px;
  left: 110px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(199, 161, 90, 0.14), rgba(199, 161, 90, 0.82), rgba(199, 161, 90, 0.14));
}

.process-rail article {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 0 10px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.process-rail article:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: -14px;
  z-index: 2;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

.process-rail span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: var(--navy);
  background: var(--gold);
  border: 8px solid #152b58;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(199, 161, 90, 0.55), 0 16px 34px rgba(0, 0, 0, 0.16);
}

.process-rail svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-rail h3 {
  margin-top: 34px;
  color: var(--white);
}

.process-rail p {
  max-width: 210px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.partner-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  color: #697386;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 850;
  filter: grayscale(1);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, filter 180ms ease;
}

.partner-grid span:hover {
  color: var(--navy);
  border-color: rgba(199, 161, 90, 0.7);
  filter: grayscale(0);
  transform: translateY(-2px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-panel {
  padding: 34px;
  background: var(--white);
}

.audience-panel.dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.audience-panel.dark h3,
.audience-panel.dark p,
.audience-panel.dark li {
  color: var(--white);
}

.audience-panel p {
  max-width: 560px;
}

.audience-panel ul,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.audience-panel li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.audience-panel li::before,
.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 850;
}

.care-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: start;
}

.check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.check-list li {
  padding: 18px 18px 18px 48px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.check-list li::before {
  top: 18px;
  left: 20px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(var(--max), calc(100% - 48px));
  margin: 92px auto 0;
  padding: 44px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #182c58);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-section p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-section .button-primary {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 74px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-weight: 760;
}

.contact-list a,
.privacy-note a,
.consent-label a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: var(--soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.form-help {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 520;
  line-height: 1.45;
}

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

.contact-form .form-honeypot input {
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  border: 0;
}

.consent-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.5;
}

.consent-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--navy);
}

.privacy-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 161, 90, 0.16);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note.is-success {
  color: #146c43;
  font-weight: 750;
}

.form-note.is-error {
  color: #9f1d2d;
  font-weight: 750;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.legal-section {
  max-width: 860px;
  min-height: calc(100vh - 260px);
}

.legal-section h1 {
  margin: 28px 0 18px;
  color: var(--navy);
  font-family: Poppins, Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.04;
}

.legal-section p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-section h2,
.legal-section h3 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-family: Poppins, Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.16;
}

.legal-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.legal-section h3 {
  font-size: 1.2rem;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-section li::marker {
  color: var(--gold-dark);
  font-weight: 850;
}

.legal-section strong {
  color: var(--navy);
}

.legal-meta {
  padding: 18px 20px;
  margin: 24px 0 30px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.footer-company {
  display: grid;
  gap: 3px;
}

.footer-company-name {
  color: var(--navy);
  font-weight: 780;
}

.footer-side {
  display: grid;
  justify-items: end;
  gap: 9px;
  text-align: right;
}

.footer-credit {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a,
.footer-links a {
  color: var(--navy);
  font-weight: 750;
}

@media (max-width: 1060px) {
  .hero,
  .about-section,
  .contact-section,
  .care-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 38px;
    min-height: auto;
  }

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

  .about-media {
    max-width: 620px;
    min-height: 520px;
  }

  .about-media img {
    min-height: 520px;
  }

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

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

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

  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }

  .process-rail::before {
    display: none;
  }

  .process-rail article {
    min-height: 190px;
    padding: 0 12px;
  }

  .process-rail article:nth-child(2)::after {
    display: none;
  }

  .process-rail h3 {
    margin-top: 28px;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: min(100% - 32px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark img {
    top: -16px;
    left: -29px;
    width: 104px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text span {
    font-size: 0.62rem;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--navy);
  }

  .main-nav,
  .header-cta,
  .legal-nav {
    display: none;
  }

  body.nav-open .main-nav {
    position: fixed;
    inset: 74px 16px auto;
    z-index: 30;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav a {
    padding: 14px 10px;
  }

  .section,
  .trust-section,
  .about-section,
  .partners-section,
  .care-section,
  .cta-section,
  .site-footer {
    width: min(100% - 32px, var(--max));
    padding-right: 0;
    padding-left: 0;
  }

  .trust-section,
  .about-section,
  .partners-section,
  .care-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 11.5vw, 3.7rem);
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

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

  .assurance-panel {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .section-heading.split,
  .about-title-row,
  .audience-grid,
  .check-list,
  .about-highlights,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 34px;
  }

  .about-media,
  .about-media img {
    min-height: 430px;
  }

  .about-logo {
    width: 98px;
    height: 98px;
  }

  .feature-grid,
  .service-grid,
  .partner-grid,
  .process-rail {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    min-height: 86px;
    padding: 18px;
  }

  .service-card svg {
    margin-bottom: 0;
  }

  .process-rail {
    gap: 22px;
    padding: 24px;
  }

  .process-rail article {
    min-height: auto;
    padding: 0 0 20px;
    text-align: left;
  }

  .process-rail article:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-rail article:not(:last-child)::after {
    display: none;
  }

  .process-rail article:nth-child(2)::after {
    display: none;
  }

  .process-rail span {
    width: 52px;
    height: 52px;
    border-width: 6px;
  }

  .process-rail h3 {
    margin-top: 18px;
  }

  .process-rail p {
    max-width: none;
    margin-left: 0;
  }

  .cta-section {
    display: grid;
    margin-top: 68px;
    padding: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-side {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 10px 16px;
  }
}

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