:root {
  --brand: #00A8B5;
  --brand-dark: #00808B;
  --brand-deep: #075E66;
  --brand-soft: #E6F7F8;
  --brand-rgb: 0, 168, 181;

  --gray: #626262;
  --gray-dark: #343434;
  --gray-soft: #F4F5F5;

  --ink: #343434;
  --text: #626262;
  --muted: #858585;

  --line: #E4E7E7;

  --surface: #FFFFFF;
  --surface-alt: #F7F8F8;

  --shadow:
    0 20px 50px -12px
    rgba(52, 52, 52, 0.12);

  --shadow-soft:
    0 10px 30px -8px
    rgba(52, 52, 52, 0.08);

  --shadow-brand:
    0 14px 34px -10px
    rgba(0, 168, 181, 0.25);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 24px;

  --container: 1200px;
}

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

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

body {
  margin: 0;

  color: var(--ink);
  background: var(--surface);

  font-family:
    "Plus Jakarta Sans",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 16px;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main {
  min-width: 0;
}

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

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

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

button {
  color: inherit;
}

input,
select,
textarea {
  color: var(--ink);
}

::selection {
  color: #ffffff;
  background: var(--brand);
}

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

  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: 10000;

  top: 10px;
  left: 10px;

  padding: 10px 16px;

  color: var(--ink);
  background: #ffffff;

  border-radius: 8px;

  box-shadow: var(--shadow);

  transform: translateY(-150%);

  transition:
    transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(0, 168, 181, 0.25);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  gap: 10px;

  padding: 13px 26px;

  color: #ffffff;
  background: var(--brand);

  border: 1px solid var(--brand);
  border-radius: 14px;

  box-shadow: var(--shadow-brand);

  font-weight: 700;
  line-height: 1.2;

  cursor: pointer;

  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: #ffffff;

  background: var(--brand-dark);
  border-color: var(--brand-dark);

  box-shadow:
    0 16px 32px -10px
    rgba(0, 128, 139, 0.35);

  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;

  padding: 10px 18px;

  border-radius: 10px;
}

.button-ghost {
  color: var(--gray-dark);
  background: #ffffff;

  border-color: var(--line);

  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--brand-dark);

  background: var(--brand-soft);

  border-color:
    rgba(0, 168, 181, 0.30);

  box-shadow: none;
}

.button-light {
  color: var(--brand-dark);

  background: #ffffff;

  border-color: #ffffff;

  box-shadow: var(--shadow-soft);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--brand-dark);

  background: var(--brand-soft);

  border-color: var(--brand-soft);
}

.button svg {
  width: 19px;
  height: 19px;

  fill: currentColor;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: var(--brand);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  flex: 0 0 auto;

  width: 28px;
  height: 2px;

  background: currentColor;
}

.eyebrow-light {
  color: #ffffff;
}

.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 42px;
}

.section-heading h2,
.about-copy h2,
.process-copy h2,
.quote-copy h2,
.faq-grid h2 {
  margin: 12px 0 0;

  color: var(--ink);

  font-size:
    clamp(32px, 4vw, 46px);

  line-height: 1.15;

  letter-spacing: -0.03em;

  font-weight: 800;
}

.section-heading > p {
  max-width: 510px;

  margin: 0;

  color: var(--text);
}

.topbar {
  position: relative;

  z-index: 40;

  color:
    rgba(255, 255, 255, 0.80);

  background: var(--gray-dark);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  font-size: 0.76rem;
}

.topbar-contact,
.topbar-location {
  display: flex;
  align-items: center;

  gap: 10px;
}

.topbar a {
  color:
    rgba(255, 255, 255, 0.80);

  text-decoration: none;

  transition:
    color 160ms ease;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: #ffffff;
}

.topbar-contact span,
.topbar-location span[aria-hidden="true"] {
  color:
    rgba(255, 255, 255, 0.34);
}

