*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --navy: #071a33;
  --navy-2: #0c2b50;
  --blue: #087ff5;
  --blue-dark: #0565c7;
  --cyan: #16c7df;
  --ice: #eef9ff;
  --pale: #f5fbff;
  --ink: #10243d;
  --muted: #5d7087;
  --line: #dceaf5;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(7, 40, 74, .11);
  --radius: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body::selection {
  background: rgba(8, 127, 245, .18);
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,234,245,.9);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  line-height: 1.05;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.03em;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  box-shadow: 0 9px 24px rgba(8,127,245,.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  color: var(--navy);
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #40556d;
  transition: color .2s ease;
}

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

.site-nav .nav-call {
  padding: 11px 17px;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(8,127,245,.2);
}

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

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(22,199,223,.16), transparent 28%),
    radial-gradient(circle at 8% 70%, rgba(8,127,245,.08), transparent 25%),
    linear-gradient(180deg, #f7fcff 0%, #fff 100%);
  padding: 78px 0 92px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -170px;
  top: 90px;
  background: rgba(22,199,223,.1);
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #8ceafa;
}

.pin {
  font-size: 10px;
  margin-right: 6px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 13px;
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0a91e8);
  box-shadow: 0 12px 26px rgba(8,127,245,.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 32px rgba(8,127,245,.28);
}

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

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: #3e5872;
  font-size: 13px;
  font-weight: 750;
}

.hero-points li {
  white-space: nowrap;
}

.hero-media {
  position: relative;
  max-width: 510px;
  justify-self: end;
}

.image-frame {
  overflow: hidden;
  border: 9px solid rgba(255,255,255,.95);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 2 / 2.55;
  object-fit: cover;
  transition: transform .5s ease;
}

.hero-media:hover .image-frame img {
  transform: scale(1.025);
}

.hero-card {
  position: absolute;
  left: -32px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 17px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 38px rgba(7,40,74,.18);
}

.hero-card-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
}

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

.hero-card strong {
  font-size: 13px;
}

.hero-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

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

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

.trust-grid > div {
  min-height: 102px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-content: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,.09);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-icon {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #9cecf7;
  background: rgba(22,199,223,.13);
  font-weight: 900;
}

.trust-grid strong {
  font-size: 13px;
}

.trust-grid small {
  margin-top: 2px;
  color: #9eb2c9;
  font-size: 11px;
}

.section {
  padding: 105px 0;
}

.services-section {
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.problem-copy h2,
.contact-card h2,
.education-copy h2,
.faq-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-heading > p:last-child,
.problem-copy > p,
.education-copy > p,
.contact-card > p {
  color: var(--muted);
  font-size: 16px;
}

.section-heading > p:last-child {
  margin: 16px 0 0;
}

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

.service-card,
.benefit-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(7,40,74,.045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: #c5e6fb;
  box-shadow: 0 22px 50px rgba(7,40,74,.11);
}

.service-card.featured {
  border-color: rgba(8,127,245,.34);
  background: linear-gradient(160deg, #f7fcff, #eefaff);
}

.card-number {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #c5d5e5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-icon,
.benefit-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 14px;
  color: var(--blue);
  background: #e9f7ff;
  font-weight: 900;
  font-size: 19px;
}

.service-card h3,
.benefit-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.service-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.problem-section {
  background: var(--pale);
}

.problem-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.problem-media {
  position: relative;
}

.problem-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.image-caption {
  position: absolute;
  right: -22px;
  bottom: 22px;
  max-width: 260px;
  padding: 13px 16px;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 30px rgba(7,40,74,.12);
  font-size: 11px;
  font-weight: 700;
}

.problem-copy h2 {
  max-width: 620px;
}

.problem-copy > p {
  max-width: 650px;
  margin: 20px 0;
}

.check-list {
  padding: 0;
  margin: 25px 0 28px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 12px 0;
  color: #304963;
  font-size: 14px;
  font-weight: 650;
}

.check-list li span {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #dcf5ff;
  font-size: 12px;
}

.text-link {
  color: var(--blue);
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
}

.text-link span {
  margin-left: 6px;
}

.why-section {
  background: #fff;
}

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

.benefit-card {
  background: linear-gradient(180deg, #fff, #f8fcff);
}

.benefit-icon {
  margin-bottom: 20px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(115deg, #06172e 0%, #0b3971 56%, #058cc4 100%);
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -170px;
  top: -260px;
  border-radius: 50%;
  border: 70px solid rgba(255,255,255,.06);
}

.cta-inner {
  min-height: 245px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.area-section {
  background: var(--pale);
}

.area-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
}

.area-copy {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(7,40,74,.05);
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.location-pills span {
  padding: 7px 11px;
  border-radius: 99px;
  color: #256184;
  background: #e8f7ff;
  font-size: 11px;
  font-weight: 800;
}

.area-copy h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--navy);
}

.area-copy p {
  margin: 0 0 25px;
  color: var(--muted);
}

.address-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 25px 0;
  padding: 16px;
  border-radius: 15px;
  background: #f5fbff;
}

.address-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--blue);
  background: #e1f5ff;
}

