/* Shared content styles for public inner pages. */
:root {
  --navy-950: #041e2e;
  --navy-900: #073451;
  --navy-800: #0a466b;
  --blue: #08aeea;
  --blue-light: #dff6ff;
  --ink: #13222c;
  --muted: #63717a;
  --line: #dfe7eb;
  --soft: #f3f7f9;
  --white: #fff;
  --shadow: 0 20px 55px rgb(4 30 46 / 10%);
  --radius: 4px;
  --max: 1180px;
  font-family: 'Manrope Variable', 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  font-weight: 450;
  line-height: 1.55;
}

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

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

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: 'Manrope Variable', 'Manrope', 'Segoe UI', sans-serif;
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1.12;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue), white 25%);
  outline-offset: 4px;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
}

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

.topbar {
  color: rgb(255 255 255 / 82%);
  background: var(--navy-900);
  font-size: 12px;
}

.topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-inner > span {
  color: rgb(255 255 255 / 55%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.topbar-inner div {
  display: flex;
  gap: 25px;
}

.topbar a:hover,
.site-footer a:hover {
  color: #65d7ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgb(7 52 81 / 8%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #31434e;
  font-size: 13px;
  font-weight: 700;
}

.main-navigation > a:not(.header-cta) {
  position: relative;
  padding: 34px 0;
}

.main-navigation > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.main-navigation > a:hover::after,
.main-navigation > a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--blue);
  box-shadow: 0 9px 24px rgb(8 174 234 / 20%);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.header-cta {
  min-height: 42px;
  padding-inline: 18px;
}

.button:hover,
.header-cta:hover {
  background: #39c6f6;
  box-shadow: 0 13px 28px rgb(8 174 234 / 28%);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  transition: transform .2s ease, opacity .2s ease;
}

.eyebrow {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-slider {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--ink);
  background: var(--navy-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  visibility: hidden;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity .65s ease, visibility .65s;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(4 30 46 / 35%), transparent 58%);
  content: '';
}

.hero-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(515px, 100%);
  padding: 42px;
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 12px 0 18px;
  color: var(--navy-950);
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -.055em;
  line-height: .98;
}

.hero-copy p {
  margin: 0 0 24px;
  color: #4f606a;
  font-size: 17px;
  line-height: 1.65;
}

.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--navy-900);
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 18%);
  font-size: 27px;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 50%;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgb(7 52 81 / 55%);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--blue);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  background: var(--navy-900);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  padding: 26px 25px;
  border-left: 1px solid rgb(255 255 255 / 12%);
}

.trust-grid div:last-child {
  border-right: 1px solid rgb(255 255 255 / 12%);
}

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

.trust-grid strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 14px;
}

.trust-grid span {
  color: rgb(255 255 255 / 58%);
  font-size: 11px;
  line-height: 1.5;
}

.section {
  padding: 100px 0;
}

.section-compact {
  padding-top: 25px;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.content-split h2,
.quality-grid h2,
.cta-panel h2 {
  margin: 10px 0 14px;
  color: var(--navy-900);
  font-size: clamp(30px, 4vw, 43px);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.section-heading p,
.content-split p,
.quality-grid p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 15px 45px rgb(7 52 81 / 7%);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.service-card > div {
  padding: 27px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 21px;
}

.service-card p {
  min-height: 70px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--blue);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.quality-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(45px, 7vw, 90px);
}

.quality-grid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.quality-grid h2 {
  color: var(--white);
}

.quality-grid p {
  color: rgb(255 255 255 / 68%);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 31px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--blue);
  content: '✓';
  font-weight: 800;
}

.check-list.light li {
  border-color: rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 80%);
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-grid li {
  min-height: 210px;
  padding: 26px 30px;
  border-left: 1px solid #d7e1e6;
}

.process-grid li:last-child {
  border-right: 1px solid #d7e1e6;
}

