:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  image-rendering: auto;
}

.premium-topbar {
  background:
    radial-gradient(circle at 18% 0%, rgb(19 174 176 / 18%), transparent 32%),
    linear-gradient(100deg, #061b20 0%, #0b3035 52%, #071e23 100%);
  box-shadow: inset 0 -1px 0 rgb(255 255 255 / 4%);
}

.premium-header {
  background: rgb(255 255 255 / 97%);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgb(7 30 35 / 5%);
}

.desktop-nav-link {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
  padding: 0 2px;
  color: #5f6f72;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

.desktop-nav-link:hover,
.desktop-nav-link:focus-visible,
.desktop-nav-link-active {
  color: #102f34;
  outline: none;
}

.desktop-nav-link-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #0f9fa3;
  content: "";
}

.desktop-nav-link:not(.desktop-nav-link-active)::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: #0f9fa3;
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.desktop-nav-link:not(.desktop-nav-link-active):hover::after,
.desktop-nav-link:not(.desktop-nav-link-active):focus-visible::after {
  right: 0;
  left: 0;
}

.nav-dropdown-panel {
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown:focus-within .nav-dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-list-item {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  border-radius: 9px;
  padding: 7px 10px;
  color: #263f43;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease;
}

.dropdown-list-item:hover,
.dropdown-list-item:focus-visible {
  background: #f2f8f7;
  color: #0b8589;
  outline: none;
}

.dropdown-list-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: rgb(15 159 163 / 8%);
  color: #0f8f93;
  font-size: 16px;
  transition: color 180ms ease, background-color 180ms ease;
}

.dropdown-list-item:hover .dropdown-list-icon {
  background: #0f9fa3;
  color: white;
}

.header-cta {
  display: inline-flex;
  height: 46px;
  align-items: center;
  gap: 14px;
  border: 1px solid #0b3035;
  border-radius: 10px;
  padding: 0 7px 0 18px;
  background: #0b3035;
  box-shadow: 0 8px 20px rgb(7 30 35 / 14%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  border-color: #0f8589;
  background: #0f8589;
  transform: translateY(-1px);
}

.header-cta-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-left: 1px solid rgb(255 255 255 / 16%);
  color: #e2c579;
  transition: transform 180ms ease;
}

.header-cta:hover .header-cta-icon {
  transform: translateX(1px);
}

.mobile-nav-link {
  display: flex;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid rgb(226 232 240 / 85%);
  padding: 0 30px;
  color: #233c40;
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease, padding-left 180ms ease;
}

.mobile-nav-link:hover {
  padding-left: 33px;
  color: #0b8589;
}

.mobile-nav-link-active {
  color: #0b8589;
}

.mobile-subnav-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border-radius: 9px;
  padding: 0 9px;
  color: #29484c;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mobile-subnav-link:hover {
  background: white;
  color: #0b8589;
  transform: translateX(2px);
}

.mobile-subnav-link i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(15 159 163 / 12%);
  border-radius: 8px;
  background: white;
  color: #0f9fa3;
  font-size: 16px;
}

.mobile-services-toggle {
  border-bottom: 0;
  transition: color 180ms ease, padding-left 180ms ease;
}

.mobile-services-toggle:hover {
  padding-left: 33px;
  color: #0b8589;
}

.mobile-services-chevron {
  transition: transform 220ms ease;
}

.mobile-services-toggle[aria-expanded="true"] .mobile-services-chevron {
  transform: rotate(180deg);
}

.mobile-services-toggle[aria-expanded="true"] {
  color: #0b8589;
}

.mobile-services-panel {
  position: relative;
  margin: 0 0 10px 10px;
  border-left: 2px solid #0f9fa3;
  border-radius: 0 10px 10px 0;
  padding: 7px 7px 7px 10px;
  background: linear-gradient(90deg, rgb(15 159 163 / 7%), rgb(15 159 163 / 2%));
}

body.offcanvas-open {
  overflow: hidden;
}

.mobile-offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: flex;
  width: min(88vw, 380px);
  height: 100dvh;
  flex-direction: column;
  visibility: hidden;
  background: white;
  box-shadow: 24px 0 70px rgb(7 30 35 / 20%);
  transform: translateX(-100%);
  transition: visibility 360ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-offcanvas.is-open {
  visibility: visible;
  transform: translateX(0);
}

.mobile-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgb(4 23 27 / 56%);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(2px);
  transition: opacity 280ms ease;
}

.mobile-offcanvas-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero-slider {
  --topbar-height: 48px;
  --header-height: 82px;
  position: relative;
  height: calc(100svh - var(--topbar-height) - var(--header-height));
  overflow: hidden;
  background: #071e23;
  color: white;
  outline: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 700ms ease, opacity 700ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-media,
.hero-slide-media img,
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide-media img {
  object-fit: cover;
  transform: none;
}

.hero-slide-overlay {
  background:
    linear-gradient(90deg, rgb(4 25 29 / 96%) 0%, rgb(5 35 39 / 87%) 38%, rgb(5 35 39 / 46%) 70%, rgb(5 35 39 / 12%) 100%),
    linear-gradient(0deg, rgb(4 25 29 / 58%) 0%, transparent 48%);
}

.hero-slide-overlay-deep {
  background:
    linear-gradient(90deg, rgb(20 17 48 / 95%) 0%, rgb(27 25 62 / 84%) 38%, rgb(17 36 47 / 42%) 72%, rgb(7 29 34 / 10%) 100%),
    linear-gradient(0deg, rgb(5 25 30 / 58%) 0%, transparent 48%);
}

.hero-slide-overlay-blue {
  background:
    linear-gradient(90deg, rgb(5 28 38 / 96%) 0%, rgb(7 43 51 / 85%) 40%, rgb(7 43 51 / 42%) 72%, rgb(7 29 34 / 10%) 100%),
    linear-gradient(0deg, rgb(5 25 30 / 58%) 0%, transparent 48%);
}

.hero-content-shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 1400px);
  height: 100%;
  align-items: center;
  margin: 0 auto;
  padding: 48px 40px 116px;
}

.hero-content {
  width: min(790px, 70vw);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 650ms ease 120ms, opacity 650ms ease 120ms;
}

.hero-slide.is-active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgb(255 255 255 / 8%);
  backdrop-filter: blur(10px);
  color: rgb(255 255 255 / 76%);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e0bd69;
  box-shadow: 0 0 0 4px rgb(224 189 105 / 14%);
}