.address-box address {
  color: #526a83;
  font-size: 13px;
  font-style: normal;
}

.address-box strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.map-wrap {
  min-height: 470px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #dfeaf2;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.education-section {
  background: #fff;
}

.education-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: center;
}

.education-copy h2 {
  max-width: 680px;
}

.education-copy > p {
  max-width: 680px;
  margin: 20px 0;
}

.education-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 40px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(150deg, #06244a, #087dbb 65%, #13c5dc);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.water-lines {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -120px;
  right: -100px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.04), 0 0 0 90px rgba(255,255,255,.03);
}

.education-badge {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 8px 11px;
  border-radius: 99px;
  color: #d7faff;
  background: rgba(255,255,255,.1);
  font-size: 11px;
  font-weight: 850;
}

.education-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.education-card p {
  margin: 9px 0 0;
  color: #c9f2fa;
  font-size: 13px;
}

.faq-section {
  background: var(--pale);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.faq-grid .section-heading {
  position: sticky;
  top: 110px;
  margin: 0;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 20px;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 20px;
  font-weight: 500;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -2px 20px 20px;
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.contact-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(160deg, #f8fdff, #fff);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 700px;
}

.contact-card > p {
  max-width: 680px;
  margin: 18px 0 0;
}

.big-phone {
  display: inline-block;
  margin: 25px 0 22px;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-details div {
  padding: 15px;
  border-radius: 14px;
  background: #f3f9fd;
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 4px;
  color: #6d8197;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-details strong {
  color: #203a54;
  font-size: 12px;
}

.contact-side {
  display: grid;
  gap: 15px;
}

.mini-card {
  display: flex;
  gap: 15px;
  padding: 22px;
  border-radius: 19px;
  background: var(--navy);
  color: var(--white);
}

.mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: #8deaf5;
  background: rgba(22,199,223,.13);
}

.mini-card strong {
  font-size: 14px;
}

.mini-card p {
  margin: 4px 0 0;
  color: #a9bdd2;
  font-size: 12px;
}

.site-footer {
  padding: 70px 0 24px;
  color: #aabed3;
  background: #06162b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .9fr;
  gap: 70px;
  padding-bottom: 55px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-grid p {
  max-width: 450px;
  margin: 0;
  color: #91a8bf;
  font-size: 13px;
}

.footer-grid h3 {
  margin: 0 0 17px;
  color: var(--white);
  font-size: 13px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 9px 0;
  color: #91a8bf;
  font-size: 12px;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #8deaf5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #718aa4;
  font-size: 10px;
}

.mobile-call {
  display: none;
}

@media (max-width: 1050px) {
  .hero-grid,
  .problem-grid,
  .education-grid,
  .contact-grid {
    gap: 45px;
  }

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

  .trust-grid > div {
    padding-inline: 14px;
  }
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 70px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 45px rgba(7,40,74,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a {
    padding: 13px 12px;
    border-radius: 11px;
  }

  .site-nav .nav-call {
    text-align: center;
    margin-top: 5px;
  }

  .hero {
    padding: 55px 0 70px;
  }

  .hero-grid,
  .problem-grid,
  .area-layout,
  .education-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero-media {
    width: min(100%, 520px);
    justify-self: center;
  }

  .hero-card {
    left: 15px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .problem-grid {
    gap: 50px;
  }

  .image-caption {
    right: 12px;
  }

  .cta-inner {
    min-height: auto;
    padding: 60px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 380px;
  }

  .faq-grid {
    gap: 40px;
  }

  .faq-grid .section-heading {
    position: static;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1200;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 15px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #08a8c7);
    box-shadow: 0 16px 35px rgba(3,65,125,.3);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transform: translateY(90px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }

  .mobile-call.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

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

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .benefit-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .service-card,
  .benefit-card,
  .area-copy,
  .contact-card {
    padding: 23px;
  }

  .hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -20px 15px 0;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

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

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

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

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