.site-header {
  position: sticky;

  top: 0;

  z-index: 35;

  background:
    rgba(255, 255, 255, 0.97);

  border-bottom:
    1px solid
    rgba(52, 52, 52, 0.08);

  box-shadow:
    0 8px 28px
    rgba(52, 52, 52, 0.045);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-wrap {
  position: relative;

  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.site-header .brand {
  position: relative;

  z-index: 4;

  display: inline-flex;
  align-items: center;

  gap: 13px;

  flex: 0 0 auto;

  color: var(--gray-dark);

  text-decoration: none;
}

.site-header .brand img {
  width: auto;
  height: 50px;

  max-width: 245px;

  object-fit: contain;
}

.site-header .brand > span {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.site-header .brand strong {
  color: var(--gray-dark);

  font-size: 1.26rem;
  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -0.02em;
}

.site-header .brand small {
  color: var(--gray);

  font-size: 0.63rem;
  font-weight: 700;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  white-space: nowrap;
}

.main-nav > a {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding: 0 12px;

  border-radius: 9px;

  color: var(--gray-dark);

  font-size: 0.84rem;
  font-weight: 650;

  line-height: 1;

  text-decoration: none;

  white-space: nowrap;

  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.main-nav > a::after {
  content: "";

  position: absolute;

  left: 50%;
  right: 50%;

  bottom: 4px;

  height: 2px;

  border-radius: 999px;

  background: var(--brand);

  transition:
    left 160ms ease,
    right 160ms ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: var(--brand-dark);

  background:
    rgba(0, 168, 181, 0.06);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  left: 12px;
  right: 12px;
}

.nav-cta {
  position: relative;

  z-index: 4;

  flex: 0 0 auto;

  min-height: 44px;

  padding: 0 19px;

  border:
    1px solid
    var(--brand-dark);

  border-radius: 12px;

  color: #ffffff;

  background:
    var(--brand);

  box-shadow:
    0 9px 24px
    rgba(0, 168, 181, 0.20);

  white-space: nowrap;

  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #ffffff;

  background: var(--brand-dark);

  border-color: var(--brand-dark);

  transform:
    translateY(-1px);

  box-shadow:
    0 12px 28px
    rgba(0, 128, 139, 0.27);
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  border:
    1px solid
    rgba(0, 168, 181, 0.18);

  border-radius: 11px;

  background:
    rgba(0, 168, 181, 0.05);

  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  border-radius: 999px;

  background: var(--gray-dark);

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"]
> span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}

.menu-toggle[aria-expanded="true"]
> span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]
> span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}

input,
select,
textarea {
  border:
    1px solid
    var(--line);

  border-radius: 10px;

  background: #ffffff;

  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);

  outline: none;

  box-shadow:
    0 0 0 3px
    rgba(0, 168, 181, 0.10);
}

input::placeholder,
textarea::placeholder {
  color: #A3A3A3;
}

.card {
  border:
    1px solid
    var(--line);

  border-radius: var(--radius);

  background: #ffffff;

  box-shadow: var(--shadow-soft);
}

.page-shell {
  padding: 80px 0 100px;

  background: var(--surface);
}

.page-header {
  max-width: 850px;

  margin-bottom: 42px;
}

.page-header h1 {
  margin: 10px 0 0;

  color: var(--gray-dark);

  font-size:
    clamp(36px, 5vw, 58px);

  line-height: 1.08;

  letter-spacing: -0.04em;
}

.page-header p {
  margin: 18px 0 0;

  color: var(--text);

  font-size: 17px;
  line-height: 1.8;
}

.content-body {
  color: var(--text);

  line-height: 1.85;
}

.content-body h2,
.content-body h3,
.content-body h4 {
  color: var(--gray-dark);
}

.content-body h2 {
  margin:
    42px 0 16px;

  font-size: 28px;
}

.content-body h3 {
  margin:
    30px 0 12px;

  font-size: 21px;
}

.content-body p {
  margin:
    0 0 18px;
}

.content-body ul,
.content-body ol {
  margin:
    0 0 20px;

  padding-left: 24px;
}

.content-body a {
  color: var(--brand-dark);

  text-decoration: underline;

  text-underline-offset: 3px;
}

.table-responsive {
  width: 100%;

  overflow-x: auto;
}

table {
  width: 100%;

  border-collapse: collapse;

  background: #ffffff;
}

th,
td {
  padding: 14px 16px;

  border-bottom:
    1px solid
    var(--line);

  text-align: left;
}

th {
  color: var(--gray-dark);

  background: var(--surface-alt);

  font-size: 13px;
}

td {
  color: var(--text);

  font-size: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;

  min-height: 30px;

  padding: 5px 10px;

  border-radius: 999px;

  color: var(--brand-dark);

  background: var(--brand-soft);

  font-size: 11px;
  font-weight: 800;
}

.alert {
  padding: 15px 18px;

  border:
    1px solid
    var(--line);

  border-radius: 12px;

  color: var(--text);

  background: var(--surface-alt);
}

.alert-success {
  color: var(--brand-dark);

  border-color:
    rgba(0,168,181,0.22);

  background: var(--brand-soft);
}

@media (max-width: 1280px) {
  .main-nav {
    gap: 2px;
  }

  .main-nav > a {
    padding-right: 9px;
    padding-left: 9px;

    font-size: 0.79rem;
  }

  .site-header .brand img {
    height: 46px;
  }

  .site-header .brand strong {
    font-size: 1.08rem;
  }

  .site-header .brand small {
    font-size: 0.56rem;
  }

  .nav-cta {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 1080px) {
  .nav-wrap {
    min-height: 74px;
  }

  .site-header .brand img {
    height: 44px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;

    position: relative;

    z-index: 12;

    margin-left: auto;

    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;

    top: calc(100% + 1px);
    right: 0;
    left: 0;

    transform: none;

    display: none;

    padding: 14px;

    border:
      1px solid
      rgba(52, 52, 52, 0.08);

    border-radius:
      0 0 18px 18px;

    background:
      rgba(255, 255, 255, 0.99);

    box-shadow:
      0 24px 44px
      rgba(52, 52, 52, 0.14);
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;
  }

  .main-nav > a {
    justify-content: flex-start;

    min-height: 46px;

    padding: 0 14px;

    font-size: 0.90rem;

    border-bottom:
      1px solid
      var(--line);

    border-radius: 0;
  }

  .main-nav > a:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 820px) {
  .section {
    padding: 75px 0;
  }

  .section-heading {
    display: grid;

    gap: 20px;
  }

  .section-heading > p {
    max-width: none;
  }
}

@media (max-width: 600px) {
  :root {
    --radius: 15px;
    --radius-lg: 18px;
  }

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

  body {
    font-size: 15px;
  }

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

  .section {
    padding: 60px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .process-copy h2,
  .quote-copy h2,
  .faq-grid h2 {
    font-size: 31px;
  }

  .button {
    min-height: 48px;

    padding:
      12px 20px;
  }

  .topbar-inner {
    min-height: 42px;
  }

  .topbar-location {
    display: none;
  }

  .topbar-contact {
    width: 100%;

    justify-content: center;
  }

  .topbar-contact span {
    display: none;
  }

  .topbar-contact a:last-child {
    display: none;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .site-header .brand {
    gap: 8px;
  }

  .site-header .brand img {
    height: 40px;
  }

  .site-header .brand > span {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .page-shell {
    padding:
      55px 0 70px;
  }

  .page-header h1 {
    font-size: 36px;
  }
}

@media (max-width: 390px) {
  .container {
    width:
      calc(100% - 22px);
  }

  .site-header .brand img {
    height: 37px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;

    padding: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;
  }
}

.legal-page-hero {
    padding: 76px 0 62px;
    background:
        linear-gradient(
            180deg,
            rgba(0, 168, 181, 0.08),
            rgba(255, 255, 255, 0)
        );
}

.legal-page-hero .page-hero-inner {
    max-width: 860px;
}

.page-hero-description {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-page-section {
    padding-top: 56px;
    padding-bottom: 96px;
}

.legal-wrap {
    max-width: 980px;
}

.legal-content {
    padding: 48px 52px;
}

.legal-intro {
    padding-bottom: 30px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.legal-content h2 {
    margin: 38px 0 14px;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1.3;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin: 26px 0 8px;
    color: var(--ink);
    font-size: 1.05rem;
}

.legal-content p {
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.85;
}

.legal-section + .legal-section {
    margin-top: 36px;
}

.legal-footer-note {
    margin-top: 46px;
    padding: 24px 26px;
    border: 1px solid rgba(var(--brand-rgb), 0.16);
    border-radius: 16px;
    background: rgba(var(--brand-rgb), 0.05);
}

.legal-footer-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1rem;
}

.legal-footer-note p {
    margin-bottom: 18px;
}

@media (max-width: 760px) {
    .legal-page-hero {
        padding: 56px 0 44px;
    }

    .legal-page-section {
        padding-top: 38px;
        padding-bottom: 70px;
    }

    .legal-content {
        padding: 30px 22px;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 120px;
    background:
        linear-gradient(
            180deg,
            #f8fbfc 0%,
            #f2f7f8 100%
        );
}

.error-page .container {
    width: 100%;
}

.error-page-inner {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.error-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 38px;
    margin-bottom: 22px;
    padding: 7px 18px;
    color: var(--brand-dark);
    background: rgba(var(--brand-rgb), 0.09);
    border: 1px solid rgba(var(--brand-rgb), 0.14);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.error-title {
    max-width: 720px;
    margin: 0 auto 22px;
    color: var(--ink);
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.error-description {
    max-width: 610px;
    margin: 0 auto 34px;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.85;
}

.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.error-button-primary,
.error-button-secondary {
    min-width: 210px;
}

.error-button-secondary {
    color: var(--ink);
    background: #ffffff;
    border-color: var(--line);
    box-shadow: none;
}

.error-button-secondary:hover,
.error-button-secondary:focus-visible {
    color: var(--brand-dark);
    background: var(--brand-soft);
    border-color: rgba(var(--brand-rgb), 0.24);
    box-shadow: none;
}

@media (max-width: 760px) {
    .error-page {
        min-height: auto;
        padding: 72px 0 86px;
    }

    .error-page-inner {
        max-width: 560px;
    }

    .error-title {
        font-size: 2.35rem;
    }

    .error-description {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-button-primary,
    .error-button-secondary {
        width: 100%;
        max-width: 320px;
        min-width: 0;
    }
}