:root {
  --ink: #0f2c46;
  --ink-soft: #405365;
  --navy: #012a50;
  --navy-2: #07385f;
  --aqua: #28d6c0;
  --aqua-dark: #087f74;
  --sky: #dff7f4;
  --cloud: #f4f8fa;
  --white: #ffffff;
  --line: #d7e2e8;
  --shadow: 0 24px 70px rgba(1, 42, 80, 0.16);
  --radius: 18px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  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;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 226, 232, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-image {
  width: 114px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav > a:not(.button) {
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover {
  color: var(--aqua-dark);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-button > span:not(.sr-only) {
  width: 19px;
  height: 2px;
  display: block;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  color: var(--navy);
  background: var(--aqua);
  border: 2px solid var(--aqua);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 181, 161, 0.18);
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: #38e6d0;
  box-shadow: 0 14px 28px rgba(15, 181, 161, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.9rem;
}

.button-secondary {
  color: var(--navy);
  background: transparent;
  border-color: rgba(8, 31, 51, 0.32);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 7% 30%, rgba(40, 214, 192, 0.22), transparent 25%),
    linear-gradient(145deg, #f1fbfa 0%, #ffffff 54%, #eef5f8 100%);
}

.hero::after {
  position: absolute;
  right: -9vw;
  bottom: -280px;
  width: 520px;
  height: 520px;
  content: "";
  border: 84px solid rgba(8, 31, 51, 0.045);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 86px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aqua-dark);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.3vw, 5rem);
  font-weight: 860;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 830;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 27px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
  font-weight: 700;
  list-style: none;
}

.hero-notes li {
  position: relative;
  padding-left: 20px;
}

.hero-notes li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--aqua-dark);
  border-radius: 50%;
}

.hero-media {
  position: relative;
  padding: 0 0 32px 20px;
}

.hero-media::before {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 74%;
  height: 58%;
  content: "";
  background-image: radial-gradient(var(--aqua-dark) 1.25px, transparent 1.25px);
  background-size: 13px 13px;
  opacity: 0.22;
}

.hero-media > img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 52% center;
  border: 8px solid var(--white);
  border-radius: 28px 28px 28px 8px;
  box-shadow: var(--shadow);
}

.service-ticket {
  position: absolute;
  right: -16px;
  bottom: 0;
  width: min(340px, 82%);
  padding: 19px 21px;
  background: var(--navy);
  border-left: 5px solid var(--aqua);
  border-radius: 3px 14px 14px 14px;
  box-shadow: 0 18px 45px rgba(8, 31, 51, 0.28);
}

.service-ticket span,
.service-ticket strong,
.service-ticket a {
  display: block;
}

.service-ticket > span {
  color: #b9cad5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-ticket strong {
  margin: 3px 0 8px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
}

.service-ticket a {
  color: var(--aqua);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

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

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

.trust-grid p {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 27px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid strong {
  color: var(--aqua);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-grid span {
  color: #d9e4ea;
  font-size: 0.9rem;
  line-height: 1.5;
}

.section {
  padding: clamp(76px, 10vw, 124px) 0;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

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

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

.service-grid-two .service-card-featured {
  grid-column: auto;
}

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 104px;
  height: 104px;
  content: "";
  border: 24px solid rgba(8, 31, 51, 0.055);
  border-radius: 50%;
}

.service-card-featured {
  background: var(--sky);
  border-color: #a5ded7;
}

.service-number {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: 70px;
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card > div {
  position: relative;
  z-index: 1;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  list-style: none;
}

.service-card li {
  padding-left: 17px;
}

.service-card li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 10px 1px -17px;
  content: "";
  background: var(--aqua-dark);
  border-radius: 2px;
  transform: rotate(45deg);
}

.service-note {
  max-width: 760px;
  margin: 25px auto 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-align: center;
}

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.eyebrow-light {
  color: var(--aqua);
}

.dark-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(50px, 9vw, 115px);
}

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

.principles-grid article {
  padding-top: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.18);
}

.principles-grid article > span {
  display: block;
  margin-bottom: 62px;
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 850;
}

.principles-grid h3 {
  font-size: 1.13rem;
}

.principles-grid p {
  margin: 0;
  color: #c7d6df;
  font-size: 0.92rem;
}

.areas {
  background: var(--cloud);
}

.areas-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 10vw, 126px);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--aqua-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 15px 20px 15px 45px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 7px 20px rgba(8, 31, 51, 0.045);
  font-weight: 750;
}

.city-list li::before {
  position: absolute;
  left: 20px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--aqua);
  border: 3px solid var(--navy);
  border-radius: 50%;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(520px, 1.35fr);
  gap: clamp(44px, 10vw, 126px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  content: "+";
  color: var(--navy);
  background: var(--sky);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}

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

