:root {
  --ink: #10233b;
  --ink-soft: #294259;
  --teal: #197b87;
  --teal-bright: #2f97a2;
  --teal-dark: #043d54;
  --aqua: #d8f3f3;
  --mist: #eef9f8;
  --white: #ffffff;
  --glass: rgba(230, 249, 249, 0.57);
  --glass-strong: rgba(235, 250, 250, 0.76);
  --line: rgba(39, 125, 139, 0.23);
  --shadow: 0 22px 60px rgba(0, 69, 88, 0.18);
  --radius-sm: 8px;
  --radius-md: 18px;
  --content: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 32%, rgba(255, 255, 255, 0.9), transparent 24rem),
    linear-gradient(180deg, #ecfbfb 0%, #f7ffff 30%, #0792a2 74%, #05324d 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

section[id] {
  scroll-margin-top: 128px;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 56px, var(--content));
  margin: 28px auto 0;
  padding: 0;
  transition:
    width 260ms var(--ease),
    margin 260ms var(--ease),
    padding 260ms var(--ease),
    background 260ms var(--ease),
    box-shadow 260ms var(--ease),
    backdrop-filter 260ms var(--ease);
}

.site-header.is-scrolled {
  width: min(100% - 32px, var(--content));
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(240, 251, 251, 0.78);
  box-shadow: 0 12px 34px rgba(4, 67, 83, 0.13);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.brand-mark::before {
  content: none;
}

.brand-mark::after {
  content: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  position: relative;
  display: inline-block;
  padding-top: 0.32em;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.05rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-word > span {
  color: var(--teal);
}

.brand-name em {
  position: absolute;
  top: 0;
  right: 0.18em;
  display: block;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.23em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(0.22em);
  white-space: nowrap;
}

.brand-tagline {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.28;
  text-align: center;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  color: #061a2b;
  font-size: 0.99rem;
  font-weight: 700;
}

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

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-bright);
  opacity: 0;
  transform: scaleX(0.25);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  padding: 15px 28px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: linear-gradient(135deg, #2b9aa4, #1c7585);
  box-shadow: 0 14px 30px rgba(4, 105, 124, 0.18);
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(25, 123, 135, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.language-switch button {
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.language-switch button.is-active {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(4, 105, 124, 0.18);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(4, 105, 124, 0.25);
}

.nav-cta svg,
address svg,
.benefits svg,
.service-card svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-cta svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: max(720px, calc(100vw * 941 / 1672));
  padding: 210px max(28px, calc((100vw - var(--content)) / 2)) 180px;
  background:
    linear-gradient(90deg, rgba(220, 247, 247, 0.28) 0%, rgba(220, 247, 247, 0.04) 44%, rgba(220, 247, 247, 0) 100%),
    url("Background.png") center top / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(230, 251, 251, 0.8) 0%, rgba(230, 251, 251, 0.38) 44%, rgba(230, 251, 251, 0.04) 76%),
    linear-gradient(180deg, rgba(228, 250, 250, 0.18) 0%, rgba(228, 250, 250, 0.04) 54%, rgba(2, 143, 161, 0.2) 100%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
}

.hero h1 {
  margin: 0 0 25px;
  color: #17314c;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.13;
}

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

.hero p {
  width: min(520px, 100%);
  margin: 0;
  color: #07182a;
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  font-weight: 500;
  line-height: 1.65;
}

.hero-accent {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 31px;
  color: var(--teal);
}

.hero-accent span {
  width: 50px;
  height: 2px;
  background: currentColor;
}

.hero-accent i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.hero-accent.small {
  margin: 13px 0 17px;
}

.hero-accent.small span {
  width: 38px;
}

.section-inner {
  width: min(100% - 56px, var(--content));
  margin: 0 auto;
}

.section-light {
  position: relative;
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.78), transparent 23rem),
    linear-gradient(180deg, #f6ffff 0%, #e5f8f7 100%);
  overflow: hidden;
}

.section-light::before,
.contact::after {
  content: "";
  position: absolute;
  inset: auto -4% 0;
  height: 190px;
  pointer-events: none;
  background:
    radial-gradient(70% 80% at 90% 85%, rgba(0, 143, 159, 0.52), transparent 58%),
    repeating-radial-gradient(ellipse at 90% 100%, rgba(255, 255, 255, 0.24) 0 2px, transparent 2px 28px);
  opacity: 0.75;
}

.about {
  padding: 8px 0 42px;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 64px;
}

.about-copy {
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: #121d35;
  font-size: clamp(1.85rem, 3.1vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

.about-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px auto 0;
  color: #001428;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
}

.about-symbol {
  display: grid;
  min-height: 230px;
  place-items: center;
  border-left: 1px solid rgba(14, 112, 131, 0.28);
}

.large-mark {
  display: block;
  width: 188px;
  height: 188px;
  object-fit: contain;
}

.large-mark::before {
  content: none;
}

.large-mark::after {
  content: none;
}

.case-promises {
  position: relative;
  padding: 24px 0 50px;
  background:
    linear-gradient(180deg, #e5f8f7 0%, #d5f1f0 100%),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.8), transparent 22rem);
  overflow: hidden;
}

.case-promises::before {
  content: "";
  position: absolute;
  inset: auto -8% 0;
  height: 170px;
  background:
    radial-gradient(70% 80% at 85% 100%, rgba(0, 143, 159, 0.34), transparent 58%),
    repeating-radial-gradient(ellipse at 85% 100%, rgba(255, 255, 255, 0.32) 0 2px, transparent 2px 28px);
  pointer-events: none;
}

.promise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.promise-card {
  min-height: 230px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(4, 61, 84, 0.98), rgba(0, 103, 126, 0.94)),
    radial-gradient(circle at 90% 15%, rgba(216, 243, 243, 0.24), transparent 16rem);
  box-shadow: 0 24px 58px rgba(0, 69, 88, 0.17);
}

.promise-card span {
  display: block;
  margin-bottom: 20px;
  color: #98f3f0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.promise-card h2 {
  max-width: 520px;
  color: var(--white);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.services {
  position: relative;
  padding: 54px 0 42px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(197, 238, 238, 0.76) 0%, rgba(18, 158, 170, 0.96) 30%, rgba(0, 113, 132, 0.98) 68%, rgba(3, 69, 95, 0.98) 100%),
    repeating-radial-gradient(ellipse at 15% 0%, rgba(255, 255, 255, 0.15) 0 2px, transparent 2px 32px);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 8%, rgba(255, 255, 255, 0.48), transparent 32%),
    radial-gradient(ellipse at 100% 80%, rgba(0, 44, 70, 0.42), transparent 42%);
  pointer-events: none;
}

.services .section-inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  text-align: center;
}

.services .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.services h2 {
  color: #0d2139;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 29px;
}

.service-card {
  min-height: 265px;
  padding: 29px 27px 27px;
  color: #06172a;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(227, 249, 248, 0.67), rgba(170, 222, 222, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 18px 42px rgba(0, 63, 82, 0.12);
  backdrop-filter: blur(10px);
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(242, 255, 255, 0.78), rgba(180, 231, 231, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 26px 52px rgba(0, 53, 73, 0.18);
}

.icon-ring {
  display: grid;
  width: 63px;
  height: 63px;
  margin: 0 auto 20px;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(16, 126, 139, 0.16);
}

.icon-ring svg {
  width: 35px;
  height: 35px;
}

.service-card h3 {
  min-height: 56px;
  margin: 0 0 13px;
  color: #07182d;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: #00152a;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.6;
}

.why {
  position: relative;
  padding: 34px 0 40px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 105, 126, 0.98) 0%, rgba(3, 56, 88, 1) 100%),
    repeating-radial-gradient(ellipse at 70% 10%, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 30px);
}

