:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #061d3e;
  --muted: #53657f;
  --line: rgba(6, 29, 62, .12);
  --accent: #075fd6;
  --accent-dark: #034db4;
  --charcoal: #061d3e;
  --white: #ffffff;
  --header-h: 92px;
  --container-max: 1500px;
  --container-gutter: 96px;
  --container: min(var(--container-max), calc(100vw - var(--container-gutter)));
  --hero-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(22, 62, 108, .10);
  --shadow-soft: 0 16px 48px rgba(22, 62, 108, .08);
  --shadow-header: 0 12px 34px rgba(9, 38, 76, .08);
  --glass-header: rgba(255, 255, 255, .88);
  --header-border: rgba(6, 29, 62, .10);
  --footer-bg-image: url("../assets/images/services-tools.jpg");
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 28px);
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid rgba(7, 95, 214, .54);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-150%);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-weight: 750;
  box-shadow: 0 16px 34px rgba(7, 95, 214, .24);
  transition: transform .2s ease;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(7, 95, 214, .14);
}

button {
  -webkit-tap-highlight-color: rgba(7, 95, 214, .14);
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.03;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

h1 span,
h2 span,
.accent-script {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  text-wrap: pretty;
}

.announcement-bar {
  position: relative;
  z-index: 51;
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid rgba(6, 29, 62, .08);
  font-size: 14px;
}

.announcement-inner {
  width: var(--container);
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-inline: auto;
}

.announcement-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 26px;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.announcement-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  padding-inline: max(40px, calc((100vw - var(--container-max)) / 2));
  background: var(--glass-header);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(22px);
  transition: min-height .24s ease, box-shadow .24s ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  box-shadow: var(--shadow-header);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
  min-height: 44px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 38px;
}

.brand-mark svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.65;
}

.brand-mark.has-logo {
  width: 118px;
  height: 34px;
}

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

.brand-mark.has-logo + span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand > span:last-child {
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.brand > span:last-child::first-letter {
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  gap: clamp(24px, 3vw, 56px);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.desktop-nav > a,
.desktop-nav .nav-link-main {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 8px;
  text-align: center;
}

.desktop-nav > a::after,
.desktop-nav .nav-link-main::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav .nav-dropdown:hover .nav-link-main::after,
.desktop-nav .nav-dropdown:focus-within .nav-link-main::after,
.desktop-nav .nav-dropdown.is-open .nav-link-main::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 16px;
  height: 44px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: opacity .2s ease, transform .2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.nav-dropdown-toggle:focus-visible {
  outline: 2px solid rgba(6, 29, 62, .18);
  outline-offset: 2px;
}

.nav-toggle-symbol {
  display: inline-block;
  min-width: .7em;
  text-align: center;
  line-height: 1;
  transform: none;
}

.desktop-nav .nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 22px;
}

.desktop-nav .nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 70;
  width: min(300px, calc(100vw - 48px));
  padding: 10px;
  border: 1px solid rgba(7, 95, 214, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 70px rgba(15, 52, 100, .14), inset 0 1px 0 rgba(255, 255, 255, .94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}

.desktop-nav .nav-dropdown:hover .nav-dropdown-panel,
.desktop-nav .nav-dropdown:focus-within .nav-dropdown-panel,
.desktop-nav .nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.nav-dropdown-list {
  display: grid;
  gap: 4px;
  min-height: 0;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ink);
  text-align: left;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.desktop-nav .nav-dropdown-item::after {
  display: none;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible,
.nav-dropdown-item.is-active {
  color: var(--accent);
  background: rgba(7, 95, 214, .07);
}

.nav-dropdown-item:hover {
  transform: translateX(3px);
}

.nav-dropdown-text {
  display: block;
  min-width: 0;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
}

.quote-btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--accent);
  border-radius: 7px;
  color: #fff;
  background: var(--accent);
  font-weight: 650;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(7, 95, 214, .18);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.header-actions .quote-btn {
  min-width: 128px;
  padding-inline: 22px;
}

.quote-btn:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 22px 44px rgba(7, 95, 214, .24);
}

.btn-secondary,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--accent);
  font-weight: 650;
}

.btn-secondary {
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid var(--accent);
  border-radius: 7px;
  background: rgba(255, 255, 255, .74);
  text-align: center;
  transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.btn-secondary .icon {
  flex: 0 0 auto;
  transition: transform .22s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 95, 214, .18);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(37, 91, 145, .12);
}

.btn-secondary:hover .icon {
  transform: translateX(4px);
}

.text-link {
  padding-bottom: 13px;
}

.text-link::after {
  bottom: 0;
  transform: scaleX(1);
}

.hamburger,
.round-btn {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-color: rgba(7, 95, 214, .16);
  box-shadow: 0 14px 34px rgba(18, 72, 133, .10), inset 0 1px 0 rgba(255, 255, 255, .88);
}

.hamburger span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: width .2s ease, background .2s ease, transform .2s ease;
}

.hamburger span:nth-child(2) {
  width: 21px;
  transform: none;
}

.hamburger:hover span,
.hamburger:focus-visible span {
  background: var(--accent);
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(430px, 100vw);
  min-height: 100svh;
  padding: 28px;
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(7, 33, 71, .16);
  transform: translateX(105%);
  transition: transform .32s ease;
}

.mobile-panel:not(.is-open) {
  display: none;
}

.mobile-panel.is-open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin: 58px 0 28px;
  font-size: 31px;
  font-weight: 500;
}

.mobile-panel nav > a,
.mobile-panel .nav-link-main {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.mobile-panel .nav-dropdown {
  display: grid;
}

.mobile-panel .nav-dropdown-trigger {
  justify-content: space-between;
  gap: 14px;
}

.mobile-panel .nav-link-main {
  flex: 1 1 auto;
}

.mobile-panel .nav-dropdown-toggle {
  flex: 0 0 auto;
  width: auto;
  min-width: 18px;
  height: 48px;
  padding: 0 2px;
  color: inherit;
  font-size: 28px;
  font-weight: 500;
}

.mobile-panel .nav-dropdown-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows .3s ease, opacity .24s ease;
}

.mobile-panel .nav-dropdown.is-open .nav-dropdown-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.mobile-panel .nav-dropdown-list {
  overflow: hidden;
  gap: 4px;
  padding: 4px 0 10px 14px;
}

.mobile-panel .nav-dropdown-item {
  min-height: 44px;
  padding: 7px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.mobile-panel .nav-dropdown-item:hover,
.mobile-panel .nav-dropdown-item:focus-visible,
.mobile-panel .nav-dropdown-item.is-active {
  color: var(--accent);
  background: rgba(7, 95, 214, .06);
}

.close-menu {
  position: absolute;
  top: 22px;
  right: 22px;
  float: none;
}

.mobile-menu-contact {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(6, 29, 62, .10);
}

.mobile-menu-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
}