.hero-content h1,
.hero-content h2 {
  max-width: 820px;
  margin: 28px 0 0;
  color: white;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-content h1 strong,
.hero-content h2 strong {
  color: #67d9d5;
  font-weight: inherit;
}

.hero-content p {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 17px;
  line-height: 1.75;
}

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

.hero-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 750;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-button:hover {
  transform: translateY(-1px);
}

.hero-button-primary {
  border: 1px solid #0fa3a6;
  background: #0fa3a6;
  box-shadow: 0 14px 30px rgb(15 163 166 / 24%);
  color: white;
}

.hero-button-primary:hover {
  border-color: #17b7ba;
  background: #17b7ba;
}

.hero-button-secondary {
  border: 1px solid rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 7%);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-button-secondary:hover {
  border-color: rgb(255 255 255 / 60%);
  background: rgb(255 255 255 / 13%);
}

.hero-slider-controls {
  position: absolute;
  right: 40px;
  bottom: 28px;
  left: 40px;
  z-index: 5;
  display: flex;
  max-width: 1320px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.hero-slider-pagination,
.hero-slider-arrows {
  display: flex;
  align-items: center;
}

.hero-slider-pagination {
  gap: 12px;
}

.hero-slider-dot {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgb(255 255 255 / 45%);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.12em;
  transition: color 180ms ease;
}

.hero-slider-dot i {
  display: block;
  width: 24px;
  height: 2px;
  background: rgb(255 255 255 / 24%);
  transition: width 250ms ease, background-color 250ms ease;
}

.hero-slider-dot.is-active {
  color: white;
}

.hero-slider-dot.is-active i {
  width: 52px;
  background: #67d9d5;
}

.hero-slider-arrows {
  gap: 8px;
}

.hero-slider-arrows > span {
  margin-right: 10px;
  color: rgb(255 255 255 / 52%);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.hero-slider-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  background: rgb(4 25 29 / 28%);
  color: white;
  cursor: pointer;
  font-size: 17px;
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hero-slider-arrows button:hover {
  border-color: white;
  background: white;
  color: #082c31;
}

@media (min-width: 640px) {
  .hero-slider {
    --header-height: 96px;
  }
}

@media (max-width: 767px) {
  .hero-slide-overlay,
  .hero-slide-overlay-deep,
  .hero-slide-overlay-blue {
    background:
      linear-gradient(90deg, rgb(4 25 29 / 93%) 0%, rgb(5 35 39 / 76%) 72%, rgb(5 35 39 / 35%) 100%),
      linear-gradient(0deg, rgb(4 25 29 / 72%) 0%, transparent 55%);
  }

  .hero-content-shell {
    align-items: center;
    padding: 24px 20px 82px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-kicker {
    max-width: 100%;
    padding: 6px 10px;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-content h1,
  .hero-content h2 {
    margin-top: 17px;
    font-size: clamp(2.25rem, 10.4vw, 3.35rem);
    line-height: 0.98;
  }

  .hero-content p {
    display: -webkit-box;
    margin-top: 16px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-button {
    min-height: 44px;
    padding: 0 15px;
    font-size: 14px;
  }

  .hero-slider-controls {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .hero-slider-dot span,
  .hero-slider-arrows > span {
    display: none;
  }

  .hero-slider-dot i {
    width: 18px;
  }

  .hero-slider-dot.is-active i {
    width: 38px;
  }

  .hero-slider-arrows button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide-media img,
  .hero-content {
    transition: none;
  }
}

.services-section {
  position: relative;
  overflow: hidden;
  padding: 108px 40px 120px;
  background:
    radial-gradient(circle at 100% 0%, rgb(15 159 163 / 8%), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.services-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1320px, calc(100% - 80px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(15 159 163 / 28%), transparent);
  content: "";
  transform: translateX(-50%);
}

.services-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
}

.services-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #0b8589;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services-kicker span {
  width: 26px;
  height: 2px;
  background: #d5aa4f;
}

.services-heading h2 {
  margin: 0;
  color: #102f34;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.services-heading h2 strong {
  color: #0f9fa3;
  font-weight: inherit;
}

.services-intro {
  margin: 0 0 5px;
  color: #617276;
  font-size: 16px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 64px;
}

.service-card {
  --service-accent: #0f9fa3;
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e1e8e7;
  border-radius: 18px;
  padding: 32px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 18px 48px rgb(16 47 52 / 7%);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--service-accent) 35%, white);
  box-shadow: 0 26px 64px rgb(16 47 52 / 12%);
  transform: translateY(-6px);
}

.service-card-navy {
  --service-accent: #25149b;
}

.service-card-orange {
  --service-accent: #ef7b2d;
}

.service-card-topline {
  position: absolute;
  top: 0;
  right: 32px;
  left: 32px;
  height: 3px;
  background: var(--service-accent);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--service-accent) 18%, white);
  border-radius: 14px;
  background: color-mix(in srgb, var(--service-accent) 9%, white);
  color: var(--service-accent);
  font-size: 24px;
}

.service-card-number {
  color: #a0abad;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card-body {
  margin-top: 72px;
}

.service-card-label {
  margin: 0 0 12px;
  color: var(--service-accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-body h3 {
  margin: 0;
  color: #102f34;
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-card-body > p:last-child {
  margin: 22px 0 0;
  color: #68797c;
  font-size: 14px;
  line-height: 1.75;
}

.service-card-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  border-bottom: 1px solid color-mix(in srgb, var(--service-accent) 35%, transparent);
  padding-bottom: 5px;
  color: #193b40;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, gap 180ms ease;
}

.service-card-link:hover {
  gap: 14px;
  color: var(--service-accent);
}

@media (max-width: 900px) {
  .services-section {
    padding: 84px 24px 92px;
  }

  .services-section::before {
    width: calc(100% - 48px);
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-intro {
    max-width: 650px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .service-card {
    min-height: 380px;
  }

  .service-card-body {
    margin-top: 46px;
  }
}

@media (max-width: 520px) {
  .services-section {
    padding: 68px 18px 76px;
  }

  .services-section::before {
    width: calc(100% - 36px);
  }

  .services-heading h2 {
    font-size: 2.45rem;
  }

  .service-card {
    min-height: 360px;
    padding: 26px;
  }

  .service-card-topline {
    right: 26px;
    left: 26px;
  }
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 112px 40px 72px;
  background:
    radial-gradient(circle at 88% 10%, rgb(15 159 163 / 14%), transparent 28%),
    linear-gradient(135deg, #061b20 0%, #0a2b30 58%, #071f24 100%);
  color: white;
}

.process-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 40%, black);
}

.process-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
}

.process-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-kicker span {
  width: 26px;
  height: 2px;
  background: #e0bd69;
}

.process-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.process-heading h2 strong {
  color: #67d9d5;
  font-weight: inherit;
}

.process-heading > p {
  margin: 0 0 5px;
  color: rgb(255 255 255 / 62%);
  font-size: 16px;
  line-height: 1.8;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 80px;
}

.process-line {
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(103 217 213 / 40%) 12%, rgb(103 217 213 / 40%) 88%, transparent);
}

.process-step {
  position: relative;
  min-width: 0;
  padding-right: 18px;
}

.process-step-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgb(103 217 213 / 28%);
  border-radius: 50%;
  background: #0a2b30;
  box-shadow: 0 0 0 8px rgb(7 31 36 / 78%);
  color: #67d9d5;
  font-size: 22px;
}

.process-step-number {
  color: rgb(255 255 255 / 28%);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 34px 0 0;
  color: white;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.process-step > p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 54%);
  font-size: 14px;
  line-height: 1.75;
}

.process-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  padding-top: 28px;
}

.process-footer p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgb(255 255 255 / 56%);
  font-size: 14px;
}

.process-footer p i {
  color: #e0bd69;
  font-size: 18px;
}

.process-footer a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
  transition: gap 180ms ease, color 180ms ease;
}

.process-footer a:hover {
  gap: 14px;
  color: white;
}

@media (max-width: 900px) {
  .process-section {
    padding: 84px 24px 64px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-heading > p {
    max-width: 650px;
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 28px;
    margin-top: 58px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 560px) {
  .process-section {
    padding: 68px 18px 52px;
  }

  .process-heading h2 {
    font-size: 2.45rem;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 44px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 18px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    padding: 24px 0;
  }

  .process-step:first-of-type {
    padding-top: 0;
  }

  .process-step-head {
    grid-row: 1 / span 2;
    align-items: start;
  }

  .process-step-number {
    display: none;
  }

  .process-step-icon {
    width: 50px;
    height: 50px;
    box-shadow: none;
  }

  .process-step h3 {
    margin: 0;
    font-size: 1.3rem;
  }

  .process-step > p {
    margin-top: 10px;
  }

  .process-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
  }
}

/* Contact page */
.contact-page {
  background: #f5f8f8;
}

.contact-page-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.contact-page-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  padding: 56px 40px 64px;
  background:
    radial-gradient(circle at 82% 25%, rgb(15 159 163 / 18%), transparent 28%),
    linear-gradient(128deg, #061b20 0%, #0a2b30 62%, #0a353a 100%);
  color: white;
}

.contact-page-hero::after {
  position: absolute;
  top: -170px;
  right: 10%;
  width: 430px;
  height: 430px;
  border: 1px solid rgb(103 217 213 / 13%);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgb(103 217 213 / 3%), 0 0 0 116px rgb(103 217 213 / 2%);
  content: "";
}

.contact-page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.contact-page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 45%);
  font-size: 14px;
}

.contact-breadcrumb a {
  color: rgb(255 255 255 / 62%);
  transition: color 180ms ease;
}

.contact-breadcrumb a:hover {
  color: #67d9d5;
}

.contact-breadcrumb span {
  color: #67d9d5;
}

.contact-page-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-page-kicker span {
  width: 26px;
  height: 2px;
  background: #e0bd69;
}