.process-grid span {
  color: var(--blue);
  font-family: 'Manrope Variable', 'Manrope', 'Segoe UI', sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 22px 0 9px;
  color: var(--navy-900);
  font-size: 18px;
}

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

.faq-wrap {
  max-width: 900px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 55px 23px 0;
  color: var(--navy-900);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 15px;
  right: 10px;
  color: var(--blue);
  content: '+';
  font-size: 29px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 55px;
  color: var(--white);
  background: var(--navy-900);
}

.cta-panel h2 {
  color: var(--white);
  font-size: clamp(27px, 3vw, 36px);
}

.cta-panel p {
  color: rgb(255 255 255 / 65%);
}

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

.page-hero {
  padding: 95px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgb(8 174 234 / 18%), transparent 32%),
    var(--navy-950);
}

.page-hero h1 {
  max-width: 820px;
  margin: 14px 0 20px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 66px);
  letter-spacing: -.055em;
  line-height: 1;
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 17px;
  line-height: 1.75;
}

.page-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(45px, 7vw, 85px);
}

.page-hero-grid img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  box-shadow: 25px 25px 0 rgb(8 174 234 / 13%);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

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

.feature-card {
  min-height: 250px;
  padding: 31px;
  border: 1px solid var(--line);
  box-shadow: 0 15px 45px rgb(7 52 81 / 5%);
}

.feature-mark {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--blue-light);
  font-weight: 800;
}

.feature-card h3 {
  margin: 0 0 11px;
  color: var(--navy-900);
  font-size: 19px;
}

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

.content-split {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 9vw, 120px);
}