.mobile-menu-contact-item svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--accent);
  stroke-width: 2;
}

.mobile-panel > .quote-btn {
  margin-top: 22px;
  min-height: 58px;
  border-radius: 14px;
}

.icon,
.lucide-inline,
.card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lucide,
.lucide-inline svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.75;
}

.section {
  width: var(--container);
  margin-inline: auto;
  padding: 92px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::after,
.blue-rule {
  content: "";
  width: 70px;
  height: 2px;
  background: currentColor;
}

.blue-rule {
  display: block;
  color: var(--accent);
  margin: 34px 0 28px;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: clamp(96px, 8vw, 148px) max(88px, calc((100vw - var(--container-max)) / 2)) clamp(80px, 7vw, 118px);
  background: #fff;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(255, 255, 255, .99) 0 40%, rgba(255, 255, 255, .82) 56%, rgba(255, 255, 255, .18) 78%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -19vw;
  z-index: -1;
  height: 38vw;
  min-height: 360px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, .90), rgba(255, 255, 255, .58) 38%, rgba(255, 255, 255, .96) 70%);
  box-shadow: inset 0 30px 60px rgba(255, 255, 255, .76);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 39%;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(860px, 58vw);
}

.hero-copy h1 {
  margin-top: 26px;
  max-width: 860px;
  font-family: var(--hero-serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(66px, 5.8vw, 104px);
  letter-spacing: 0;
  line-height: .94;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-copy h1 strong {
  display: block;
  color: inherit;
  font: inherit;
  white-space: normal;
  overflow-wrap: inherit;
}

.hero-copy h1 span {
  font-family: var(--hero-serif);
  font-style: italic;
  font-weight: 500;
}

.hero-copy .hero-subcopy {
  width: min(560px, 100%);
  margin-top: 30px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
}

.hero-actions .btn-primary {
  min-width: 274px;
  min-height: 70px;
  padding: 0 24px;
  justify-content: center;
  gap: 18px;
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(7, 95, 214, .28);
}

.hero-actions .btn-primary .icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  margin-right: 0;
  border-radius: 50%;
  color: var(--accent);
  background: #fff;
  font-size: 23px;
}

.hero-actions .btn-secondary {
  min-width: 218px;
  min-height: 70px;
  padding-inline: 24px;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 48px rgba(11, 52, 104, .10);
  backdrop-filter: blur(14px);
}

.hero-actions .btn-secondary .icon {
  transition: transform .22s ease;
}

.hero-actions .btn-secondary:hover {
  background: #fff;
  box-shadow: 0 22px 56px rgba(11, 52, 104, .14);
}

.hero-actions .btn-secondary::after {
  display: none;
}

.hero-proof {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  width: min(1180px, calc(100vw - 96px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
}

.hero-proof.reveal {
  transform: translate(-50%, 22px);
}

.hero-proof.reveal.is-visible {
  transform: translate(-50%, 0);
}

.trust-pill {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 30px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .56)),
    radial-gradient(circle at 18% 12%, rgba(207, 232, 255, .64), transparent 55%);
  box-shadow: 0 24px 58px rgba(36, 93, 154, .12), inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
}

.trust-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 30% 24%, #68a6ff, #1f6de3 58%, #0b55c5);
  box-shadow: 0 14px 26px rgba(7, 95, 214, .24), inset 0 1px 0 rgba(255, 255, 255, .35);
  font-size: 31px;
}

.trust-pill b {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 1.6vw, 29px);
  font-weight: 760;
  line-height: 1.05;
}

.trust-pill small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.25;
}

.hero-orb {
  position: absolute;
  right: 46%;
  bottom: 15%;
  z-index: 2;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .62), rgba(91, 166, 255, .35) 54%, rgba(7, 95, 214, .12));
  box-shadow: 0 24px 70px rgba(36, 105, 186, .18), inset 0 0 38px rgba(255, 255, 255, .58);
  backdrop-filter: blur(9px);
  font-size: 58px;
}

.hero-tech-note {
  position: absolute;
  right: max(52px, calc((100vw - var(--container-max)) / 2));
  bottom: 184px;
  z-index: 3;
  width: 230px;
  color: var(--accent);
}

.hero-tech-note span {
  display: block;
  width: 70px;
  height: 2px;
  margin-bottom: 18px;
  background: currentColor;
}

.hero-tech-note p {
  color: currentColor;
  font-size: 17px;
  line-height: 1.45;
}

.brand-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
}

.home-hero .brand-strip {
  display: none;
}

.brand-strip > div {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
}

.brand-strip > div + div {
  border-left: 1px solid var(--line);
}

.mini-icon,
.circle-icon,
.service-icon,
.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--accent);
  font-size: 29px;
}

.mini-icon,
.contact-icon {
  background: rgba(7, 95, 214, .07);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: transparent;
  font-size: 54px;
}

.section-heading {
  display: grid;
  gap: 28px;
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-index::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.section-heading.centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-heading.split {
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.why-copy h2,
.contact-copy h1,
.contact-copy h2 {
  font-size: clamp(42px, 4.7vw, 78px);
}

.services-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, .68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 5vw, 86px);
  align-items: start;
  isolation: isolate;
  padding-top: 110px;
  padding-bottom: 110px;
}

.services-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  background: #fff;
  pointer-events: none;
}

.services-showcase::after {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  bottom: -19vw;
  z-index: -1;
  height: 30vw;
  min-height: 300px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(170deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, .96));
  pointer-events: none;
}

.services-showcase > .section-heading {
  max-width: 430px;
}

.services-showcase .section-index {
  margin-bottom: 42px;
}

.services-showcase > .section-heading h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 3.9vw, 64px);
  line-height: 1;
}

.services-showcase > .section-heading p {
  max-width: 370px;
  font-size: 19px;
}

.services-showcase > .service-cards {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.services-showcase > p {
  grid-column: 1;
  grid-row: 2;
  margin-top: 24px !important;
}

.service-cards,
.team-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.service-cards.five {
  grid-template-columns: repeat(5, 1fr);
}

.service-card,
.team-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease;
}

.service-card:hover,
.team-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 292px;
  padding: 44px 40px 36px;
}

.services-showcase .service-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 0;
}

.services-showcase .service-card {
  position: relative;
  min-height: 314px;
  padding: 34px 92px 34px 34px;
  border: 1px solid rgba(7, 95, 214, .13);
  border-radius: 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 64px rgba(37, 91, 145, .10);
  backdrop-filter: blur(14px);
}

.services-showcase .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 78px rgba(37, 91, 145, .15);
}