.contact-page-hero h1 {
  margin: 0;
  max-width: none;
  color: white;
  font-size: clamp(2.75rem, 5.2vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 0.98;
  white-space: nowrap;
}

.contact-page-hero h1 strong {
  color: white;
  font-weight: inherit;
}

.contact-page-hero-inner > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 63%);
  font-size: 15px;
  line-height: 1.75;
}

.contact-information-section {
  padding: 110px 40px;
}

.contact-information-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
}

.contact-page-kicker--dark {
  color: #0f9fa3;
}

.contact-information-heading h2 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.contact-information-heading h2 strong {
  color: #0f9fa3;
  font-weight: inherit;
}

.contact-information-heading > p {
  margin: 0 0 5px;
  color: #5e7074;
  font-size: 16px;
  line-height: 1.8;
}

.contact-information-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 22px;
  margin-top: 62px;
}

.contact-information-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid #dce6e7;
  border-radius: 4px;
  padding: 34px;
  background: white;
  box-shadow: 0 18px 50px rgb(7 31 36 / 6%);
}

.contact-information-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 62px;
  border-top: 1px solid rgb(15 159 163 / 25%);
  border-right: 1px solid rgb(15 159 163 / 25%);
  content: "";
}

.contact-information-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 44px;
  place-items: center;
  background: #e6f3f3;
  color: #0f9296;
  font-size: 24px;
}

.contact-information-card > p {
  margin: 0 0 10px;
  color: #0f9fa3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-information-card h3 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.contact-information-card address {
  margin: 20px 0 0;
  color: #64777a;
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
}

.contact-information-card--wide > a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #0a8589;
  font-size: 14px;
  font-weight: 800;
}

.contact-information-phone {
  margin-top: auto;
  color: #0a2b30;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-information-phone:hover,
.contact-information-card--wide > a:hover {
  color: #0f9fa3;
}

.contact-information-note {
  margin-top: 7px;
  color: #829194;
  font-size: 14px;
}

.contact-authority-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.contact-authority-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #e1e9ea;
  padding: 14px 15px;
  color: #0a2b30;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-authority-list a:hover {
  border-color: rgb(15 159 163 / 35%);
  background: #f1f8f8;
}

.contact-authority-list strong,
.contact-authority-list small {
  display: block;
  font-size: 14px;
}

.contact-authority-list strong {
  margin-bottom: 3px;
  font-weight: 800;
}

.contact-authority-list small {
  color: #718286;
  font-weight: 600;
}

.contact-authority-list i {
  color: #0f9fa3;
  font-size: 19px;
}

.contact-location-section {
  padding: 0 40px 110px;
}

.contact-location-shell {
  display: grid;
  min-height: 440px;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  overflow: hidden;
  border-radius: 4px;
  background: #09282d;
  box-shadow: 0 22px 60px rgb(7 31 36 / 12%);
}

.contact-location-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 48%, rgb(103 217 213 / 16%), transparent 28%),
    linear-gradient(140deg, #e5eeee, #cfdede);
}

.contact-location-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image: linear-gradient(rgb(10 43 48 / 10%) 1px, transparent 1px), linear-gradient(90deg, rgb(10 43 48 / 10%) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
}

.contact-location-road {
  position: absolute;
  width: 130%;
  height: 42px;
  border: 1px solid rgb(10 43 48 / 17%);
  background: rgb(255 255 255 / 48%);
  transform-origin: center;
}

.contact-location-road--one {
  top: 30%;
  left: -15%;
  transform: rotate(-12deg);
}

.contact-location-road--two {
  top: 58%;
  left: -15%;
  transform: rotate(19deg);
}

.contact-location-road--three {
  top: 40%;
  left: -18%;
  transform: rotate(79deg);
}

.contact-location-pin {
  position: absolute;
  top: 46%;
  left: 55%;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 8px solid rgb(255 255 255 / 60%);
  border-radius: 50%;
  background: #0f9fa3;
  box-shadow: 0 12px 35px rgb(10 43 48 / 25%);
  color: white;
  font-size: 28px;
  transform: translate(-50%, -50%);
}

.contact-location-visual > p {
  position: absolute;
  right: 34px;
  bottom: 30px;
  margin: 0;
  color: #315157;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: right;
}

.contact-location-visual > p strong {
  color: #0a2b30;
  font-size: 20px;
}

.contact-location-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 58px 64px;
  color: white;
}

.contact-location-content h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.contact-location-content h2 strong {
  color: #67d9d5;
  font-weight: inherit;
}

.contact-location-content address {
  margin: 26px 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
}