.faq-list details p {
  margin: -4px 50px 24px 0;
  color: var(--ink-soft);
}

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

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.3fr) minmax(270px, 0.7fr);
  align-items: center;
  gap: 48px;
  padding: clamp(40px, 7vw, 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2);
  border-radius: 24px 24px 24px 7px;
}

.contact-card::after {
  position: absolute;
  right: -85px;
  bottom: -85px;
  width: 240px;
  height: 240px;
  content: "";
  border: 50px solid rgba(40, 214, 192, 0.11);
  border-radius: 50%;
}

.contact-card h2 {
  max-width: 650px;
  margin-bottom: 13px;
  color: var(--white);
}

.contact-card p:last-child {
  max-width: 670px;
  margin: 0;
  color: #c7d6df;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button-light:hover {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: none;
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.button-outline-light:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.site-footer {
  padding: 74px 0 28px;
  color: #c5d2db;
  background: #051624;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.7fr;
  gap: 44px;
}

.brand-footer-logo {
  padding: 10px 14px;
  background: var(--white);
  border-radius: 14px;
}

.brand-footer-logo .brand-logo-image {
  width: 142px;
}

.footer-grid > div:first-child p {
  max-width: 390px;
  margin: 18px 0 0;
  font-size: 0.93rem;
}

.footer-grid h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid > div:not(:first-child) a {
  color: #d8e3e9;
  font-size: 0.91rem;
  text-decoration: none;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--aqua);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #8fa2af;
  font-size: 0.79rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-contact {
  display: none;
}

.legal-main {
  min-height: 70vh;
  padding: clamp(60px, 9vw, 100px) 0;
  background: linear-gradient(180deg, var(--cloud), var(--white) 300px);
}

.legal-wrap {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.legal-wrap h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.legal-intro {
  margin: 0 0 42px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.legal-wrap h2 {
  margin: 42px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--ink-soft);
}

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

.legal-meta {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--aqua-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.back-link {
  display: inline-flex;
  margin-top: 40px;
  color: var(--aqua-dark);
  font-weight: 800;
  text-underline-offset: 5px;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found .legal-wrap p {
  max-width: 560px;
  margin-inline: auto;
}

.not-found-logo {
  justify-content: center;
  margin: 0 auto 32px;
}

.not-found-logo .brand-logo-image {
  width: 160px;
}

@media (max-width: 960px) {
  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .dark-grid,
  .areas-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    max-width: 760px;
    margin-inline: auto;
  }

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

  .service-grid-two .service-card-featured {
    grid-column: auto;
  }

  .service-card-featured {
    grid-column: 1 / -1;
    min-height: 310px;
  }

  .dark-grid {
    gap: 44px;
  }

  .principles-grid article > span {
    margin-bottom: 34px;
  }

  .areas-grid,
  .faq-grid {
    gap: 45px;
  }

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

  .contact-actions {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }

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

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

  .brand-logo-image {
    width: 100px;
  }

  .menu-button {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 14px 17px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(8, 31, 51, 0.12);
  }

  .primary-nav[data-open="true"] {
    display: grid;
  }

  .primary-nav > a:not(.button) {
    padding: 13px 10px;
  }

  .primary-nav .button {
    margin-top: 6px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-grid {
    gap: 46px;
  }

  h1 {
    font-size: clamp(2.62rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
    gap: 8px;
  }

  .hero-media {
    padding-left: 0;
  }

  .hero-media::before {
    right: -10px;
  }

  .hero-media > img {
    aspect-ratio: 5 / 4;
    border-width: 5px;
    border-radius: 20px 20px 20px 6px;
  }

  .service-ticket {
    right: 8px;
    left: 8px;
    width: auto;
  }

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

  .trust-grid p,
  .trust-grid p:last-child {
    padding: 20px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .service-grid,
  .principles-grid,
  .city-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 50px;
  }

  .service-note {
    text-align: left;
  }

  .principles-grid article > span {
    margin-bottom: 25px;
  }

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

  .contact-card {
    width: min(calc(100% - 20px), var(--shell));
    padding: 38px 24px;
    border-radius: 18px 18px 18px 5px;
  }

  .site-footer {
    padding-top: 62px;
  }

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

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

  .footer-bottom {
    display: grid;
    margin-top: 42px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    background: rgba(5, 22, 36, 0.96);
    box-shadow: 0 -8px 26px rgba(8, 31, 51, 0.22);
    backdrop-filter: blur(12px);
  }

  .mobile-contact a {
    display: grid;
    place-content: center;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-contact a:last-child {
    color: var(--navy);
    background: var(--aqua);
    border: 0;
    border-radius: 8px;
  }
}

@media (max-width: 430px) {
  .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 {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