.services-showcase .service-icon {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: 50%;
  color: var(--accent);
  background: #fff;
  box-shadow: inset 0 0 28px rgba(255, 255, 255, .92), 0 16px 34px rgba(37, 91, 145, .08);
  font-size: 34px;
}

.services-showcase .service-card h3 {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.05;
}

.services-showcase .service-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 18px;
  background: var(--accent);
}

.services-showcase .service-card p {
  max-width: 300px;
  margin-top: 18px;
  color: #465a78;
  font-size: 17px;
  line-height: 1.5;
}

.services-showcase .card-arrow {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(7, 95, 214, .12);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 30px rgba(37, 91, 145, .08);
  font-size: 24px;
}

.services-showcase .services-link {
  min-width: 250px;
  min-height: 66px;
  justify-content: space-between;
  padding: 0 24px 0 28px;
  border-color: rgba(7, 95, 214, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 46px rgba(37, 91, 145, .09);
  backdrop-filter: blur(12px);
}

.services-showcase .services-link::after {
  display: none;
}

.service-card h3 {
  margin-top: 32px;
  font-size: 26px;
}

.service-card p {
  margin-top: 18px;
  font-size: 17px;
}

.service-card .card-arrow {
  margin-top: 28px;
  color: var(--accent);
  font-size: 24px;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(0, 1fr);
  align-items: center;
  gap: 92px;
}

.why-media,
.technology-media {
  overflow: hidden;
}

.why-media img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
}

.why-copy p {
  max-width: 610px;
  margin-top: 0;
  font-size: 20px;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.benefit-row article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.benefit-row article:first-child {
  padding-left: 0;
  border-left: 0;
}

.benefit-row .service-icon {
  width: 56px;
  height: 56px;
  font-size: 44px;
}

.benefit-row h3 {
  margin-top: 24px;
  font-size: 20px;
}

.benefit-row p {
  margin-top: 14px;
  font-size: 16px;
}

.why-trust {
  grid-column: 1 / -1;
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-self: center;
  margin-top: -18px;
}

.why-trust .trust-pill {
  min-height: 96px;
  padding: 18px 24px;
}

.why-trust .trust-icon {
  width: 58px;
  height: 58px;
  font-size: 28px;
}

.why-trust .trust-pill b {
  font-size: clamp(20px, 1.4vw, 25px);
}

.team-section {
  position: relative;
  isolation: isolate;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  background: #fff;
  pointer-events: none;
}

.team-section .section-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
  gap: 10px;
}

.team-section .section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.02;
}

.team-section .section-heading h2 span {
  font-size: .95em;
}

.team-section .blue-rule {
  width: 54px;
  margin: 10px 0 6px;
}

.team-section .section-heading p {
  max-width: 540px;
  font-size: 18px;
}

.team-section .team-grid {
  gap: 32px;
  margin-top: 44px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(7, 95, 214, .11);
  border-radius: 18px;
  background: #fff;
  text-align: left;
  box-shadow: 0 22px 58px rgba(37, 91, 145, .11);
  backdrop-filter: blur(12px);
}

.team-photo {
  position: relative;
  aspect-ratio: 1.46 / 1;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-icon {
  position: absolute;
  left: 32px;
  bottom: -31px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 34px rgba(37, 91, 145, .12), inset 0 0 22px rgba(220, 240, 255, .7);
  font-size: 32px;
}

.team-info {
  padding: 48px 34px 34px;
}

.team-card h3 {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.06;
}

.team-card b {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 600;
}

.transformation-section,
.technology-section {
  display: grid;
  grid-template-columns: minmax(360px, .62fr) minmax(0, 1fr);
  gap: 82px;
  align-items: center;
}

.transformation-section .why-copy h2 {
  max-width: 610px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: .98;
}

.transformation-trust {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 36px 0;
}

.transformation-trust article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(36, 93, 154, .10), inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
}

.trust-step-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 30% 24%, #68a6ff, #1f6de3 58%, #0b55c5);
  box-shadow: 0 14px 26px rgba(7, 95, 214, .22), inset 0 1px 0 rgba(255, 255, 255, .35);
  font-size: 30px;
}

.transformation-trust h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.transformation-trust p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 44px 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  list-style: none;
}

.feature-list i {
  color: var(--accent);
  font-size: 31px;
}

.before-after {
  --position: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 560px;
  height: clamp(520px, 46vw, 680px);
  background: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
  touch-action: pan-y;
}

.technology-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.before-after img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.diagnostics-visual img {
  position: relative;
  z-index: 1;
}

.diagnostics-visual .ba-labels {
  z-index: 4;
}

.ba-image {
  position: absolute;
  inset: 0;
}

.ba-after {
  z-index: 1;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  will-change: clip-path;
}

.before-after::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 64%, rgba(5, 28, 64, .14) 100%);
  pointer-events: none;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 5;
  width: 2px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 1px rgba(7, 95, 214, .12), 0 0 28px rgba(255, 255, 255, .82);
  transform: translateX(-1px);
  will-change: left;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 38px rgba(37, 91, 145, .18), inset 0 0 20px rgba(218, 239, 255, .78);
  font-size: 27px;
  transform: translate(-50%, -50%);
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.ba-range::-webkit-slider-thumb {
  width: 58px;
  height: 680px;
  appearance: none;
  -webkit-appearance: none;
  cursor: ew-resize;
}

.ba-range::-moz-range-thumb {
  width: 58px;
  height: 680px;
  border: 0;
  cursor: ew-resize;
}

.before-after:focus-within .ba-handle {
  box-shadow: 0 0 0 4px rgba(7, 95, 214, .14), 0 18px 38px rgba(37, 91, 145, .18);
}

.ba-labels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(247, 251, 255, .88);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.ba-labels span {
  min-height: 70px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.technology-band {
  width: 100%;
  background: #fff;
  border-block: 1px solid var(--line);
}

.technology-section {
  width: var(--container);
  margin-inline: auto;
  padding: 90px 0;
}

.technology-media img {
  border-radius: 8px;
}

.reviews-section {
  position: relative;
  width: 100%;
  margin-inline: 0;
  overflow: hidden;
  padding: 112px max(52px, calc((100vw - var(--container-max)) / 2)) 74px;
  background: #fff;
}

.reviews-section::before {
  content: "";
  position: absolute;
  left: -12vw;
  right: -10vw;
  bottom: -10vw;
  height: 25vw;
  min-height: 260px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(170deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .96) 62%);
  pointer-events: none;
}

.reviews-section::after {
  content: "";
  position: absolute;
  left: -6vw;
  right: -6vw;
  bottom: -2vw;
  height: 14vw;
  min-height: 120px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-top: 1px solid rgba(255, 255, 255, .92);
  background: linear-gradient(175deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .08));
  box-shadow: 0 -18px 40px rgba(138, 196, 255, .12);
  pointer-events: none;
}