.contact-location-content > a {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 0 22px;
  background: #0f9fa3;
  color: white;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-location-content > a:hover {
  transform: translateY(-2px);
  background: #12aeb2;
}

@media (max-width: 980px) {
  .contact-page-hero,
  .contact-information-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .contact-information-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-information-heading > p {
    max-width: 650px;
  }

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

  .contact-information-card--wide {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .contact-location-section {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .contact-location-visual {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .contact-page-hero {
    min-height: 360px;
    padding: 40px 18px 48px;
  }

  .contact-breadcrumb {
    margin-bottom: 28px;
  }

  .contact-page-hero h1 {
    max-width: none;
    font-size: clamp(1.65rem, 8vw, 2.75rem);
  }

  .contact-page-hero-inner > p:last-child {
    margin-top: 18px;
  }

  .contact-information-section {
    padding: 72px 18px;
  }

  .contact-information-heading h2 {
    font-size: 2.45rem;
  }

  .contact-information-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .contact-information-card,
  .contact-information-card--wide {
    min-height: 350px;
    grid-column: auto;
    padding: 28px;
  }

  .contact-information-icon {
    margin-bottom: 34px;
  }

  .contact-location-section {
    padding: 0 18px 72px;
  }

  .contact-location-visual {
    min-height: 300px;
  }

  .contact-location-content {
    padding: 44px 28px;
  }

  .contact-location-content h2 {
    font-size: 2.45rem;
  }
}

/* Footer */
.site-footer {
  position: relative;
  border-top: 1px solid rgb(103 217 213 / 20%);
  padding: 78px 40px 0;
  background: #041519;
  color: white;
}

.site-footer::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: min(32%, 460px);
  height: 2px;
  background: linear-gradient(90deg, #0f9fa3, #67d9d5, transparent);
  content: "";
}

.footer-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) minmax(150px, 0.75fr) minmax(190px, 0.9fr) minmax(250px, 1fr);
  gap: 52px;
  padding-bottom: 66px;
}

.footer-brand {
  max-width: 330px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  padding: 12px 16px;
  background: white;
}

.footer-logo img {
  display: block;
  width: 220px;
  height: auto;
}

.footer-brand > p {
  margin: 25px 0 0;
  color: rgb(255 255 255 / 54%);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column h2 {
  position: relative;
  margin: 5px 0 25px;
  padding-bottom: 14px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #0f9fa3;
  content: "";
}

.footer-column nav {
  display: grid;
  gap: 14px;
}

.footer-column nav a {
  width: fit-content;
  color: rgb(255 255 255 / 57%);
  font-size: 14px;
  line-height: 1.5;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column nav a:hover {
  transform: translateX(3px);
  color: #67d9d5;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact address,
.footer-contact > a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgb(255 255 255 / 62%);
  font-size: 14px;
  font-style: normal;
  line-height: 1.75;
}

.footer-contact address {
  margin-bottom: 19px;
}

.footer-contact i {
  margin-top: 3px;
  flex: 0 0 auto;
  color: #67d9d5;
  font-size: 17px;
}

.footer-contact > a {
  width: fit-content;
  color: white;
  font-weight: 750;
}

.footer-contact > a:hover {
  color: #67d9d5;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgb(255 255 255 / 43%);
  font-size: 14px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgb(255 255 255 / 66%);
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-bottom a i {
  color: #67d9d5;
  font-size: 17px;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 1050px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 64px;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 58px 18px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 46px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo img {
    width: 200px;
  }

  .footer-bottom {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0 28px;
  }
}

/* Premium footer */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 0;
  padding: 0 40px;
  background:
    linear-gradient(115deg, rgb(9 42 47 / 96%), rgb(3 19 23 / 100%)),
    #031317;
}

.site-footer::before {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(103 217 213 / 55%), #d0a84c, transparent);
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.footer-glow-one {
  top: -240px;
  right: -180px;
  width: 540px;
  height: 540px;
  border: 1px solid rgb(103 217 213 / 7%);
  box-shadow: 0 0 0 65px rgb(103 217 213 / 2.5%), 0 0 0 130px rgb(103 217 213 / 1.5%);
}

.footer-glow-two {
  bottom: -220px;
  left: -180px;
  width: 430px;
  height: 430px;
  background: rgb(15 159 163 / 5%);
  filter: blur(60px);
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
}

.footer-cta {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding: 54px 0;
}

.footer-cta-copy > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-cta-copy > p span {
  width: 26px;
  height: 2px;
  background: #d0a84c;
}

.footer-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.footer-cta h2 strong {
  color: #67d9d5;
  font-weight: inherit;
}

.footer-cta-button {
  display: inline-flex;
  min-height: 58px;
  flex: 0 0 auto;
  align-items: center;
  gap: 22px;
  padding: 7px 8px 7px 25px;
  background: #0f9fa3;
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgb(0 0 0 / 18%);
  transition: background 180ms ease, transform 180ms ease;
}

.footer-cta-button span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  background: rgb(255 255 255 / 13%);
  font-size: 18px;
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  background: #13adb0;
}

.footer-main {
  grid-template-columns: minmax(260px, 1.35fr) minmax(145px, 0.68fr) minmax(190px, 0.88fr) minmax(280px, 1.1fr);
  gap: clamp(34px, 4vw, 66px);
  padding: 68px 0 64px;
}

.footer-brand {
  max-width: 345px;
}

.footer-logo {
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 6px;
  padding: 10px 14px;
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 12px 32px rgb(0 0 0 / 15%);
}

.footer-logo img {
  width: 198px;
  max-height: 70px;
  object-fit: contain;
}

.footer-brand > p {
  margin-top: 23px;
  color: rgb(255 255 255 / 56%);
  font-size: 14px;
  line-height: 1.85;
}

.footer-license {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  padding-top: 21px;
}

.footer-license > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgb(208 168 76 / 28%);
  border-radius: 50%;
  background: rgb(208 168 76 / 8%);
  color: #dfbd6d;
  font-size: 17px;
}

.footer-license p,
.footer-contact-item p {
  margin: 0;
}

.footer-license small,
.footer-contact-item small {
  display: block;
  margin-bottom: 3px;
  color: rgb(255 255 255 / 38%);
  font-size: 14px;
  font-weight: 650;
}

.footer-license strong {
  display: block;
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.footer-column h2 {
  margin: 4px 0 27px;
  color: rgb(255 255 255 / 92%);
  letter-spacing: 0.1em;
}

.footer-column h2::after {
  width: 32px;
  background: linear-gradient(90deg, #d0a84c, #67d9d5);
}

.footer-column nav {
  gap: 5px;
}

.footer-column nav a {
  display: flex;
  width: 100%;
  min-height: 37px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 5%);
  color: rgb(255 255 255 / 57%);
}

.footer-column nav a i {
  color: rgb(103 217 213 / 42%);
  font-size: 17px;
  transition: transform 180ms ease, color 180ms ease;
}

.footer-column nav a:hover {
  transform: none;
  color: white;
}

.footer-column nav a:hover i {
  transform: translateX(3px);
  color: #67d9d5;
}

.footer-contact {
  display: block;
}

.footer-contact > .footer-contact-item {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid rgb(255 255 255 / 8%);
  padding: 16px;
  background: rgb(255 255 255 / 2.5%);
  color: white;
  transition: border-color 180ms ease, background 180ms ease;
}

.footer-contact > .footer-contact-item + .footer-contact-item {
  margin-top: 10px;
}

.footer-contact > .footer-contact-item:hover {
  border-color: rgb(103 217 213 / 24%);
  background: rgb(103 217 213 / 5%);
  color: white;
}

.footer-contact-item > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  background: rgb(15 159 163 / 12%);
  color: #67d9d5;
  font-size: 17px;
}

.footer-contact-item strong {
  display: block;
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.footer-bottom {
  min-height: 74px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 14px;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom > div > span {
  width: 1px;
  height: 14px;
  background: rgb(255 255 255 / 14%);
}

@media (max-width: 1050px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding: 0 18px;
  }

  .footer-cta {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    padding: 48px 0;
  }

  .footer-cta h2 {
    font-size: 34px;
  }

  .footer-cta-button {
    width: 100%;
    justify-content: space-between;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 52px 0 44px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-bottom {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 24px 0 28px;
  }
}

/* Experts */
.experts-section {
  overflow: hidden;
  padding: 112px 40px;
  background:
    radial-gradient(circle at 10% 0%, rgb(15 159 163 / 8%), transparent 30%),
    #f5f8f8;
  color: #0a2b30;
}

.experts-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.experts-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
}

.experts-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #0f9fa3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experts-kicker span {
  width: 26px;
  height: 2px;
  background: #d0a84c;
}

.experts-heading h2 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.experts-heading h2 strong {
  color: #0f9fa3;
  font-weight: inherit;
}

.experts-heading > p {
  margin: 0 0 5px;
  color: #5e7074;
  font-size: 16px;
  line-height: 1.8;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 64px;
}

.expert-card {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid #dce6e7;
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 96%), rgb(242 247 247 / 96%));
  box-shadow: 0 18px 50px rgb(7 31 36 / 7%);
}

.expert-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #0f9fa3;
  content: "";
}

.expert-card--primary::before {
  background: linear-gradient(180deg, #0f9fa3, #d0a84c);
}

.expert-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 40px 0 44px;
}

.expert-monogram {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgb(15 159 163 / 24%);
  background: #e6f3f3;
  color: #087f84;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.expert-index {
  color: #bfcbcd;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.expert-card-body {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 38px 44px;
}

.expert-role {
  margin: 0 0 10px;
  color: #0f9fa3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expert-card h3 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.expert-card h3 strong {
  font-weight: 750;
}

.expert-credential {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.expert-credential-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: #0a2b30;
  color: #67d9d5;
  font-size: 20px;
}

.expert-credential p {
  margin: 0;
  color: #183b40;
  font-size: 15px;
  font-weight: 800;
}

.expert-credential div > span {
  display: block;
  margin-top: 3px;
  color: #687a7e;
  font-size: 14px;
}

.expert-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dce6e7;
  padding: 20px 44px 20px 48px;
  background: rgb(255 255 255 / 66%);
}

.expert-card-footer span {
  color: #77888b;
  font-size: 14px;
  font-weight: 700;
}

.expert-card-footer strong {
  color: #0a2b30;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .experts-section {
    padding: 84px 24px;
  }

  .experts-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .experts-heading > p {
    max-width: 650px;
  }

  .experts-grid {
    gap: 20px;
    margin-top: 50px;
  }

  .expert-card {
    min-height: 400px;
  }

  .expert-card-top,
  .expert-card-body {
    padding-right: 28px;
    padding-left: 32px;
  }

  .expert-card-footer {
    padding-right: 28px;
    padding-left: 36px;
  }
}