.content-split .check-list {
  margin: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.detail-grid article {
  padding: 38px;
  border-left: 4px solid var(--blue);
  background: var(--soft);
}

.detail-grid h2 {
  margin: 0 0 15px;
  color: var(--navy-900);
  font-size: 23px;
}

.contact-hero {
  padding-bottom: 165px;
}

.contact-grid {
  position: relative;
  display: grid;
  margin-top: -90px;
  margin-bottom: 100px;
  grid-template-columns: .82fr 1.18fr;
  box-shadow: var(--shadow);
}

.contact-info,
.contact-form-panel {
  padding: 48px;
}

.contact-info {
  color: var(--white);
  background: var(--navy-900);
}

.contact-info h2,
.contact-form-panel h2 {
  margin: 10px 0 12px;
  font-size: 29px;
}

.contact-info p,
.form-intro {
  margin: 0 0 32px;
  color: rgb(255 255 255 / 63%);
  font-size: 14px;
  line-height: 1.65;
}

.contact-info dl {
  margin: 0;
}

.contact-info dl div {
  padding: 20px 0;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.contact-info dt {
  margin-bottom: 6px;
  color: #68d8ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-info dd {
  margin: 0;
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-panel {
  background: var(--white);
}

.contact-form-panel h2 {
  color: var(--navy-900);
}

.form-intro {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #273842;
  font-size: 12px;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgb(8 174 234 / 14%);
}

.privacy-check {
  display: grid !important;
  align-items: start;
  grid-template-columns: 18px 1fr;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

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

.submit-button {
  justify-self: start;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  margin-bottom: 22px;
  padding: 15px 17px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.55;
}

.form-alert[hidden] {
  display: none;
}

.form-alert.success {
  border: 1px solid #a8d9ba;
  color: #176b38;
  background: #edf9f1;
}

.form-alert.error {
  border: 1px solid #e4b0b0;
  color: #852525;
  background: #fff1f1;
}

.legal-hero,
.not-found {
  min-height: 400px;
}

.legal-content {
  max-width: 860px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.legal-content h2 {
  margin: 40px 0 12px;
  color: var(--navy-900);
  font-size: 23px;
}

.legal-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--navy-900);
  text-decoration: underline;
}

.legal-loading,
.legal-draft {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.legal-loading {
  color: var(--muted);
  text-align: center;
}

.legal-draft h2 {
  margin-top: 0;
}

.legal-draft .button {
  margin-top: 12px;
  color: var(--navy-950);
  text-decoration: none;
}

.imprint-sections {
  display: grid;
  gap: 10px;
}

.imprint-sections section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.imprint-sections section:last-child {
  border-bottom: 0;
}

.legal-note {
  margin-top: 45px;
  padding: 20px;
  border-left: 4px solid #e2a839;
  background: #fff8e8;
}

.not-found .button {
  margin-top: 28px;
}

.site-footer {
  color: var(--white);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  padding-top: 70px;
  padding-bottom: 60px;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: auto;
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 350px;
  color: rgb(255 255 255 / 55%);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer h2 {
  margin: 0 0 19px;
  color: var(--white);
  font-size: 14px;
}

.site-footer address {
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
  font-style: normal;
  line-height: 1.9;
}

.footer-navigation {
  display: grid;
  gap: 10px;
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
}

.footer-bottom {
  padding: 19px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 45%);
  font-size: 11px;
}

@media (max-width: 1020px) {
  .main-navigation {
    gap: 15px;
    font-size: 12px;
  }

  .main-navigation .header-cta {
    display: none;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card img {
    height: 245px;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
  }

  .brand img {
    height: 43px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded='true'] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded='true'] span:nth-child(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded='true'] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-navigation {
    display: none;
    width: 100%;
    padding-bottom: 16px;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

  .main-navigation > a:not(.header-cta) {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .main-navigation > a:not(.header-cta)::after {
    display: none;
  }

  .hero-slider {
    min-height: 600px;
  }

  .hero-copy {
    width: min(500px, calc(100% - 30px));
  }

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

  .trust-grid div:nth-child(3) {
    border-top: 1px solid rgb(255 255 255 / 12%);
  }

  .trust-grid div:nth-child(4) {
    border-top: 1px solid rgb(255 255 255 / 12%);
  }

  .service-grid article:last-child {
    grid-column: 1 / -1;
  }

  .quality-grid,
  .page-hero-grid,
  .content-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid img {
    height: 430px;
  }

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

  .process-grid li:nth-child(3),
  .process-grid li:nth-child(4) {
    border-top: 1px solid #d7e1e6;
  }

  .page-hero-grid img {
    height: 390px;
  }

  .contact-grid {
    max-width: 680px;
  }

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

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

  .section {
    padding: 72px 0;
  }

  .section-compact {
    padding-top: 0;
  }

  .hero-slider {
    min-height: 535px;
  }

  .hero-copy {
    padding: 27px 24px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 40px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .slider-arrow {
    top: auto;
    bottom: 14px;
    width: 39px;
    height: 39px;
    transform: none;
  }

  .slider-prev {
    left: 16px;
  }

  .slider-next {
    right: 16px;
  }

  .trust-grid,
  .service-grid,
  .feature-grid,
  .detail-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    padding: 20px;
    border-top: 1px solid rgb(255 255 255 / 12%);
    border-right: 1px solid rgb(255 255 255 / 12%);
  }

  .service-grid article:last-child {
    grid-column: auto;
  }

  .service-card img {
    height: 270px;
  }

  .quality-grid img {
    height: 330px;
  }

  .process-grid li,
  .process-grid li:last-child {
    min-height: auto;
    padding: 24px 20px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #d7e1e6;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 35px 25px;
  }

  .page-hero {
    padding: 72px 0;
  }

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

  .page-hero p {
    font-size: 15px;
  }

  .page-hero-grid img {
    height: 300px;
    box-shadow: 12px 12px 0 rgb(8 174 234 / 13%);
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-hero {
    padding-bottom: 135px;
  }

  .contact-info,
  .contact-form-panel {
    padding: 34px 24px;
  }

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

  .contact-form .full {
    grid-column: 1;
  }

  .footer-grid {
    gap: 40px;
    padding-top: 55px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