.reviews-section > * {
  position: relative;
  z-index: 1;
}

.reviews-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
}

.reviews-top .eyebrow {
  margin-bottom: 24px;
}

.reviews-top .eyebrow::after {
  display: none;
}

.reviews-top h2 {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 84px);
  font-weight: 500;
  line-height: .95;
}

.reviews-top p {
  margin-top: 26px;
  color: #354057;
  font-size: 22px;
  line-height: 1.35;
}

.google-rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  justify-content: end;
  column-gap: 10px;
  row-gap: 8px;
  min-width: 330px;
  padding-bottom: 8px;
  color: var(--ink);
}

.google-rating strong {
  font-size: 42px;
  font-weight: 780;
  line-height: .9;
}

.google-rating > .stars {
  margin-top: 2px;
  transform: translateY(-3px);
}

.google-mark {
  display: inline-grid;
  grid-row: span 2;
  place-items: center;
  width: 48px;
  height: 48px;
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  background: conic-gradient(from -45deg, #4285f4 0 24%, #34a853 0 43%, #fbbc05 0 67%, #ea4335 0 82%, #4285f4 0);
  background-clip: text;
  -webkit-background-clip: text;
}

.google-score {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.google-score .stars {
  transform: translateY(-3px);
}

.google-score b {
  color: var(--ink);
  font-size: 31px;
  font-weight: 760;
  line-height: 1;
}

.google-note {
  grid-column: 1 / -1;
  justify-self: end;
  color: #53657f;
  font-size: 18px;
  line-height: 1.25;
}

.reviews-section .review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 62px;
}

.review-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: grid;
  align-content: start;
  padding: 34px 34px 38px;
  border: 1px solid rgba(216, 230, 247, .74);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 68px rgba(30, 79, 132, .08);
  backdrop-filter: blur(18px);
}

.review-card::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: center 16% / 148% auto no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .58);
}

.review-card:nth-child(1)::before {
  background-image: url("../assets/images/doctor-ana.jpg");
}

.review-card:nth-child(2)::before {
  background-image: url("../assets/images/doctor-marko.jpg");
  background-position: center 13%;
}

.review-card:nth-child(3)::before {
  background-image: url("../assets/images/doctor-petra.jpg");
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(30, 79, 132, .11);
}

.review-card .quote-icon {
  position: absolute;
  top: 36px;
  right: 34px;
  width: 62px;
  height: 62px;
  color: rgba(207, 226, 250, .98);
  stroke-width: 1.45;
}

.review-card p {
  min-height: 0;
  margin-top: 28px;
  color: #3d4656;
  font-size: 19px;
  line-height: 1.62;
}

.review-meta {
  order: -1;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 13px;
  margin: 0;
  padding: 0 80px 0 132px;
  border-top: 0;
}

.review-meta b {
  color: var(--ink);
  font-size: 24px;
  font-weight: 620;
  line-height: 1.05;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f5b000;
  font-size: 22px;
  line-height: 1;
}

.stars svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  stroke: currentColor;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(460px, .82fr);
  gap: 96px;
  align-items: center;
}

.contact-copy p {
  max-width: 680px;
  margin-top: 28px;
  font-size: 20px;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 19px;
  font-weight: 550;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  padding: 38px;
  backdrop-filter: blur(18px);
}

.contact-card h2 {
  font-size: 30px;
}

.contact-card > p {
  margin-top: 12px;
  font-size: 16px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 26px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(6, 29, 62, .18);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, .84);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 96px;
  padding-block: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(7, 95, 214, .10);
}

.contact-form button {
  width: 100%;
  margin-top: 6px;
}

.privacy-note,
.form-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.form-status {
  justify-content: flex-start;
  color: var(--accent);
}

.appointment-section {
  position: relative;
  padding: 88px 0 94px;
  overflow: hidden;
  background: #fff;
}

.appointment-panel {
  position: relative;
  width: min(1480px, calc(100vw - 92px));
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(420px, .93fr) minmax(620px, 1.08fr);
  gap: 56px;
  margin-inline: auto;
  padding: 58px 58px 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(37, 91, 145, .16), inset 0 1px 0 rgba(255, 255, 255, .92);
}

.appointment-copy {
  position: relative;
  min-height: 672px;
  display: grid;
  grid-template-rows: auto 1fr;
  z-index: 1;
}

.appointment-brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  width: fit-content;
  color: var(--ink);
}

.appointment-brand .brand-mark {
  width: 64px;
  height: 64px;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
  font-size: 54px;
}

.appointment-brand b {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: .92;
}

.appointment-brand small {
  display: block;
  margin-top: 10px;
  color: #375176;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.appointment-copy-inner {
  align-self: center;
  max-width: 620px;
  padding-bottom: 150px;
}

.appointment-copy h1,
.appointment-copy h2 {
  margin-top: 24px;
  font-size: clamp(52px, 4.4vw, 74px);
  line-height: .96;
}

.appointment-copy h1 span,
.appointment-copy h2 span {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

.appointment-copy p {
  max-width: 470px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.contact-appointment .appointment-copy-inner {
  padding-bottom: 0;
}

.contact-appointment .appointment-copy h1 {
  font-size: clamp(48px, 4vw, 68px);
}

.contact-appointment .appointment-panel {
  min-height: 0;
  grid-template-columns: minmax(360px, .82fr) minmax(620px, 1fr);
  align-items: center;
}

.contact-appointment .appointment-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
}

.contact-appointment .appointment-copy-inner {
  align-self: start;
}

.contact-appointment .appointment-copy-inner .eyebrow {
  display: none;
}

.contact-info-list {
  display: grid;
  gap: 16px;
  width: min(100%, 560px);
  margin-top: 34px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 84px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 95, 214, .10);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(37, 91, 145, .08);
}

.contact-info-icon {
  display: inline-grid;
  place-items: center;
  align-self: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  line-height: 0;
  color: #fff;
  background: radial-gradient(circle at 30% 24%, #68a6ff, #1f6de3 58%, #0b55c5);
  box-shadow: 0 14px 26px rgba(7, 95, 214, .20), inset 0 1px 0 rgba(255, 255, 255, .34);
}

.contact-info-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  stroke-width: 2;
  transform: translateY(1px);
}

.contact-info-item b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.contact-info-item a,
.contact-info-item div > span,
.contact-info-item small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.contact-info-item a {
  color: var(--accent);
  font-weight: 700;
}

.appointment-photo {
  position: absolute;
  left: -58px;
  right: 18px;
  bottom: -58px;
  height: 292px;
  overflow: hidden;
  border-radius: 0 0 0 34px;
}

.appointment-photo::before,
.appointment-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.appointment-photo::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, .08), rgba(202, 231, 255, .28)),
    radial-gradient(ellipse at 38% 8%, rgba(255, 255, 255, .70), transparent 48%);
}