@media (max-width: 680px) {
  .experts-section {
    padding: 68px 18px;
  }

  .experts-heading h2 {
    font-size: 2.45rem;
  }

  .experts-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .expert-card {
    min-height: 380px;
  }

  .expert-card-top {
    padding-top: 28px;
  }

  .expert-card-body {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .expert-monogram {
    width: 66px;
    height: 66px;
  }
}

/* Contact CTA */
.contact-cta-section {
  position: relative;
  overflow: hidden;
  padding: 104px 40px;
  background:
    radial-gradient(circle at 92% 15%, rgb(103 217 213 / 13%), transparent 30%),
    linear-gradient(130deg, #061b20 0%, #0a2b30 62%, #0b3539 100%);
  color: white;
}

.contact-cta-section::before {
  position: absolute;
  top: -260px;
  right: -190px;
  width: 560px;
  height: 560px;
  border: 1px solid rgb(103 217 213 / 12%);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgb(103 217 213 / 3%),
    0 0 0 140px rgb(103 217 213 / 2%);
  content: "";
}

.contact-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1320px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 88px;
  align-items: center;
}

.contact-cta-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-cta-kicker span {
  width: 26px;
  height: 2px;
  background: #e0bd69;
}

.contact-cta-main h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.65rem, 4.8vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.contact-cta-main h2 strong {
  color: #67d9d5;
  font-weight: inherit;
}

.contact-cta-copy {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 63%);
  font-size: 16px;
  line-height: 1.8;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.contact-primary-button,
.contact-secondary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.contact-primary-button {
  background: #0f9fa3;
  color: white;
  box-shadow: 0 12px 28px rgb(15 159 163 / 22%);
}

.contact-secondary-button {
  border-color: rgb(255 255 255 / 22%);
  background: rgb(255 255 255 / 5%);
  color: white;
}

.contact-primary-button:hover,
.contact-secondary-button:hover {
  transform: translateY(-2px);
}

.contact-primary-button:hover {
  background: #12aeb2;
}

.contact-secondary-button:hover {
  border-color: rgb(103 217 213 / 50%);
  background: rgb(255 255 255 / 9%);
}

.contact-cta-details {
  display: grid;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 4px;
  background: rgb(255 255 255 / 6%);
  box-shadow: 0 24px 70px rgb(0 0 0 / 17%);
  backdrop-filter: blur(10px);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 30px;
}

.contact-detail + .contact-detail {
  border-top: 1px solid rgb(255 255 255 / 11%);
}

.contact-detail-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgb(103 217 213 / 20%);
  background: rgb(103 217 213 / 9%);
  color: #67d9d5;
  font-size: 20px;
}

.contact-detail p {
  margin: 1px 0 8px;
  color: rgb(255 255 255 / 45%);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail address,
.contact-detail a {
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.65;
}

.contact-detail a:hover {
  color: #67d9d5;
}

.contact-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 11%);
}

.contact-person {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 23px 26px 24px 30px;
  color: white;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-person + .contact-person {
  border-left: 1px solid rgb(255 255 255 / 11%);
}

.contact-person small {
  display: block;
  margin-bottom: 4px;
  color: rgb(255 255 255 / 45%);
  font-size: 14px;
  font-weight: 600;
}

.contact-person i {
  flex: 0 0 auto;
  color: #67d9d5;
  font-size: 18px;
}

.contact-person:hover {
  background: rgb(103 217 213 / 8%);
  color: #67d9d5;
}

@media (max-width: 980px) {
  .contact-cta-section {
    padding: 84px 24px;
  }

  .contact-cta-shell {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-cta-main {
    max-width: 760px;
  }
}

@media (max-width: 560px) {
  .contact-cta-section {
    padding: 68px 18px;
  }

  .contact-cta-main h2 {
    font-size: 2.45rem;
  }

  .contact-cta-copy {
    margin-top: 24px;
  }

  .contact-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-primary-button,
  .contact-secondary-button {
    width: 100%;
  }

  .contact-detail {
    padding: 24px 20px;
  }

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

  .contact-person {
    padding-right: 20px;
    padding-left: 20px;
  }

.contact-person + .contact-person {
    border-top: 1px solid rgb(255 255 255 / 11%);
    border-left: 0;
  }
}

/* Experts page */
.team-page {
  background: #f5f8f8;
}

.team-page-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.team-page-hero {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 52px 40px 60px;
  background:
    radial-gradient(circle at 82% 28%, rgb(15 159 163 / 17%), transparent 27%),
    linear-gradient(128deg, #061b20 0%, #0a2b30 62%, #0a353a 100%);
  color: white;
}

.team-page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.team-page-hero-inner {
  position: relative;
  z-index: 1;
}

.team-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: rgb(255 255 255 / 45%);
  font-size: 14px;
}

.team-breadcrumb a {
  color: rgb(255 255 255 / 62%);
}

.team-breadcrumb a:hover,
.team-breadcrumb span {
  color: #67d9d5;
}

.team-page-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-page-kicker span {
  width: 26px;
  height: 2px;
  background: #e0bd69;
}

.team-page-hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.team-page-hero-inner > p:last-child {
  max-width: 630px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 62%);
  font-size: 15px;
  line-height: 1.75;
}

.team-profiles-section {
  padding: 92px 40px 100px;
}

.team-profiles-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
}

.team-page-kicker--dark {
  color: #0f9fa3;
}

.team-profiles-heading h2 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.team-profiles-heading h2 strong {
  color: #0f9fa3;
  font-weight: inherit;
}

.team-profiles-heading > p {
  margin: 0 0 4px;
  color: #5e7074;
  font-size: 15px;
  line-height: 1.75;
}

.team-profile-list {
  display: grid;
  gap: 18px;
  margin-top: 54px;
}

.team-profile-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 1.25fr) minmax(280px, 1.25fr) minmax(110px, 0.42fr) minmax(210px, 0.78fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #dce6e7;
  border-radius: 4px;
  background: white;
  box-shadow: 0 16px 44px rgb(7 31 36 / 6%);
}

.team-profile-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0f9fa3, #d0a84c);
  content: "";
}

.team-profile-identity,
.team-profile-qualification,
.team-profile-register,
.team-profile-phone {
  min-width: 0;
  padding: 27px 28px;
}

.team-profile-identity {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 32px;
}

.team-profile-monogram {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  background: #e6f3f3;
  color: #087f84;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.team-profile-identity p {
  margin: 0 0 5px;
  color: #0f9fa3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.team-profile-identity h3 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.team-profile-identity h3 strong {
  font-weight: 800;
}

.team-profile-qualification {
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 1px solid #e2e9ea;
}

.team-profile-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  background: #0a2b30;
  color: #67d9d5;
  font-size: 18px;
}

.team-profile-qualification small,
.team-profile-register small,
.team-profile-phone small {
  display: block;
  margin-bottom: 5px;
  color: #7b8b8e;
  font-size: 14px;
  font-weight: 650;
}

.team-profile-qualification p {
  margin: 0;
  color: #183b40;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.team-profile-register {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid #e2e9ea;
}

.team-profile-register strong {
  color: #0a2b30;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.team-profile-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-left: 1px solid #e2e9ea;
  background: #f5f9f9;
  color: #0a2b30;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease;
}

.team-profile-phone i {
  color: #0f9fa3;
  font-size: 20px;
}

.team-profile-phone:hover {
  background: #eaf5f5;
  color: #0f8f93;
}

.expertise-value-section {
  padding: 92px 40px 96px;
  background: white;
}

.expertise-value-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
}

.expertise-value-heading h2 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.expertise-value-heading h2 strong {
  color: #0f9fa3;
  font-weight: inherit;
}

.expertise-value-heading > p {
  margin: 0 0 4px;
  color: #5e7074;
  font-size: 15px;
  line-height: 1.75;
}

.expertise-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.expertise-value-card {
  overflow: hidden;
  border: 1px solid #dce6e7;
  border-radius: 4px;
  background: #f8fafa;
}

.expertise-value-card-head {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #dce6e7;
  padding: 26px 30px;
  background: #0a2b30;
  color: white;
}

.expertise-value-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid rgb(103 217 213 / 23%);
  background: rgb(103 217 213 / 9%);
  color: #67d9d5;
  font-size: 22px;
}

.expertise-value-card-head small {
  display: block;
  margin-bottom: 6px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 750;
}

.expertise-value-card-head h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.expertise-value-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expertise-value-content > div {
  min-width: 0;
  padding: 27px 25px 30px;
}

.expertise-value-content > div + div {
  border-left: 1px solid #dce6e7;
}

.expertise-value-content h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  color: #0a2b30;
  font-size: 14px;
  font-weight: 800;
}

.expertise-value-content h4 i {
  color: #0f9fa3;
  font-size: 17px;
}

.expertise-value-content p {
  margin: 0;
  color: #65777a;
  font-size: 14px;
  line-height: 1.75;
}

.expertise-joint-note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  border: 1px solid #dce6e7;
  border-left: 4px solid #d0a84c;
  padding: 25px 30px;
  background: #f5f8f8;
}

.expertise-joint-note > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: #0a2b30;
  color: #67d9d5;
  font-size: 19px;
}

.expertise-joint-note h3 {
  margin: 0 0 6px;
  color: #0a2b30;
  font-size: 17px;
  font-weight: 800;
}