.why-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.why h2 {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.why h2 span {
  color: var(--white);
  font-size: clamp(1.45rem, 2.7vw, 1.9rem);
  font-weight: 900;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  display: grid;
  min-height: 92px;
  place-items: center;
  gap: 8px;
  padding: 4px 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.benefits svg {
  width: 43px;
  height: 43px;
  color: rgba(255, 255, 255, 0.93);
}

.contact {
  padding: 37px 0 33px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.contact-copy {
  max-width: 450px;
  padding-left: 6px;
  justify-self: center;
}

.contact-copy h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.28rem);
}

address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

address a,
address span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #081c2f;
  font-size: 1rem;
  font-weight: 700;
}

address svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  fill: rgba(25, 123, 135, 0.08);
}

.footer-brand {
  min-height: 190px;
  padding-left: 58px;
  border-left: 1px solid rgba(14, 112, 131, 0.25);
}

.footer-brand .brand-mark {
  width: 84px;
  height: 84px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 9vw, 260px);
  min-height: 48px;
  padding: 12px 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 500;
  background: #04314d;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-header {
    width: min(100% - 36px, var(--content));
  }

  .brand {
    min-width: auto;
  }

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

  .brand-name {
    font-size: 2rem;
  }

  .brand-name em {
    font-size: 0.22em;
    letter-spacing: 0.2em;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  .main-nav {
    gap: 22px;
    font-size: 0.9rem;
  }

  .nav-cta {
    min-width: 178px;
    padding: 13px 22px;
  }

  .hero {
    min-height: 690px;
    background-size: cover;
  }

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

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

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

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    width: calc(100% - 28px);
    margin-top: 12px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 28px;
    background: rgba(240, 251, 251, 0.86);
    box-shadow: 0 12px 34px rgba(4, 67, 83, 0.13);
    backdrop-filter: blur(18px);
    gap: 14px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--teal);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 96px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(238, 250, 250, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 8px;
  }

  .language-switch {
    justify-content: center;
    width: 100%;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    min-width: 100%;
    margin-top: 4px;
  }

  .hero {
    min-height: 690px;
    padding: 170px 24px 140px;
    background-position: 61% top;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(231, 250, 250, 0.95), rgba(231, 250, 250, 0.62) 58%, rgba(231, 250, 250, 0.1));
  }

  .hero h1 {
    font-size: clamp(2.45rem, 9vw, 3.45rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .section-inner {
    width: min(100% - 36px, var(--content));
  }

  .about-grid,
  .contact-grid,
  .why-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-symbol,
  .footer-brand {
    border-left: 0;
    padding-left: 0;
  }

  h2 {
    font-size: clamp(1.48rem, 6.6vw, 2rem);
  }

  .services h2 {
    font-size: clamp(1.55rem, 6.8vw, 2.05rem);
  }

  .about-symbol {
    min-height: 170px;
  }

  .large-mark {
    width: 134px;
    height: 134px;
  }

  .large-mark::before {
    inset: 42px -10px 0 18px;
  }

  .large-mark::after {
    top: 48px;
    left: 34px;
    width: 90px;
    height: 42px;
  }

  .large-mark span {
    top: 55px;
    left: 41px;
    width: 68px;
    height: 31px;
  }

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

  .why h2 {
    text-align: center;
  }

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

  .benefits li {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-copy {
    justify-self: start;
  }

  .footer-brand {
    justify-self: start;
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.is-scrolled {
    width: calc(100% - 20px);
    min-height: 64px;
    padding-right: 62px;
  }

  .menu-toggle {
    display: inline-grid !important;
    position: absolute;
    top: 50%;
    right: auto;
    left: min(328px, calc(100vw - 58px));
    z-index: 3;
    transform: translateY(-50%);
  }

  .brand {
    gap: 9px;
    min-width: 0;
    max-width: 100%;
  }

  .brand-mark {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-width: 2px;
  }

  .brand-mark::before {
    inset: 14px -5px 0 6px;
  }

  .brand-mark::after {
    top: 17px;
    left: 13px;
    width: 33px;
    height: 18px;
  }

  .brand-wave {
    top: 21px;
    left: 16px;
    width: 25px;
    height: 13px;
  }

  .brand-name {
    font-size: 1.34rem;
  }

  .brand-name em {
    font-size: 0.22em;
    transform: translateX(0.18em);
  }

  .brand-tagline {
    font-size: 0.39rem;
  }

  .hero {
    min-height: 650px;
    padding-top: 145px;
    background-position: 64% top;
  }

  .hero-content {
    max-width: 340px;
  }

  .about-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .about-copy p:not(.eyebrow),
  .service-card p {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .about-copy p:not(.eyebrow) {
    font-size: 0.96rem;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    min-height: auto;
  }
}

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