.appointment-photo::after {
  z-index: 2;
  left: -18%;
  right: -12%;
  top: -130px;
  height: 230px;
  border: 2px solid rgba(255, 255, 255, .84);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 0 28px rgba(255, 255, 255, .54);
}

.appointment-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 34% 54%;
  filter: saturate(.96) brightness(1.08);
}

.appointment-orb {
  position: absolute;
  right: 34px;
  bottom: 202px;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 36px rgba(255, 255, 255, .72), 0 24px 58px rgba(37, 91, 145, .14);
  backdrop-filter: blur(12px);
  font-size: 52px;
}

.appointment-card {
  align-self: center;
  z-index: 2;
  padding: 46px 40px 34px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 24px 74px rgba(37, 91, 145, .13), inset 0 1px 0 rgba(255, 255, 255, .94);
  backdrop-filter: blur(20px);
}

.appointment-card-head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 38px;
}

.appointment-head-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--accent);
  background: #fff;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, .9), 0 16px 34px rgba(37, 91, 145, .08);
  font-size: 38px;
}

.appointment-card h2 {
  font-size: 30px;
  line-height: 1.1;
}

.appointment-card-head p {
  margin-top: 10px;
  color: #7382a1;
  font-size: 17px;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.field-with-icon {
  position: relative;
  display: block;
}

.field-with-icon.wide,
.appointment-submit {
  grid-column: 1 / -1;
}

.consent-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.consent-field a {
  color: var(--accent);
  font-weight: 750;
}

.field-with-icon > span,
.field-with-icon > b {
  position: absolute;
  top: 29px;
  z-index: 2;
  color: #8ca0c3;
  font-size: 22px;
  transform: translateY(-50%);
  pointer-events: none;
}

.field-with-icon > span {
  left: 22px;
}

.field-with-icon > b {
  right: 22px;
  font-size: 20px;
}

.field-with-icon input,
.field-with-icon textarea,
.field-with-icon select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(7, 95, 214, .18);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, .64);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field-with-icon input,
.field-with-icon select {
  padding: 0 54px;
}

.field-with-icon select {
  appearance: none;
  cursor: pointer;
}

.field-with-icon textarea {
  min-height: 104px;
  padding: 22px 18px 18px 54px;
  resize: vertical;
}

.field-with-icon input::placeholder,
.field-with-icon textarea::placeholder,
.field-with-icon select:invalid {
  color: #7e90b0;
  opacity: 1;
}

.field-with-icon input:focus,
.field-with-icon textarea:focus,
.field-with-icon select:focus {
  border-color: rgba(7, 95, 214, .52);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 0 0 4px rgba(7, 95, 214, .08);
}

.appointment-submit {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #2d86ff, #075fd6 64%, #034db4);
  box-shadow: 0 18px 34px rgba(7, 95, 214, .24);
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
  transition: transform .22s ease, box-shadow .22s ease;
}

.appointment-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(7, 95, 214, .30);
}

.appointment-submit-icon {
  position: absolute;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--accent);
  background: #fff;
  font-size: 24px;
}

.appointment-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 42px 0 26px;
  color: #8092b3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.appointment-divider::before,
.appointment-divider::after {
  content: "";
  height: 1px;
  background: rgba(7, 95, 214, .14);
}

.appointment-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.appointment-contact a,
.appointment-contact div {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  padding: 0 12px;
  color: var(--ink);
}

.appointment-contact a + a,
.appointment-contact div {
  border-left: 1px solid rgba(7, 95, 214, .13);
}

.appointment-contact span {
  grid-row: span 2;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.appointment-contact b {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.2;
}

.appointment-contact small {
  display: block;
  margin-top: 6px;
  color: #7a89a6;
  font-size: 14px;
  line-height: 1.25;
}

.services-page-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1fr);
  gap: 70px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 72px max(54px, calc((100vw - var(--container-max)) / 2)) 96px;
  background: #fff;
}

.services-page-hero::before,
.about-story-hero::before {
  content: "";
  position: absolute;
  left: calc(50% - 58vw);
  right: calc(50% - 58vw);
  bottom: -18vw;
  z-index: -1;
  height: 32vw;
  min-height: 310px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(170deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .96));
  pointer-events: none;
}

.services-hero-copy h1,
.about-story-copy h1 {
  max-width: 720px;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 500;
  line-height: .95;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.services-hero-copy p {
  max-width: 620px;
  margin-top: 28px;
  color: #3a465d;
  font-size: 20px;
}

.services-hero-media {
  position: relative;
  min-height: 570px;
}

.services-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  border: 1px solid rgba(7, 95, 214, .10);
  border-radius: 48% 8px 8px 48% / 36% 8px 8px 36%;
  box-shadow: 0 34px 86px rgba(31, 89, 150, .15);
}

.services-hero-note {
  position: absolute;
  right: 44px;
  bottom: -36px;
  width: min(520px, calc(100% - 60px));
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 22px 58px rgba(37, 91, 145, .12);
  backdrop-filter: blur(16px);
}

.services-hero-note b {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.services-hero-note small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.services-directory {
  position: relative;
  isolation: isolate;
}

.services-directory::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: #fff;
}

.services-directory .section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 3.8vw, 62px);
  line-height: 1;
}

.services-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.services-catalog-grid .service-card {
  position: relative;
  min-height: 360px;
  padding: 42px 82px 36px 34px;
  border-radius: 22px;
  border-color: rgba(7, 95, 214, .12);
  background: #fff;
  box-shadow: 0 24px 62px rgba(37, 91, 145, .10);
  backdrop-filter: blur(14px);
}

.services-catalog-grid .service-card h3 {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 600;
  line-height: 1;
}

.services-catalog-grid .service-card p {
  margin-top: 18px;
  color: #40506a;
  font-size: 17px;
}

.services-catalog-grid .service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  list-style: none;
}

.services-catalog-grid .service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-catalog-grid .service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.services-catalog-grid .card-arrow {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(7, 95, 214, .14);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, .82);
  font-size: 24px;
}

.about-story-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(440px, .74fr) minmax(560px, 1fr);
  gap: 70px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 72px max(54px, calc((100vw - var(--container-max)) / 2)) 96px;
  background: #fff;
}

.about-story-copy h1 {
  max-width: 650px;
}

.about-story-intro {
  max-width: 610px;
  margin-top: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  color: #3a465d;
  font-size: 19px;
}

.story-values {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin-top: 38px;
}

.story-values article,
.story-founded-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(37, 91, 145, .10);
  backdrop-filter: blur(16px);
}

.story-values article {
  min-height: 118px;
  padding: 22px 26px;
}

.story-value-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: var(--accent);
  background: #fff;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, .78);
  font-size: 36px;
}

.story-values h3 {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 760;
}