.expertise-joint-note p {
  margin: 0;
  color: #637578;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .team-profile-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-profile-qualification {
    border-left: 1px solid #e2e9ea;
  }

  .team-profile-register {
    border-top: 1px solid #e2e9ea;
    border-left: 0;
    padding-left: 32px;
  }

  .team-profile-phone {
    border-top: 1px solid #e2e9ea;
  }

  .expertise-value-content {
    grid-template-columns: 1fr;
  }

  .expertise-value-content > div + div {
    border-top: 1px solid #dce6e7;
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .team-page-hero,
  .team-profiles-section,
  .expertise-value-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .team-profiles-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .team-profiles-heading > p {
    max-width: 650px;
  }

  .expertise-value-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .expertise-value-heading > p {
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  .team-page-hero {
    min-height: 320px;
    padding: 40px 18px 46px;
  }

  .team-breadcrumb {
    margin-bottom: 27px;
  }

  .team-page-hero h1 {
    font-size: 2.75rem;
  }

  .team-profiles-section {
    padding: 68px 18px 72px;
  }

  .expertise-value-section {
    padding: 68px 18px 72px;
  }

  .team-profiles-heading h2 {
    font-size: 2.4rem;
  }

  .expertise-value-heading h2 {
    font-size: 2.4rem;
  }

  .team-profile-list {
    margin-top: 40px;
  }

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

  .team-profile-identity,
  .team-profile-qualification,
  .team-profile-register,
  .team-profile-phone {
    padding: 23px 22px;
  }

  .team-profile-identity {
    padding-left: 26px;
  }

  .team-profile-qualification,
  .team-profile-register,
  .team-profile-phone {
    border-top: 1px solid #e2e9ea;
    border-left: 0;
  }

  .team-profile-register {
    padding-left: 26px;
  }

  .expertise-value-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .expertise-value-card-head {
    min-height: 0;
    padding: 24px 22px;
  }

  .expertise-value-content > div {
    padding: 23px 22px;
  }

  .expertise-joint-note {
    align-items: flex-start;
    padding: 22px;
  }

}

/* Corporate page */
.corporate-page {
  background: #f5f8f8;
}

.corporate-page-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.corporate-page-hero {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 52px 40px 60px;
  background:
    radial-gradient(circle at 82% 28%, rgb(15 159 163 / 17%), transparent 27%),
    linear-gradient(128deg, #061b20 0%, #0a2b30 62%, #0a353a 100%);
  color: white;
}

.corporate-page-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.corporate-page-hero-inner {
  position: relative;
  z-index: 1;
}

.corporate-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: rgb(255 255 255 / 45%);
  font-size: 14px;
}

.corporate-breadcrumb a {
  color: rgb(255 255 255 / 62%);
}

.corporate-breadcrumb a:hover,
.corporate-breadcrumb span {
  color: #67d9d5;
}

.corporate-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.corporate-kicker span {
  width: 26px;
  height: 2px;
  background: #e0bd69;
}

.corporate-kicker--dark {
  color: #0f9fa3;
}

.corporate-page-hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.corporate-page-hero-inner > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 62%);
  font-size: 15px;
  line-height: 1.75;
}

.corporate-intro-section {
  padding: 92px 40px;
  background: white;
}

.corporate-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 90px;
  align-items: start;
}

.corporate-intro-title h2,
.corporate-section-heading h2,
.corporate-fields-content h2,
.corporate-experts-layout h2 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.corporate-intro-title h2 strong,
.corporate-section-heading h2 strong,
.corporate-fields-content h2 strong,
.corporate-experts-layout h2 strong {
  color: #0f9fa3;
  font-weight: inherit;
}

.corporate-intro-copy {
  border-left: 1px solid #d8e4e5;
  padding-left: 42px;
}

.corporate-intro-copy p {
  margin: 0;
  color: #566b6f;
  font-size: 15px;
  line-height: 1.9;
}

.corporate-intro-copy p + p {
  margin-top: 20px;
}

.corporate-approach-section {
  padding: 92px 40px 100px;
}

.corporate-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
}

.corporate-section-heading > p {
  margin: 0 0 4px;
  color: #5e7074;
  font-size: 15px;
  line-height: 1.75;
}

.corporate-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.corporate-approach-grid article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid #dce6e7;
  padding: 30px;
  background: white;
  box-shadow: 0 14px 38px rgb(7 31 36 / 5%);
}

.corporate-approach-grid article > span {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #c2cdcf;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.corporate-approach-grid article > i {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 44px;
  place-items: center;
  background: #e6f3f3;
  color: #0f9296;
  font-size: 22px;
}

.corporate-approach-grid h3 {
  margin: 0 0 13px;
  color: #0a2b30;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.corporate-approach-grid p {
  margin: 0;
  color: #65777a;
  font-size: 14px;
  line-height: 1.75;
}

.corporate-fields-section {
  padding: 92px 40px;
  background: #0a2b30;
  color: white;
}

.corporate-fields-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
  gap: 86px;
  align-items: center;
}

.corporate-fields-content h2 {
  color: white;
}

.corporate-fields-content > p:last-of-type {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 58%);
  font-size: 15px;
  line-height: 1.8;
}

.corporate-fields-content > a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 0 21px;
  background: #0f9fa3;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.corporate-fields-list {
  display: grid;
}

.corporate-fields-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid rgb(255 255 255 / 11%);
  padding: 25px 0;
}

.corporate-fields-list article:first-child {
  padding-top: 0;
}

.corporate-fields-list article > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgb(103 217 213 / 22%);
  background: rgb(103 217 213 / 8%);
  color: #67d9d5;
  font-size: 20px;
}

.corporate-fields-list small {
  display: block;
  margin-bottom: 4px;
  color: #d0a84c;
  font-size: 14px;
  font-weight: 800;
}

.corporate-fields-list h3 {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 750;
}

.corporate-fields-list p {
  margin: 7px 0 0;
  color: rgb(255 255 255 / 52%);
  font-size: 14px;
  line-height: 1.7;
}

.corporate-experts-section {
  padding: 92px 40px 100px;
  background: white;
}

.corporate-experts-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 82px;
  align-items: center;
}

.corporate-experts-layout > div:first-child > p:last-child {
  max-width: 570px;
  margin: 23px 0 0;
  color: #5e7074;
  font-size: 15px;
  line-height: 1.8;
}

.corporate-expert-summary {
  overflow: hidden;
  border: 1px solid #dce6e7;
  background: #f7fafa;
}

.corporate-expert-summary > div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 23px 26px;
}

.corporate-expert-summary > div + div {
  border-top: 1px solid #dce6e7;
}

.corporate-expert-summary > div > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  background: #e2f1f1;
  color: #0f8d91;
  font-size: 14px;
  font-weight: 800;
}

.corporate-expert-summary p {
  margin: 0;
  color: #687a7d;
  font-size: 14px;
  line-height: 1.6;
}

.corporate-expert-summary strong {
  display: block;
  color: #0a2b30;
  font-size: 15px;
}

.corporate-expert-summary > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dce6e7;
  padding: 0 26px;
  background: #0f9fa3;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .corporate-page-hero,
  .corporate-intro-section,
  .corporate-approach-section,
  .corporate-fields-section,
  .corporate-experts-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .corporate-intro-grid,
  .corporate-section-heading,
  .corporate-fields-layout,
  .corporate-experts-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .corporate-intro-copy {
    border-top: 1px solid #d8e4e5;
    border-left: 0;
    padding-top: 30px;
    padding-left: 0;
  }

  .corporate-section-heading > p {
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  .corporate-page-hero {
    min-height: 320px;
    padding: 40px 18px 46px;
  }

  .corporate-breadcrumb {
    margin-bottom: 27px;
  }

  .corporate-page-hero h1 {
    font-size: 2.75rem;
  }

  .corporate-intro-section,
  .corporate-approach-section,
  .corporate-fields-section,
  .corporate-experts-section {
    padding: 68px 18px 72px;
  }

  .corporate-intro-title h2,
  .corporate-section-heading h2,
  .corporate-fields-content h2,
  .corporate-experts-layout h2 {
    font-size: 2.4rem;
  }

  .corporate-approach-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .corporate-approach-grid article {
    min-height: 250px;
    padding: 26px;
  }

  .corporate-fields-layout,
  .corporate-experts-layout {
    gap: 46px;
  }
}

