:root {
  color-scheme: light;
  --turquoise: #06aeea;
  --turquoise-dark: #007ca8;
  --ink: #102231;
  --muted: #5d6b76;
  --line: #dce8ee;
  --surface: #f5fbfd;
  --surface-soft: #f7fafb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 46, 66, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--turquoise-dark);
}

.brand-text {
  max-width: 175px;
  font-size: 13px;
  line-height: 1.25;
  color: var(--muted);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
}

.main-nav a,
.footer-inner a {
  text-decoration: none;
}

.main-nav a:hover,
.footer-inner a:hover,
.phone-link:hover {
  color: var(--turquoise-dark);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.phone-link {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--turquoise-dark);
  border-radius: var(--radius);
  background: var(--turquoise-dark);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 124, 168, 0.18);
}

.button:hover {
  background: #006f96;
}

.button-secondary {
  background: var(--white);
  color: var(--turquoise-dark);
  box-shadow: none;
}

.button-secondary:hover {
  background: #eaf8fc;
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 26px 0;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(6, 174, 234, 0.12), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #f8fdff, #ffffff);
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--turquoise-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.13;
}

h1 {
  max-width: 760px;
  font-size: clamp(32px, 4.1vw, 48px);
}

h2 {
  font-size: clamp(29px, 4vw, 45px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 16px 0 0;
  color: var(--muted);
}

.hero-lead {
  max-width: 690px;
  font-size: 20px;
  color: #31424d;
}

.hero-actions {
  margin-bottom: 32px;
  margin-top: 30px;
}

.service-area {
  font-weight: 700;
  color: var(--ink);
}

.service-area a {
  color: var(--turquoise-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hero-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 6px;
}

.business-card-link {
  display: block;
  border-radius: 6px;
  text-decoration: none;
}

.business-card-link:focus-visible {
  outline: 3px solid var(--turquoise-dark);
  outline-offset: 4px;
}

.quick-contact {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 16px;
  border-left: 4px solid var(--turquoise);
  background: var(--surface);
}

.quick-contact a {
  color: var(--turquoise-dark);
  font-weight: 700;
  text-decoration: none;
}

.trust {
  border-block: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 28px;
}

.trust-grid div {
  min-height: 86px;
  padding: 10px 0;
  text-align: center;
}

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

.trust-grid strong {
  color: #006f96;
  font-size: 28px;
  line-height: 1.08;
}

.trust-grid span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card:nth-child(2n) {
  background: var(--surface);
}

.service-card h3 {
  padding-top: 18px;
  border-top: 4px solid var(--turquoise);
}

.service-area-section,
.private-section,
.faq {
  background: var(--surface-soft);
}

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

.area-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.area-card:nth-child(2n) {
  background: var(--surface);
}

.area-card h3 {
  padding-top: 18px;
  border-top: 4px solid var(--turquoise);
}

.area-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--muted);
}

.area-cta {
  display: flex;
  min-height: 260px;
  padding: 26px;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.area-cta h3 {
  padding-top: 18px;
  border-top: 4px solid var(--turquoise);
}

.area-note {
  margin: 18px 0 0;
  color: var(--ink);
}

.area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.audience,
.process {
  background: var(--white);
}

.about {
  background: var(--surface);
}

.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.image-panel {
  display: grid;
  position: relative;
  overflow: hidden;
  min-height: 390px;
  align-items: end;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 34, 49, 0.04), rgba(16, 34, 49, 0.66)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 18px, rgba(255, 255, 255, 0.1) 18px 36px),
    linear-gradient(135deg, #dce8ee, #a9dff1 48%, #ffffff);
  box-shadow: var(--shadow);
}

.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel-alt {
  background:
    linear-gradient(180deg, rgba(16, 34, 49, 0.02), rgba(16, 34, 49, 0.58)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 12%, transparent 12% 15%, rgba(255, 255, 255, 0.72) 15% 27%, transparent 27%),
    linear-gradient(135deg, #eaf8fc, #c7edf8 55%, #f7fbfd);
}

.image-panel-clean {
  background:
    linear-gradient(180deg, rgba(16, 34, 49, 0.03), rgba(16, 34, 49, 0.6)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(135deg, #bfe9f5, #f8fdff);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: item;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: start;
  column-gap: 18px;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-list span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--turquoise-dark);
  color: var(--white);
  font-weight: 800;
}

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

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

.faq-list details[open] {
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 46, 66, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--turquoise-dark);
}

.faq-list p {
  max-width: 900px;
  padding: 0 22px 22px;
  margin-top: 0;
}

.contact-section {
  background: linear-gradient(135deg, var(--ink), #153b50);
  color: var(--white);
}

.contact-section p,
.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.contact-section .eyebrow {
  color: #8de3ff;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.contact-card strong {
  font-size: 22px;
}

.contact-card a {
  color: #8de3ff;
  font-weight: 800;
  text-decoration: none;
}

.contact-actions {
  margin-top: 28px;
}

.legal-header-inner {
  grid-template-columns: 1fr auto;
}

.legal-document {
  min-height: calc(100vh - 76px);
  background: var(--surface-soft);
}

.legal-document-inner {
  max-width: 880px;
}

.legal-content {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-content h1 {
  margin-bottom: 34px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(24px, 3vw, 32px);
}

.legal-content h3 {
  margin-top: 30px;
}

.legal-content h4 {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.35;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  overflow-wrap: normal;
  hyphens: auto;
}

.legal-content ul {
  padding-left: 24px;
  margin: 16px 0 0;
  color: var(--muted);
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-content a {
  color: var(--turquoise-dark);
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 26px 0 90px;
  background: #07131b;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-inner,
.footer-inner nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner {
  justify-content: space-between;
}

.mobile-contact {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 40px rgba(15, 46, 66, 0.24);
}

.mobile-contact a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 6px;
  background: var(--turquoise-dark);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.mobile-contact a + a {
  background: #1f7f46;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .split,
  .reverse,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-grid,
  .area-grid,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid > :last-child:nth-child(odd),
  .process-list > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 18px) / 2);
  }

  .area-grid > .area-card:last-of-type:nth-of-type(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 18px) / 2);
  }

  .area-cta {
    grid-column: 1 / -1;
    justify-self: start;
    width: min(100%, 820px);
    min-height: auto;
  }

  .reverse .image-panel {
    order: 2;
  }
}

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

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    font-size: 36px;
  }

  .brand-text {
    display: none;
  }

  .header-actions .phone-link {
    display: none;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(28px, 8.2vw, 36px);
  }

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

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    display: none;
  }

  .button {
    width: 100%;
  }

  .area-actions {
    flex-wrap: nowrap;
  }

  .area-actions .button {
    width: auto;
    flex: 1 1 0;
    padding-inline: 10px;
  }

  .trust-grid,
  .service-grid,
  .area-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
  }

  .trust-grid div {
    min-height: auto;
    padding: 4px 0;
  }

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

  .trust-grid span {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .trust-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 20px) / 2);
  }

  .service-grid > :last-child:nth-child(odd),
  .process-list > :last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .area-grid > .area-card:last-of-type:nth-of-type(odd),
  .area-cta {
    grid-column: auto;
    width: 100%;
  }

  .service-card,
  .process-list li {
    min-height: auto;
    padding: 22px;
  }

  .image-panel {
    min-height: 260px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .legal-page .site-footer {
    padding-bottom: 26px;
  }

  .legal-document {
    min-height: auto;
    padding-top: 36px;
  }

  .legal-content {
    padding: 20px;
  }

  .legal-content h1 {
    font-size: 28px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .mobile-contact {
    display: grid;
  }
}