.story-values p {
  margin-top: 7px;
  color: #495872;
  font-size: 15px;
}

.about-story-media {
  position: relative;
  min-height: 620px;
}

.about-story-media::before {
  content: "";
  position: absolute;
  inset: -7% auto -5% -9%;
  width: 42%;
  border-radius: 48% 0 0 48%;
  background: rgba(255, 255, 255, .80);
  pointer-events: none;
}

.about-story-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 58% center;
  border: 1px solid rgba(7, 95, 214, .10);
  border-radius: 42% 0 0 42% / 34% 0 0 34%;
  box-shadow: 0 34px 86px rgba(31, 89, 150, .14);
}

.story-founded-card {
  position: absolute;
  right: 60px;
  bottom: -38px;
  z-index: 2;
  width: min(620px, calc(100% - 90px));
  grid-template-columns: 86px 1fr 38px;
  padding: 22px 30px;
}

.story-founded-card small {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.story-founded-card b {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.story-founded-card p {
  margin-top: 6px;
  font-size: 15px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-inline: max(40px, calc((100vw - var(--container-max)) / 2));
  background: #fff;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .78) 48%, rgba(255, 255, 255, .34));
}

.page-hero h1 {
  width: min(760px, 56vw);
  font-family: var(--serif);
  font-size: clamp(52px, 5.2vw, 88px);
  font-weight: 500;
  line-height: .96;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, .75fr);
  gap: 88px;
  align-items: start;
}

.page-intro h2 {
  margin-top: 24px;
  font-size: clamp(38px, 4vw, 68px);
}

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

.process-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

.process-inner {
  width: var(--container);
  margin-inline: auto;
  padding: 86px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 50px;
}

.timeline-step {
  padding-top: 26px;
  border-top: 2px solid var(--accent);
}

.timeline-step strong {
  color: var(--accent);
  font-size: 18px;
}

.timeline-step h3 {
  margin-top: 20px;
  font-size: 28px;
}

.timeline-step p {
  margin-top: 12px;
  font-size: 16px;
}

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

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

.service-detail-main h2 {
  max-width: 920px;
  margin-top: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: .98;
}

.service-detail-main > p {
  max-width: 760px;
  margin-top: 24px;
  font-size: 20px;
}

.service-detail-main > img {
  width: 100%;
  max-height: 590px;
  margin-top: 50px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(37, 91, 145, .12);
}

.service-story {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin-top: 44px;
}

.service-story p {
  color: #3d4c64;
  font-size: 19px;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.service-points article {
  min-height: 220px;
  padding: 30px 28px;
  border: 1px solid rgba(7, 95, 214, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(37, 91, 145, .08);
  backdrop-filter: blur(12px);
}

.service-points span {
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-points h3 {
  margin-top: 16px;
  font-size: 27px;
}

.service-points p {
  margin-top: 10px;
  font-size: 16px;
}

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

.detail-list-card,
.service-detail-note {
  border: 1px solid rgba(7, 95, 214, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(37, 91, 145, .08);
  backdrop-filter: blur(12px);
}

.detail-list-card {
  padding: 30px;
}

.detail-list-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.detail-list-icon,
.detail-note-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--accent);
  background: #fff;
  font-size: 28px;
}

.detail-list-card h3,
.service-detail-note h3 {
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 760;
}

.detail-list-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list-card li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  color: #45556e;
  font-size: 16px;
  line-height: 1.45;
}

.detail-list-card li .lucide,
.detail-list-card li i {
  color: var(--accent);
  font-size: 19px;
  transform: translateY(2px);
}

.service-detail-note {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 32px;
  padding: 28px 32px;
}

.service-detail-note p {
  margin-top: 8px;
  font-size: 17px;
}

.service-side-nav {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 0;
  border: 1px solid rgba(7, 95, 214, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(37, 91, 145, .10);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.service-side-nav h3 {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
}

.service-side-nav a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 650;
}

.service-side-nav a:last-child {
  border-bottom: 0;
}

.service-side-nav a.is-active {
  color: var(--accent);
  background: rgba(7, 95, 214, .06);
}

.legal-page {
  width: min(980px, calc(100vw - 48px));
  margin-inline: auto;
  padding-top: 88px;
}

.legal-page h1 {
  max-width: 760px;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 500;
  line-height: .98;
}

.legal-page > p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
}

.legal-content {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.legal-content article {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 26px;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-content p,
.legal-content ul {
  margin-top: 12px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) repeat(2, minmax(160px, .55fr)) minmax(240px, .8fr);
  gap: 48px;
  padding: 76px 0 58px;
}

.site-footer .brand > span:last-child,
.site-footer h3,
.site-footer a,
.site-footer p,
.site-footer span {
  color: var(--ink);
}

.site-footer .brand-mark {
  color: var(--accent);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted);
}

.footer-brand > span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.footer-nav,
.footer-contact,
.socials {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-title {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.socials a {
  color: var(--muted);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer .footer-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: -1px;
  color: var(--accent);
}

.site-footer .footer-contact-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.footer-contact-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.footer-contact-copy span,
.footer-contact-copy small {
  color: var(--muted);
}

.footer-contact-copy small {
  font-size: 13px;
  line-height: 1.35;
  opacity: .82;
}

.footer-contact a.footer-contact-item:hover .footer-contact-copy span {
  color: var(--accent);
}

.footer-contact .footer-address {
  color: var(--muted);
  line-height: 1.6;
}

.socials:empty {
  display: none;
}

.footer-bottom {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-copyright {
  color: var(--muted);
}

.footer-bottom a,
.footer-business {
  color: var(--ink);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--muted);
}

.footer-legal a {
  color: var(--muted);
  font-weight: 650;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-credit {
  justify-self: end;
  color: var(--muted);
  white-space: nowrap;
}

.footer-credit a {
  font-weight: 800;
}

.footer-watermark {
  position: absolute;
  right: 0;
  bottom: -28px;
  color: rgba(7, 95, 214, .05);
  font-size: clamp(64px, 11vw, 170px);
  font-weight: 700;
  pointer-events: none;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}

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

@media (max-width: 1180px) {
  :root {
    --container-gutter: 48px;
  }

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

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero-copy {
    width: min(620px, calc(100vw - 96px));
  }

  .hero-orb,
  .hero-tech-note {
    display: none;
  }

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

  .services-showcase {
    display: block;
    padding-top: 86px;
    padding-bottom: 88px;
  }

  .services-showcase > .section-heading {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
    justify-items: center;
  }

  .services-showcase .section-index {
    margin-bottom: 20px;
  }

  .services-showcase > .section-heading h2 {
    max-width: 760px;
    font-size: clamp(46px, 7.2vw, 68px);
    line-height: .98;
  }

  .services-showcase > .section-heading p {
    max-width: 620px;
    font-size: 18px;
  }

  .services-showcase > .service-cards {
    grid-column: auto;
    grid-row: auto;
  }

  .services-showcase .service-cards {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 44px;
  }

  .services-showcase .service-card {
    min-height: 286px;
    padding: 30px 82px 32px 30px;
  }

  .services-showcase .service-card h3 {
    font-size: clamp(26px, 3.4vw, 31px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .services-showcase .service-card p {
    max-width: none;
  }

  .services-showcase > p {
    grid-column: auto;
    grid-row: auto;
    margin-top: 30px !important;
    text-align: center;
  }

  .services-showcase .services-link {
    justify-content: center;
  }

  .why-section,
  .transformation-section,
  .technology-section,
  .contact-layout,
  .appointment-panel,
  .services-page-hero,
  .about-story-hero,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .why-media {
    order: -1;
  }

  .why-media img {
    min-height: 460px;
    border-radius: 8px;
  }

  .service-side-nav {
    position: static;
  }

  .appointment-panel {
    width: min(940px, calc(100vw - 64px));
    min-height: 0;
    gap: 42px;
  }

  .appointment-copy {
    min-height: auto;
    display: block;
  }

  .appointment-copy-inner {
    padding: 48px 0 0;
  }

  .appointment-photo,
  .appointment-orb {
    display: none;
  }

  .contact-appointment .appointment-copy {
    min-height: 0;
  }

  .contact-appointment .appointment-copy-inner {
    padding-bottom: 0;
  }

  .services-page-hero,
  .about-story-hero {
    min-height: 0;
    gap: 48px;
    padding: 64px 32px 86px;
  }

  .services-hero-copy h1,
  .about-story-copy h1 {
    max-width: 760px;
  }

  .services-hero-media,
  .about-story-media {
    min-height: 520px;
  }

  .services-hero-media img,
  .about-story-media img {
    min-height: 520px;
    height: 520px;
    border-radius: 32px;
  }

  .about-story-media::before {
    display: none;
  }

  .story-founded-card {
    right: 28px;
    width: min(680px, calc(100% - 56px));
  }

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

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

  .reviews-section {
    padding-inline: 32px;
  }

  .reviews-section .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 240px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 54px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-credit {
    justify-self: auto;
  }

  .to-top {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 74px;
    --container-gutter: 32px;
  }

  .announcement-bar {
    display: none;
  }

  .announcement-inner {
    min-height: 0;
    padding: 8px 0;
  }

  .announcement-contact {
    gap: 4px 16px;
  }

  .announcement-item {
    min-height: 26px;
    font-size: 13px;
  }

  .site-header {
    min-height: var(--header-h);
    padding-inline: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .brand > span:last-child {
    font-size: 23px;
  }

  .home-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 50px 22px 0;
  }

  .home-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0 58%, rgba(255, 255, 255, .36) 100%);
  }

  .home-hero::after {
    left: -65vw;
    right: -65vw;
    bottom: -150px;
    height: 330px;
    min-height: 0;
  }

  .hero-media {
    position: relative;
    z-index: 0;
    order: 2;
    inset: auto;
    width: calc(100% + 44px);
    margin: 38px -22px 0;
    height: 360px;
    overflow: hidden;
    border-radius: 38px 38px 0 0;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-copy {
    order: 1;
    width: 100%;
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-copy .hero-subcopy {
    padding-left: 18px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 32px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
    min-width: 0;
    min-height: 58px;
    border-radius: 14px;
  }

  .hero-actions .btn-primary .icon {
    width: auto;
    height: auto;
    margin-right: 0;
    color: #fff;
    background: transparent;
  }

  .hero-proof {
    position: relative;
    left: auto;
    bottom: auto;
    order: 3;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
    padding: 0;
    transform: none;
  }

  .hero-proof.reveal,
  .hero-proof.reveal.is-visible {
    transform: none;
  }

  .trust-pill {
    min-height: 88px;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .trust-icon {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .trust-pill b {
    font-size: 22px;
  }

  .trust-pill small {
    font-size: 14px;
  }

  .quote-btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 54px;
    padding-inline: 20px;
  }

  .brand-strip {
    position: static;
    order: 3;
    grid-template-columns: 1fr;
    margin: 0 -22px;
  }

  .brand-strip > div {
    min-height: 78px;
    justify-content: flex-start;
    padding-inline: 22px;
    font-size: 17px;
  }

  .brand-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 68px 0;
  }

  .services-page-hero,
  .about-story-hero {
    padding: 54px 22px 70px;
  }

  .services-page-hero::before,
  .about-story-hero::before {
    left: -65vw;
    right: -65vw;
    bottom: -145px;
    height: 330px;
    min-height: 0;
  }

  .services-hero-copy h1,
  .about-story-copy h1 {
    margin-top: 18px;
    font-size: clamp(42px, 12vw, 58px);
  }

  .services-hero-copy p,
  .about-story-intro {
    margin-top: 20px;
    font-size: 17px;
  }

  .services-hero-media,
  .about-story-media {
    min-height: auto;
  }

  .services-hero-media img,
  .about-story-media img {
    height: 330px;
    min-height: 0;
    border-radius: 30px;
  }

  .services-hero-note,
  .story-founded-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 58px minmax(0, 1fr);
    margin-top: 16px;
    padding: 18px;
    border-radius: 20px;
  }

  .story-founded-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .story-founded-card .card-arrow {
    display: none;
  }

  .story-value-icon,
  .services-hero-note .service-icon {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }

  .services-hero-note b,
  .story-founded-card b {
    font-size: 20px;
  }

  .story-values {
    gap: 14px;
    margin-top: 28px;
  }

  .story-values article {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 0;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
  }

  .story-values h3 {
    font-size: 18px;
  }

  .story-values p {
    font-size: 14px;
  }

  .services-catalog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-catalog-grid .service-card {
    min-height: auto;
    padding: 28px 82px 30px 26px;
    border-radius: 22px;
  }

  .services-catalog-grid .service-card h3 {
    margin-top: 26px;
    font-size: 30px;
  }

  .services-catalog-grid .card-arrow {
    right: 22px;
    bottom: 22px;
  }

  .service-story p {
    font-size: 17px;
  }

  .service-detail-columns {
    gap: 18px;
  }

  .detail-list-card,
  .service-detail-note {
    border-radius: 20px;
  }

  .detail-list-card {
    padding: 22px;
  }

  .service-detail-note {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }

  .section-heading.split,
  .page-intro,
  .reviews-top,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .reviews-section {
    padding: 76px 22px 58px;
  }

  .reviews-section::before {
    left: -62vw;
    right: -62vw;
    bottom: -130px;
    height: 310px;
    min-height: 0;
  }

  .reviews-section::after {
    left: -70vw;
    right: -70vw;
    bottom: -82px;
    height: 210px;
    min-height: 0;
  }

  .reviews-top {
    gap: 30px;
  }

  .reviews-top .eyebrow {
    margin-bottom: 16px;
  }

  .reviews-top h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .reviews-top p {
    margin-top: 16px;
    font-size: 18px;
  }

  .google-rating {
    width: 100%;
    min-width: 0;
    justify-content: start;
    padding-bottom: 0;
  }

  .google-score {
    gap: 12px;
    flex-wrap: wrap;
  }

  .google-score b {
    font-size: 27px;
  }

  .google-note {
    justify-self: start;
    font-size: 16px;
  }

  .reviews-section .review-grid {
    gap: 18px;
    margin-top: 38px;
  }

  .review-card {
    min-height: 250px;
    padding: 26px 24px 30px;
    border-radius: 20px;
  }

  .review-card::before {
    top: 26px;
    left: 24px;
    width: 78px;
    height: 78px;
  }

  .review-card .quote-icon {
    top: 26px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .review-meta {
    min-height: 78px;
    gap: 10px;
    padding: 0 52px 0 96px;
  }

  .review-meta b {
    font-size: 22px;
  }

  .stars {
    gap: 4px;
    font-size: 19px;
  }

  .review-card p {
    margin-top: 24px;
    font-size: 17px;
  }

  .section-heading h2,
  .why-copy h2,
  .contact-copy h1,
  .contact-copy h2,
  .page-intro h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .service-cards,
  .service-cards.five,
  .team-grid,
  .review-grid,
  .benefit-row,
  .timeline,
  .service-points {
    grid-template-columns: 1fr;
  }

  .team-section .section-heading {
    gap: 8px;
  }

  .team-section .section-heading h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .team-section .blue-rule {
    margin: 8px 0 4px;
  }

  .why-trust {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
  }

  .team-section .team-grid {
    gap: 20px;
    margin-top: 32px;
  }

  .team-card {
    border-radius: 16px;
  }

  .team-photo {
    aspect-ratio: 1.18 / 1;
  }

  .team-icon {
    left: 24px;
    bottom: -27px;
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .team-info {
    padding: 42px 26px 28px;
  }

  .team-card h3 {
    font-size: 29px;
  }

  .transformation-section .why-copy h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .transformation-trust {
    margin: 30px 0;
  }

  .transformation-trust article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    min-height: 100px;
    padding: 18px;
    border-radius: 18px;
  }

  .trust-step-icon {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .transformation-trust h3 {
    font-size: 20px;
  }

  .transformation-trust p {
    font-size: 15px;
  }

  .services-showcase {
    display: block;
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .services-showcase::before {
    top: 0;
    right: calc(50% - 50vw);
    bottom: 0;
    left: calc(50% - 50vw);
    height: auto;
    opacity: 1;
  }

  .services-showcase::after {
    bottom: -160px;
    height: 260px;
  }

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

  .services-showcase .section-index {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .services-showcase > .section-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: .98;
  }

  .services-showcase > .section-heading p {
    max-width: 100%;
    font-size: 17px;
  }

  .services-showcase .service-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .services-showcase .service-card {
    min-height: auto;
    padding: 28px 82px 30px 26px;
    border-radius: 22px;
  }

  .services-showcase .service-card h3 {
    margin-top: 26px;
    font-size: 30px;
  }

  .services-showcase .card-arrow {
    right: 22px;
    bottom: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 32px 28px;
  }

  .why-section,
  .transformation-section,
  .technology-section,
  .contact-layout {
    gap: 42px;
  }

  .benefit-row article,
  .benefit-row article:first-child {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 22px;
  }

  .before-after,
  .technology-media img {
    min-height: 320px;
  }

  .before-after {
    height: 430px;
  }

  .ba-handle {
    width: 50px;
    height: 50px;
    font-size: 23px;
  }

  .ba-labels span {
    min-height: 58px;
    font-size: 16px;
  }

  .appointment-section {
    padding: 56px 0 64px;
  }

  .appointment-panel {
    width: min(100% - 32px, 760px);
    gap: 34px;
    padding: 32px 18px 18px;
    border-radius: 26px;
  }

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

  .appointment-copy {
    min-height: auto;
    display: block;
  }

  .appointment-brand {
    gap: 14px;
    padding-left: 4px;
  }

  .appointment-brand .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 38px;
  }

  .appointment-brand b {
    font-size: 26px;
  }

  .appointment-brand small {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: .28em;
  }

  .appointment-copy-inner {
    max-width: none;
    padding: 50px 0 28px;
  }

  .contact-appointment .appointment-copy-inner {
    padding: 12px 0 0;
  }

  .appointment-copy h1,
  .appointment-copy h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .appointment-copy p {
    max-width: 100%;
    font-size: 17px;
  }

  .contact-info-list {
    width: 100%;
    margin-top: 26px;
  }

  .contact-info-item {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 78px;
    padding: 16px;
    border-radius: 14px;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
  }

  .contact-info-icon svg {
    width: 23px;
    height: 23px;
  }

  .appointment-photo {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: 260px;
    margin: 4px -18px 0;
    border-radius: 0;
  }

  .appointment-orb {
    right: 20px;
    bottom: 204px;
    width: 74px;
    height: 74px;
    font-size: 32px;
  }

  .appointment-card {
    padding: 26px 18px 22px;
    border-radius: 22px;
  }

  .appointment-card-head {
    gap: 16px;
    margin-bottom: 26px;
  }

  .appointment-head-icon {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }

  .appointment-card h2 {
    font-size: 24px;
  }

  .appointment-card-head p {
    font-size: 15px;
  }

  .appointment-form,
  .appointment-contact {
    grid-template-columns: 1fr;
  }

  .appointment-contact {
    gap: 18px;
  }

  .appointment-contact a,
  .appointment-contact div {
    min-height: 58px;
    padding: 0;
  }

  .appointment-contact a + a,
  .appointment-contact div {
    border-left: 0;
  }

  .appointment-divider {
    gap: 14px;
    margin: 30px 0 22px;
    font-size: 12px;
    letter-spacing: .11em;
  }

  .contact-card {
    padding: 24px;
  }

  .page-hero {
    min-height: 360px;
    padding-inline: 22px;
  }

  .page-hero h1 {
    width: 100%;
    font-size: clamp(38px, 11vw, 54px);
  }

  .mobile-panel {
    padding: 22px;
  }

  .mobile-panel nav {
    margin: 52px 0 24px;
    font-size: 28px;
  }

  .mobile-menu-contact {
    padding-top: 24px;
  }

  .mobile-menu-contact-item {
    font-size: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-credit {
    justify-self: auto;
    white-space: normal;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .to-top {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

.reviews-section .stars {
  display: none;
}