/* Blog page */
.blog-page {
  background: #f5f8f8;
}

.blog-page-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.blog-page-hero {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 52px 40px 60px;
  background:
    radial-gradient(circle at 82% 28%, rgb(15 159 163 / 17%), transparent 27%),
    linear-gradient(128deg, #061b20 0%, #0a2b30 62%, #0a353a 100%);
  color: white;
}

.blog-page-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.blog-page-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: rgb(255 255 255 / 45%);
  font-size: 14px;
}

.blog-breadcrumb a {
  color: rgb(255 255 255 / 62%);
}

.blog-breadcrumb a:hover,
.blog-breadcrumb span {
  color: #67d9d5;
}

.blog-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-kicker span {
  width: 26px;
  height: 2px;
  background: #e0bd69;
}

.blog-kicker--dark {
  color: #0f9fa3;
}

.blog-page-hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.blog-page-hero-inner > p:last-child {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 62%);
  font-size: 15px;
  line-height: 1.75;
}

.blog-listing-section {
  padding: 92px 40px 105px;
}

.blog-listing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
}

.blog-listing-heading h2 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.blog-listing-heading h2 strong {
  color: #0f9fa3;
  font-weight: inherit;
}

.blog-listing-heading > p {
  margin: 0 0 4px;
  color: #5e7074;
  font-size: 15px;
  line-height: 1.75;
}

.blog-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 48px;
  border-bottom: 1px solid #dce6e7;
  padding-bottom: 18px;
}

.blog-category-row a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid #d8e4e5;
  border-radius: 2px;
  padding: 0 16px;
  background: white;
  color: #607376;
  font-size: 14px;
  font-weight: 700;
}

.blog-category-row .is-active {
  border-color: #0f9fa3;
  background: #0f9fa3;
  color: white;
}

.blog-draft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.blog-draft-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce6e7;
  border-radius: 4px;
  background: white;
  box-shadow: 0 15px 42px rgb(7 31 36 / 6%);
}

.blog-draft-visual {
  position: relative;
  display: flex;
  min-height: 205px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.blog-draft-visual::before,
.blog-draft-visual::after {
  position: absolute;
  content: "";
}

.blog-draft-visual::before {
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgb(255 255 255 / 12%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 12%) 1px, transparent 1px);
  background-size: 32px 32px;
}

.blog-draft-visual::after {
  right: -45px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgb(255 255 255 / 3%);
}

.blog-draft-visual--valuation {
  background: linear-gradient(135deg, #08252a, #0f797d);
}

.blog-draft-visual--renewal {
  background: linear-gradient(135deg, #0a2b30, #235a62);
}

.blog-draft-visual--planning {
  background: linear-gradient(135deg, #12343a, #89713b);
}

.blog-draft-visual > i {
  position: relative;
  z-index: 1;
  font-size: 56px;
}

.blog-draft-visual > span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 17px;
  border: 1px solid rgb(255 255 255 / 18%);
  padding: 6px 9px;
  background: rgb(4 21 25 / 32%);
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  font-weight: 700;
}

.blog-draft-visual--image::before,
.blog-draft-visual--image::after {
  display: none;
}

.blog-draft-visual--image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-draft-card:hover .blog-draft-visual--image > img {
  transform: scale(1.035);
}

.blog-draft-visual--image > span {
  z-index: 2;
}

.blog-draft-content {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 26px;
}

.blog-draft-content > p {
  margin: 0 0 10px;
  color: #0f9fa3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blog-draft-content h3 {
  margin: 0;
  color: #0a2b30;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.blog-draft-content > span {
  margin-top: 14px;
  color: #65777a;
  font-size: 14px;
  line-height: 1.75;
}

.blog-card-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #0f8f93;
  font-size: 14px;
  font-weight: 800;
}

.blog-card-link:hover,
.blog-draft-content h3 a:hover {
  color: #0f9fa3;
}

.blog-draft-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  border-top: 1px solid #e2e9ea;
  padding-top: 17px;
  color: #829194;
  font-size: 14px;
  font-weight: 700;
}

.blog-empty-state {
  margin-top: 28px;
  border: 1px dashed #cbd8da;
  padding: 58px 24px;
  background: white;
  text-align: center;
}

.blog-empty-state > i {
  color: #0f9fa3;
  font-size: 36px;
}

.blog-empty-state h3 {
  margin: 16px 0 0;
  color: #0a2b30;
  font-size: 19px;
  font-weight: 800;
}

.blog-empty-state p {
  margin: 8px 0 0;
  color: #718286;
  font-size: 14px;
}

.blog-draft-status i {
  color: #d0a84c;
  font-size: 17px;
}

@media (max-width: 900px) {
  .blog-page-hero,
  .blog-listing-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .blog-listing-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-listing-heading > p {
    max-width: 650px;
  }

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

  .blog-draft-card--featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  }
}

@media (max-width: 620px) {
  .blog-page-hero {
    min-height: 320px;
    padding: 40px 18px 46px;
  }

  .blog-breadcrumb {
    margin-bottom: 27px;
  }

  .blog-page-hero h1 {
    font-size: 2.75rem;
  }

  .blog-listing-section {
    padding: 68px 18px 72px;
  }

  .blog-listing-heading h2 {
    font-size: 2.4rem;
  }

  .blog-category-row {
    flex-wrap: nowrap;
    margin-right: -18px;
    overflow-x: auto;
    padding-right: 18px;
  }

  .blog-category-row a {
    flex: 0 0 auto;
  }

  .blog-draft-grid,
  .blog-draft-card--featured {
    grid-template-columns: 1fr;
  }

  .blog-draft-card--featured {
    grid-column: auto;
  }

  .blog-draft-visual {
    min-height: 190px;
  }

  .blog-draft-content {
    min-height: 270px;
    padding: 23px;
  }
}

/* Blog detail */
.blog-detail-page {
  background: #f5f8f8;
}

.blog-detail-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 52px 40px 66px;
  background: radial-gradient(circle at 82% 28%, rgb(15 159 163 / 17%), transparent 27%), linear-gradient(128deg, #061b20 0%, #0a2b30 62%, #0a353a 100%);
  color: white;
}

.blog-detail-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-detail-hero h1 {
  max-width: 980px;
  margin: 0;
  color: white;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.blog-detail-meta {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255 255 255 / 56%);
  font-size: 14px;
  font-weight: 650;
}

.blog-detail-meta i {
  color: #67d9d5;
}

.blog-detail-content-section {
  padding: 82px 40px 100px;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 72px;
  align-items: start;
}

.blog-detail-article {
  min-width: 0;
  border: 1px solid #dce6e7;
  padding: 42px;
  background: white;
  box-shadow: 0 16px 45px rgb(7 31 36 / 5%);
}

.blog-detail-lead {
  margin: 0 0 30px;
  border-left: 3px solid #0f9fa3;
  padding-left: 22px;
  color: #29494e;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.8;
}

.blog-detail-body {
  color: #586d70;
  font-size: 15px;
  line-height: 2;
}

.blog-detail-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 32px;
  border-radius: 18px;
  object-fit: cover;
}

.blog-detail-body p,
.blog-detail-body ul,
.blog-detail-body ol,
.blog-detail-body blockquote {
  margin: 0 0 22px;
}

.blog-detail-body h2,
.blog-detail-body h3 {
  margin: 34px 0 14px;
  color: #0a2b30;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.blog-detail-body h2 {
  font-size: clamp(22px, 2.5vw, 29px);
}

.blog-detail-body h3 {
  font-size: clamp(18px, 2vw, 23px);
}

.blog-detail-body ul,
.blog-detail-body ol {
  padding-left: 24px;
}

.blog-detail-body li + li {
  margin-top: 8px;
}

.blog-detail-body blockquote {
  border-left: 3px solid #0f9fa3;
  padding: 14px 18px;
  background: #f1f8f8;
  color: #31555a;
}

.blog-detail-body a {
  color: #0f8f94;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-detail-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.blog-detail-side-card {
  overflow: hidden;
  border: 1px solid #dce6e7;
  background: white;
}

.blog-detail-side-card > p {
  margin: 0;
  padding: 19px 21px;
  background: #0a2b30;
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.blog-detail-side-card a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e2e9ea;
  padding: 0 20px;
  color: #5d7074;
  font-size: 14px;
  font-weight: 700;
}

.blog-detail-side-card a:last-child {
  border-bottom: 0;
}

.blog-detail-side-card a.is-active {
  border-left: 3px solid #0f9fa3;
  background: #edf7f7;
  color: #0a2b30;
}

.blog-detail-contact {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px;
  background: #0f9fa3;
  color: white;
}

.blog-detail-contact > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  background: rgb(255 255 255 / 12%);
  font-size: 18px;
}

.blog-detail-contact div {
  min-width: 0;
  flex: 1;
}

.blog-detail-contact small,
.blog-detail-contact strong {
  display: block;
  font-size: 14px;
}

.blog-detail-contact small {
  margin-bottom: 3px;
  color: rgb(255 255 255 / 65%);
}

.blog-not-found {
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 80px 40px;
  text-align: center;
}

.blog-not-found span {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  place-items: center;
  background: #e2f1f1;
  color: #0f9fa3;
  font-size: 28px;
}

.blog-not-found h1 {
  margin: 22px 0 0;
  color: #0a2b30;
  font-size: 36px;
  font-weight: 800;
}

.blog-not-found p {
  margin: 10px 0 0;
  color: #687a7d;
  font-size: 15px;
}

.blog-not-found a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  padding: 0 20px;
  background: #0f9fa3;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .blog-detail-hero,
  .blog-detail-content-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .blog-detail-sidebar {
    position: static;
  }
}

@media (max-width: 620px) {
  .blog-detail-hero {
    min-height: 380px;
    padding: 40px 18px 48px;
  }

  .blog-detail-hero h1 {
    font-size: 2.65rem;
  }

  .blog-detail-content-section {
    padding: 64px 18px 72px;
  }

  .blog-detail-article {
    padding: 27px 23px;
  }

  .blog-detail-lead {
    font-size: 16px;
  }
}

/* Service detail page */
.service-detail-page {
  background: #f5f8f8;
}

.service-detail-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.service-detail-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 50px 40px 64px;
  background: radial-gradient(circle at 82% 30%, rgb(15 159 163 / 18%), transparent 27%), linear-gradient(128deg, #061b20 0%, #0a2b30 62%, #0a353a 100%);
  color: white;
}

.service-detail-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.service-detail-hero-inner {
  position: relative;
  z-index: 1;
}

.service-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 42%);
  font-size: 14px;
}

.service-detail-breadcrumb a {
  color: rgb(255 255 255 / 62%);
}

.service-detail-breadcrumb a:hover,
.service-detail-breadcrumb span {
  color: #67d9d5;
}

.service-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 50px;
  align-items: center;
}

.service-detail-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-detail-kicker span {
  width: 26px;
  height: 2px;
  background: #e0bd69;
}

.service-detail-kicker--dark {
  color: #0f9fa3;
}

.service-detail-hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.service-detail-hero h1 strong {
  color: #67d9d5;
  font-weight: inherit;
}

.service-detail-hero-grid > div:first-child > p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 62%);
  font-size: 15px;
  line-height: 1.75;
}

.service-detail-hero-mark {
  position: relative;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border: 1px solid rgb(103 217 213 / 22%);
  background: rgb(103 217 213 / 7%);
  color: #67d9d5;
}

.service-detail-hero-mark i {
  font-size: 58px;
}

.service-detail-hero-mark span {
  position: absolute;
  top: 14px;
  right: 15px;
  color: rgb(255 255 255 / 35%);
  font-size: 14px;
  font-weight: 800;
}

.service-detail-content-section {
  padding: 88px 40px 104px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 72px;
  align-items: start;
}

.service-detail-article {
  min-width: 0;
}

.service-detail-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 36px;
  border-radius: 4px;
  object-fit: cover;
}

.service-detail-richtext > h2,
.service-detail-richtext > h3 {
  margin: 0 0 18px;
  color: #0a2b30;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.service-detail-richtext > h2 {
  font-size: clamp(30px, 3.2vw, 45px);
}

.service-detail-richtext > h3 {
  margin-top: 42px;
  font-size: clamp(21px, 2vw, 27px);
}

.service-detail-richtext > p:not(.service-detail-kicker),
.service-detail-richtext > ul,
.service-detail-richtext > ol,
.service-detail-richtext > blockquote {
  margin: 0 0 20px;
  color: #566b6f;
  font-size: 15px;
  line-height: 1.9;
}

.service-detail-richtext > ul,
.service-detail-richtext > ol {
  padding-left: 24px;
}

.service-detail-richtext li + li {
  margin-top: 9px;
}

.service-detail-richtext blockquote {
  border-left: 3px solid #0f9fa3;
  padding: 16px 20px;
  background: #f1f8f8;
}

.service-detail-richtext a {
  color: #0f8f94;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-detail-article > h2 {
  margin: 0 0 25px;
  color: #0a2b30;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.service-detail-article > p:not(.service-detail-kicker) {
  max-width: 850px;
  margin: 0;
  color: #586d70;
  font-size: 15px;
  line-height: 1.9;
}

.service-detail-article > p + p {
  margin-top: 18px;
}

.service-detail-benefits,
.service-detail-process {
  margin-top: 48px;
  border-top: 1px solid #d8e4e5;
  padding-top: 36px;
}

.service-detail-benefits > h3,
.service-detail-process > h3 {
  margin: 0 0 24px;
  color: #0a2b30;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-detail-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-detail-benefit-grid > div {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  border: 1px solid #dce6e7;
  padding: 17px 18px;
  background: white;
}

.service-detail-benefit-grid i {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  background: #e6f3f3;
  color: #0f9296;
  font-size: 18px;
}

.service-detail-benefit-grid span {
  color: #29494e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.service-detail-process ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-process li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid #dce6e7;
  padding: 19px 0;
}

.service-detail-process li > span {
  color: #0f9fa3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-detail-process strong {
  color: #0a2b30;
  font-size: 15px;
}

.service-detail-process p {
  margin: 6px 0 0;
  color: #687a7d;
  font-size: 14px;
  line-height: 1.7;
}

.service-detail-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.service-detail-side-card,
.service-detail-contact-card {
  overflow: hidden;
  border: 1px solid #dce6e7;
  background: white;
}

.service-detail-side-card > p {
  margin: 0;
  padding: 20px 22px;
  background: #0a2b30;
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.service-detail-side-card > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid #e2e9ea;
  padding: 0 20px;
  color: #53686c;
  font-size: 14px;
  font-weight: 700;
}

.service-detail-side-card > a:last-child {
  border-bottom: 0;
}

.service-detail-side-card > a i {
  color: #0f9fa3;
  font-size: 18px;
}

.service-detail-side-card > a.is-active {
  border-left: 3px solid #0f9fa3;
  background: #edf7f7;
  color: #0a2b30;
}

.service-detail-contact-card {
  padding: 25px 23px;
  background: #0a2b30;
  color: white;
}

.service-detail-contact-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  background: rgb(103 217 213 / 10%);
  color: #67d9d5;
  font-size: 20px;
}

.service-detail-contact-card > p {
  margin: 0 0 8px;
  color: rgb(255 255 255 / 55%);
  font-size: 14px;
}

.service-detail-contact-card > a:nth-of-type(1) {
  display: block;
  color: white;
  font-size: 20px;
  font-weight: 800;
}

.service-detail-contact-card > a:nth-of-type(2) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  padding-top: 18px;
  color: #67d9d5;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .service-detail-hero,
  .service-detail-content-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

@media (max-width: 620px) {
  .service-detail-hero {
    min-height: 380px;
    padding: 40px 18px 48px;
  }

  .service-detail-breadcrumb {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

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

  .service-detail-hero h1 {
    font-size: 2.75rem;
  }

  .service-detail-hero-mark {
    display: none;
  }

  .service-detail-content-section {
    padding: 68px 18px 72px;
  }

  .service-detail-article > h2 {
    font-size: 2.35rem;
  }

  .service-detail-benefit-grid,
  .service-detail-sidebar {
    grid-template-columns: 1fr;
  }
}
