:root {
  --forest: #0c4f7a;
  --forest-deep: #062f4e;
  --sage: #4bb5dc;
  --sage-soft: #d9f2fc;
  --sage-pale: #ebf8fe;
  --cream: #f2faff;
  --paper: #ffffff;
  --ink: #0b3452;
  --muted: #647c8e;
  --line: rgba(12, 79, 122, 0.14);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 70px rgba(6, 47, 78, 0.13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #e5b95d;
  outline-offset: 3px;
}

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

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

h1,
h2,
h3 {
  font-family: "Onest", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.1vw, 4.35rem);
  line-height: 1.02;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--forest);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.topline {
  position: relative;
  z-index: 31;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topline__inner {
  display: flex;
  align-items: center;
  min-height: 36px;
  gap: 22px;
}

.topline__inner a {
  margin-left: auto;
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 254, 250, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(15, 47, 42, 0.06);
}

.site-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 42px;
  height: 42px;
  fill: var(--forest);
}

.brand__spark {
  fill: none;
  stroke: var(--cream);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-family: "Onest", sans-serif;
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
  margin-right: clamp(18px, 3vw, 42px);
  color: #3f5853;
  font-size: 0.84rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch__button {
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
}

.lang-switch__button.is-active {
  background: var(--forest);
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #215249;
  box-shadow: 0 12px 26px rgba(24, 63, 56, 0.2);
}

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 42px;
  padding: 0 20px;
}

.button--large {
  min-height: 58px;
  padding: 0 26px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 0;
  background:
    radial-gradient(circle at 7% 14%, rgba(127, 159, 143, 0.11), transparent 30%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 48px;
  left: max(20px, calc((100vw - 1180px) / 2 - 110px));
  width: 90px;
  height: 90px;
  border: 1px solid rgba(24, 63, 56, 0.1);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
  min-height: 616px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 42px 0 76px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #82a893;
  box-shadow: 0 0 0 5px rgba(130, 168, 147, 0.16);
}

.hero h1 {
  max-width: 620px;
  margin: 29px 0 24px;
  font-size: clamp(3.2rem, 6.3vw, 6rem);
  line-height: 0.92;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 8px;
  height: 8px;
  border-top: 2px solid #d9ae5b;
  border-radius: 50%;
  content: "";
  transform: rotate(-2deg);
}

.hero__lead {
  max-width: 555px;
  margin-bottom: 30px;
  color: #576b67;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-link__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  transition: background 0.25s ease, color 0.25s ease;
}

.text-link:hover .text-link__icon {
  background: var(--sage-pale);
}

.text-link span:last-child {
  display: grid;
}

.text-link small {
  color: var(--muted);
  font-size: 0.68rem;
}

.text-link strong {
  margin-top: 1px;
  font-size: 0.92rem;
}

.hero__note {
  margin: 20px 0 0;
  color: #81908c;
  font-size: 0.71rem;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 580px;
  overflow: hidden;
  border-radius: 3px 3px 0 var(--radius-lg);
  background: var(--sage-pale);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(22, 48, 44, 0.06), transparent 35%, rgba(14, 47, 42, 0.08));
  content: "";
  pointer-events: none;
}

.hero__visual picture,
.hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: 58% center;
}

.hero__badge {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 155px;
  min-height: 80px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 250, 0.84);
  box-shadow: 0 12px 32px rgba(24, 63, 56, 0.12);
  backdrop-filter: blur(14px);
}

.hero__badge strong {
  color: var(--forest);
  font-family: "Onest", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.hero__badge span {
  color: #5d706c;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero__availability {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bce5ca;
}

.pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid #bce5ca;
  border-radius: inherit;
  content: "";
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.9; transform: scale(0.6); }
  80%, 100% { opacity: 0; transform: scale(1.6); }
}

.trust-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -2px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 106px;
  padding: 20px 26px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--forest);
  font-family: "Onest", sans-serif;
  font-size: 2.15rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.trust-item span {
  max-width: 105px;
  color: #667773;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
}

.section {
  padding: clamp(92px, 10vw, 148px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 70px;
}

.section-heading h2 {
  max-width: 760px;
  margin-top: 20px;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 345px;
  padding: 30px 30px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.35s ease, transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--sage-pale);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card--accent {
  background: var(--forest);
  color: #fff;
}

.service-card--accent:hover {
  background: #215249;
}

.service-card__number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #95a29f;
  font-size: 0.7rem;
  font-weight: 700;
}

.service-card__icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest);
}

.service-card--accent .service-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.33rem;
  letter-spacing: -0.035em;
}

.service-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.65;
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card > a {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.71rem;
  font-weight: 700;
}

.service-card--accent > a {
  border-color: var(--white-line);
}

.service-card > a b {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.service-card > a:hover b {
  transform: translate(2px, -2px);
}

.approach {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.approach::before {
  position: absolute;
  top: -210px;
  left: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.013);
}

.approach__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.85fr);
  gap: clamp(70px, 10vw, 150px);
}

.section-kicker--light {
  color: #bfd6c9;
}

.approach h2 {
  max-width: 620px;
  margin-top: 22px;
}

.approach__intro > p {
  max-width: 520px;
  margin: 30px 0 52px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  line-height: 1.8;
}

.approach__quote {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  max-width: 480px;
  padding-top: 25px;
  border-top: 1px solid var(--white-line);
}

.approach__quote > span {
  color: #dcb766;
  font-family: Georgia, serif;
  font-size: 3.8rem;
  line-height: 0.9;
}

.approach__quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, serif;
  font-size: 1.07rem;
  font-style: italic;
  line-height: 1.6;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 23px;
  padding: 33px 0;
  border-bottom: 1px solid var(--white-line);
}

.steps li:first-child {
  padding-top: 7px;
}

.steps > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #c8d9d0;
  font-size: 0.66rem;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.65;
}

.specialists {
  background: var(--cream);
}

.specialists__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.68fr);
  align-items: stretch;
  gap: clamp(50px, 8vw, 112px);
}

.specialists__content h2 {
  max-width: 740px;
  margin-top: 22px;
}

.specialists__content > p {
  max-width: 650px;
  margin: 27px 0 34px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.78;
}

.specialist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
}

.specialist-tags li {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.73rem;
  font-weight: 600;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
}

.arrow-link b {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.arrow-link:hover b {
  transform: translateX(4px);
}

.finance-card {
  min-height: 500px;
  border-radius: 2px 2px var(--radius-lg) 2px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(24, 63, 56, 0.08);
}

.finance-card__top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 255px;
  padding: 32px;
  overflow: hidden;
  background: var(--sage-soft);
}

.finance-card__top::after {
  position: absolute;
  top: -75px;
  right: -45px;
  width: 235px;
  height: 235px;
  border: 1px solid rgba(24, 63, 56, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 45px rgba(24, 63, 56, 0.025), 0 0 0 90px rgba(24, 63, 56, 0.018);
}

.finance-card__top > span {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 32px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.finance-card__top strong {
  position: relative;
  z-index: 1;
  font-family: "Onest", sans-serif;
  font-size: clamp(4.8rem, 8vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.finance-card__top small {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 600;
}

.finance-card__bottom {
  padding: 33px 32px 36px;
}

.finance-card__bottom h3 {
  margin-bottom: 12px;
  font-size: 1.33rem;
}

.finance-card__bottom p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.67;
}

.finance-card__bottom a {
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
}

.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(450px, 1fr);
  gap: clamp(60px, 10vw, 140px);
}

.faq__heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq__heading h2 {
  margin-top: 20px;
}

.faq__heading p {
  max-width: 340px;
  margin: 23px 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.faq__heading > a {
  display: inline-flex;
  gap: 18px;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 700;
}

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

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

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 90px;
  cursor: pointer;
  font-family: "Onest", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  list-style: none;
}

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

.accordion summary i {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion summary i::before,
.accordion summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.accordion summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details > p {
  max-width: 680px;
  margin: -5px 60px 28px 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
}

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

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.7fr);
  min-height: 540px;
  background: var(--cream);
}

.contact-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: saturate(0.55) sepia(0.08) hue-rotate(92deg) contrast(0.92);
}

.map-button {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 200px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(24, 63, 56, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-info {
  padding: 58px clamp(32px, 5vw, 70px);
}

.contact-info h2 {
  margin: 19px 0 38px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-row > span {
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-row strong {
  font-size: 0.81rem;
  font-weight: 600;
  line-height: 1.65;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.social-links a {
  display: inline-flex;
  gap: 13px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
}

.app-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 126px) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(75, 181, 220, 0.2), transparent 31%),
    linear-gradient(145deg, var(--sage-pale), var(--paper) 58%, var(--cream));
}

.app-section::before,
.app-section::after {
  position: absolute;
  border: 1px solid rgba(12, 79, 122, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.app-section::before {
  top: -180px;
  right: -120px;
  width: 440px;
  height: 440px;
}

.app-section::after {
  top: -110px;
  right: -50px;
  width: 300px;
  height: 300px;
}

.app-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.app-section__copy h2 {
  max-width: 760px;
  margin: 20px 0 28px;
}

.app-section__copy h2 em {
  color: var(--forest);
  font-style: normal;
}

.app-section__copy > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.app-section__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 36px;
}

.button--app {
  min-height: 56px;
  border: 0;
  cursor: pointer;
}

.button--app:disabled {
  cursor: default;
  opacity: 0.72;
}

.app-section__download {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
}

.app-section__hint {
  min-height: 24px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.qr-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.9fr) minmax(140px, 0.72fr);
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.qr-card__image {
  overflow: hidden;
  border: 10px solid var(--paper);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(6, 47, 78, 0.1);
}

.qr-card__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card figcaption {
  display: grid;
  gap: 8px;
}

.qr-card figcaption span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qr-card figcaption strong {
  font-family: "Onest", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.qr-card figcaption small {
  overflow-wrap: anywhere;
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 700;
}

.booking {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 138px) 0;
  background: var(--forest-deep);
  color: #fff;
}

.booking::after {
  position: absolute;
  right: -120px;
  bottom: -280px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.012), 0 0 0 160px rgba(255, 255, 255, 0.009);
}

.booking__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.booking__copy h2 {
  max-width: 600px;
  margin: 22px 0 25px;
}

.booking__copy > p {
  max-width: 480px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.91rem;
  line-height: 1.75;
}

.booking__phone {
  display: block;
  font-family: "Onest", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1;
}

.booking__phone span {
  color: #8fb39f;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 22px;
  padding-top: 7px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  height: 58px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  background: transparent;
  color: white;
  outline: 0;
  transition: border-color 0.2s ease;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field input:focus,
.field select:focus {
  border-color: #c9e1d3;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 15px) 26px, calc(100% - 10px) 26px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field select option {
  background: var(--forest-deep);
}

.field__error {
  min-height: 15px;
  color: #f2b9a8;
  font-size: 0.64rem;
}

.field.has-error input {
  border-color: #f2b9a8;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-size: 0.66rem;
  line-height: 1.55;
}

.consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #a9c8b6;
}

.button--light {
  background: var(--cream);
  color: var(--forest);
}

.button--light:hover {
  background: #fff;
}

.button--form {
  width: 100%;
  min-height: 58px;
  margin-top: 3px;
}

.form-note {
  margin: -13px 0 0;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 0.62rem;
}

.footer {
  padding: 60px 0 28px;
  background: var(--paper);
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand--footer .brand__mark {
  width: 38px;
  height: 38px;
}

.footer__nav {
  display: flex;
  gap: 27px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.footer__phone {
  justify-self: end;
  font-family: "Onest", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #899692;
  font-size: 0.62rem;
}

.floating-action {
  position: fixed;
  z-index: 50;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(5, 75, 116, 0.16);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(5, 63, 98, 0.16);
  font-family: "Onest", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-action:hover {
  box-shadow: 0 16px 34px rgba(5, 63, 98, 0.22);
  transform: translateY(-3px);
}

.floating-whatsapp {
  left: 18px;
  background: #21b66f;
  color: #fff;
}

.floating-top {
  right: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #07527e;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 15px 18px;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: var(--shadow);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal--delay {
  transition-delay: 0.12s;
}

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

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 34px, 920px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: var(--forest);
    transition: transform 0.25s ease;
  }

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

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

  .mobile-nav {
    position: absolute;
    z-index: 1;
    inset: 100% 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 20px 35px rgba(24, 63, 56, 0.09);
    opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.25s ease;
  }

  .mobile-nav.is-open {
    max-height: 460px;
    opacity: 1;
  }

  .mobile-nav a {
    width: var(--shell);
    margin-inline: auto;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
    min-height: 570px;
  }

  .hero__visual {
    min-height: 540px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .approach__grid,
  .specialists__grid,
  .booking__grid {
    gap: 65px;
  }

  .approach__grid {
    grid-template-columns: 1fr 0.85fr;
  }

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

  .app-section__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
    gap: 44px;
  }

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

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

  .footer__nav {
    display: none;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 28px);
  }

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

  body {
    padding-bottom: 0;
  }

  .topline__inner {
    min-height: 32px;
  }

  .topline__hours {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-header .button--small {
    display: none;
  }

  .brand__mark {
    width: 37px;
    height: 37px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

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

  .hero {
    padding-top: 25px;
  }

  .hero::before {
    display: none;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }

  .hero__content {
    padding: 26px 0 44px;
  }

  .hero h1 {
    margin: 23px 0 22px;
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .hero__actions {
    gap: 20px;
  }

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

  .hero__note {
    margin-top: 18px;
  }

  .hero__visual {
    width: 100%;
    min-height: 480px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .hero__visual img {
    object-position: 62% center;
  }

  .hero__badge {
    top: 17px;
    right: 17px;
  }

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

  .trust-item {
    min-height: 92px;
    padding: 15px 16px;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .trust-item strong {
    font-size: 1.75rem;
  }

  .trust-item span {
    font-size: 0.63rem;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading,
  .approach__grid,
  .specialists__grid,
  .faq__grid,
  .contact-section__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 45px;
  }

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

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

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

  .service-card__icon {
    margin-bottom: 38px;
  }

  .approach__grid {
    gap: 65px;
  }

  .approach__intro > p {
    margin-bottom: 38px;
  }

  .specialists__grid {
    gap: 55px;
  }

  .finance-card {
    min-height: 0;
  }

  .faq__grid {
    gap: 45px;
  }

  .faq__heading {
    position: static;
  }

  .accordion summary {
    min-height: 78px;
  }

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

  .contact-section__grid {
    width: 100%;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 400px;
  }

  .contact-info {
    padding: 55px 24px;
  }

  .app-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .app-section__copy h2 {
    font-size: clamp(2.55rem, 13vw, 4.5rem);
  }

  .app-section__actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .app-section__download {
    align-self: flex-start;
  }

  .qr-card {
    grid-template-columns: minmax(0, 0.86fr) minmax(130px, 0.6fr);
    gap: 18px;
    padding: 18px;
    border-radius: var(--radius-md);
  }

  .qr-card__image {
    border-width: 7px;
    border-radius: 16px;
  }

  .booking__grid {
    gap: 58px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .footer {
    padding-bottom: 40px;
  }

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

  .footer__phone {
    justify-self: start;
  }

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

  .toast {
    right: 14px;
    bottom: 78px;
    left: 14px;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .topline__inner {
    gap: 8px;
    font-size: 0.64rem;
  }

  .topline__inner a {
    font-size: 0.62rem;
  }

  .hero__visual {
    min-height: 420px;
  }

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

  .qr-card__image {
    width: min(100%, 270px);
    margin-inline: auto;
  }

  .qr-card figcaption {
    text-align: center;
  }

  .hero__badge {
    width: 140px;
  }

  .hero__availability {
    right: 14px;
    bottom: 14px;
  }

  .trust-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contact-row {
    grid-template-columns: 80px 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* ---------- Light-blue visual redesign ---------- */

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline-color: #65c8ea;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(6, 47, 78, 0.08);
}

.desktop-nav {
  color: #3d617a;
}

.button:hover {
  background: #0a679b;
}

.hero {
  background:
    radial-gradient(circle at 9% 13%, rgba(91, 190, 226, 0.2), transparent 30%),
    linear-gradient(145deg, #fafdff 0%, #eef9ff 58%, #e2f5fe 100%);
}

.hero::before {
  border-color: rgba(75, 181, 220, 0.22);
  box-shadow: 0 0 0 28px rgba(75, 181, 220, 0.035);
}

.eyebrow__dot {
  background: #67c4e6;
  box-shadow: 0 0 0 5px rgba(103, 196, 230, 0.2);
}

.hero h1 em::after {
  border-color: #74cbe9;
}

.hero__lead {
  color: #58758a;
}

.hero__note {
  color: #7b94a6;
}

.hero__visual {
  border-radius: 34px 34px 0 34px;
  background: #dff4fc;
  box-shadow: 0 30px 70px rgba(7, 79, 120, 0.14);
}

.hero__visual::after {
  background: linear-gradient(110deg, rgba(15, 95, 139, 0.08), transparent 42%, rgba(10, 70, 108, 0.07));
}

.hero__badge {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(6, 47, 78, 0.12);
}

.hero__badge span {
  color: #5e788a;
}

.pulse {
  background: #8be0f1;
}

.pulse::after {
  border-color: #8be0f1;
}

.trust-bar {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.trust-item span {
  color: #657f91;
}

.services {
  overflow: hidden;
  background: #f5fbff;
}

.mobile-section-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin: -17px 0 16px;
  color: var(--forest);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-section-hint b {
  font-size: 1.2rem;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 16px;
}

.service-showcase .service-card {
  position: relative;
  display: flex;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(6, 47, 78, 0.08);
  isolation: isolate;
  transform: translateZ(0);
}

.service-showcase .service-card:hover {
  background: inherit;
  box-shadow: 0 28px 60px rgba(6, 47, 78, 0.14);
  transform: translateY(-5px);
}

.service-showcase .service-card--photo {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  color: #fff;
}

.service-showcase .service-card--sky {
  grid-column: 8 / 13;
  grid-row: 1;
  background: linear-gradient(135deg, #caeffc 0%, #e8f8fe 100%);
}

.service-showcase .service-card--aqua {
  grid-column: 8 / 13;
  grid-row: 2;
  background: linear-gradient(135deg, #b9eced 0%, #ddf9f5 100%);
}

.service-showcase .service-card--ice {
  grid-column: 1 / 5;
  grid-row: 3;
  background: linear-gradient(145deg, #dcefff, #f4faff);
}

.service-showcase .service-card--white {
  grid-column: 5 / 9;
  grid-row: 3;
  background: #fff;
}

.service-showcase .service-card--kids {
  grid-column: 9 / 13;
  grid-row: 3;
  background: linear-gradient(145deg, #ffe7dc, #fff5ef);
}

.service-card__media {
  position: absolute;
  inset: 0;
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 45, 72, 0.02) 28%, rgba(3, 45, 72, 0.83) 100%);
  content: "";
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transition: transform 0.8s var(--ease);
}

.service-card--with-photo:hover .service-card__media img {
  transform: scale(1.035);
}

.service-showcase .service-card__number {
  z-index: 3;
  top: 22px;
  right: 24px;
  color: rgba(11, 52, 82, 0.48);
}

.service-showcase .service-card--with-photo .service-card__number {
  color: rgba(255, 255, 255, 0.78);
}

.service-card__art {
  position: absolute;
  z-index: 0;
  top: -29%;
  right: -5%;
  display: grid;
  width: 58%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(12, 79, 122, 0.09);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.13);
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card__art {
  transform: rotate(6deg) scale(1.04);
}

.service-card__art svg {
  width: 35%;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__art--sparkle svg {
  fill: rgba(12, 79, 122, 0.04);
}

.service-card__body {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: 100%;
  padding: 25px 26px 23px;
}

.service-card--photo .service-card__body {
  padding: 34px 36px 32px;
}

.service-card__chip {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.service-showcase .service-card h3 {
  max-width: 340px;
  margin-bottom: 7px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.service-showcase .service-card--photo h3 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.service-showcase .service-card p {
  max-width: 380px;
  margin-bottom: 18px;
  color: #607d90;
  font-size: 0.78rem;
  line-height: 1.5;
}

.service-showcase .service-card--photo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.service-showcase .service-card--with-photo {
  color: #fff;
  background: #0b456c;
}

.service-showcase .service-card--with-photo h3,
.service-showcase .service-card--with-photo p,
.service-showcase .service-card--with-photo .service-card__body > a {
  color: #fff;
}

.service-showcase .service-card--with-photo p {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 12px rgba(3, 32, 52, 0.24);
}

.service-showcase .service-card--with-photo h3 {
  text-shadow: 0 2px 20px rgba(3, 32, 52, 0.34);
}

.service-card--with-photo .service-card__media::after {
  background: linear-gradient(180deg, rgba(3, 38, 61, 0.02) 18%, rgba(3, 38, 61, 0.25) 48%, rgba(3, 38, 61, 0.94) 100%);
}

.service-card--sky .service-card__media img,
.service-card--aqua .service-card__media img,
.service-card--ice .service-card__media img,
.service-card--white .service-card__media img,
.service-card--kids .service-card__media img {
  object-position: center center;
}

.service-showcase .service-card__body > a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.69rem;
  font-weight: 800;
}

.service-showcase .service-card__body > a b {
  transition: transform 0.25s ease;
}

.service-showcase .service-card__body > a:hover b {
  transform: translate(2px, -2px);
}

.approach {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.8), transparent 31%),
    linear-gradient(135deg, #e7f7ff 0%, #cceefe 100%);
}

.approach::before {
  display: none;
}

.approach__heading,
.specialists__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.52fr);
  align-items: end;
  gap: 48px;
}

.approach__heading .section-kicker,
.specialists__heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.approach__heading h2,
.specialists__heading h2 {
  max-width: 770px;
  margin: 0;
}

.approach__heading > p,
.specialists__heading > p {
  margin: 0 0 7px;
  color: #59778b;
  font-size: 0.92rem;
  line-height: 1.7;
}

.section-kicker--light {
  color: var(--forest);
}

.approach__canvas {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  margin-top: 58px;
}

.approach__visual {
  position: relative;
  min-height: 565px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #d5f0fc;
  box-shadow: 0 24px 65px rgba(6, 47, 78, 0.1);
}

.approach__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach__visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 13px 16px 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.approach__visual figcaption b {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.65rem;
}

.journey {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 65px rgba(6, 47, 78, 0.08);
  backdrop-filter: blur(12px);
}

.journey .steps {
  display: grid;
  gap: 12px;
}

.journey .steps li,
.journey .steps li:first-child {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 126px;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(12, 79, 122, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.journey .steps li:nth-child(2) {
  background: #e7f7fd;
}

.journey .steps > li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.65rem;
}

.journey .steps h3 {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.12rem;
}

.journey .steps p {
  margin: 0;
  color: #698294;
  font-size: 0.78rem;
  line-height: 1.5;
}

.button--approach {
  align-self: flex-start;
  min-height: 54px;
  margin-top: auto;
  padding: 0 23px;
}

.specialists {
  background: #f7fcff;
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 18px;
  margin-top: 58px;
}

.team-orbit {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.74) 0 23%, transparent 23.5%),
    linear-gradient(135deg, #dff5ff, #bfe8fa);
  box-shadow: 0 24px 65px rgba(6, 47, 78, 0.09);
}

.team-orbit::before,
.team-orbit::after {
  position: absolute;
  top: 48%;
  left: 50%;
  border: 1px solid rgba(12, 79, 122, 0.11);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.team-orbit::before {
  width: 410px;
  height: 410px;
}

.team-orbit::after {
  width: 590px;
  height: 590px;
}

.team-orbit__center {
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 50%;
  display: grid;
  width: 185px;
  height: 185px;
  padding: 25px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 22px 50px rgba(6, 47, 78, 0.14);
  text-align: center;
  transform: translate(-50%, -50%);
}

.team-orbit__center svg {
  width: 42px;
  height: 42px;
  fill: #d9f2fc;
  stroke: var(--forest);
  stroke-width: 1.25;
}

.team-orbit__center strong {
  margin: -8px 0 -10px;
  color: var(--forest);
  font-family: "Onest", sans-serif;
  font-size: 4.25rem;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.team-orbit__center span {
  max-width: 105px;
  color: #698295;
  font-size: 0.61rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-orbit .specialist-tags {
  position: absolute;
  z-index: 3;
  inset: 0;
  max-width: none;
  margin: 0;
  pointer-events: none;
}

.team-orbit .specialist-tags li {
  position: absolute;
  padding: 10px 15px;
  border: 1px solid rgba(12, 79, 122, 0.09);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(6, 47, 78, 0.09);
  color: var(--forest);
  font-size: 0.69rem;
  white-space: nowrap;
}

.team-orbit .specialist-tags li:nth-child(1) { top: 9%; left: 8%; }
.team-orbit .specialist-tags li:nth-child(2) { top: 9%; right: 8%; }
.team-orbit .specialist-tags li:nth-child(3) { top: 34%; left: 3%; }
.team-orbit .specialist-tags li:nth-child(4) { top: 34%; right: 3%; }
.team-orbit .specialist-tags li:nth-child(5) { bottom: 28%; left: 5%; }
.team-orbit .specialist-tags li:nth-child(6) { right: 5%; bottom: 28%; }
.team-orbit .specialist-tags li:nth-child(7) { bottom: 10%; left: 14%; }
.team-orbit .specialist-tags li:nth-child(8) { right: 12%; bottom: 10%; }

.team-orbit .arrow-link {
  position: absolute;
  z-index: 4;
  bottom: 27px;
  left: 50%;
  border: 0;
  border-radius: 999px;
  padding: 12px 17px;
  background: var(--forest);
  color: #fff;
  transform: translateX(-50%);
  white-space: nowrap;
}

.finance-card--visual {
  min-height: 565px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 65px rgba(6, 47, 78, 0.09);
}

.finance-card--visual .finance-card__top {
  min-height: 330px;
  background: linear-gradient(155deg, #bceafb, #ddf5fe);
}

.finance-card--visual .finance-card__top::after {
  border-color: rgba(12, 79, 122, 0.14);
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.16), 0 0 0 90px rgba(255, 255, 255, 0.1);
}

.finance-card--visual .finance-card__top strong {
  color: var(--forest-deep);
}

.finance-card--visual .finance-card__bottom {
  padding: 30px 30px 34px;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #72c6e6;
}

.booking-form input[type="checkbox"] {
  accent-color: var(--sage);
}

.footer__bottom {
  color: #7e95a6;
}

@media (max-width: 1040px) {
  .service-showcase {
    grid-auto-rows: 225px;
  }

  .approach__canvas {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  }

  .approach__visual,
  .journey,
  .team-orbit,
  .finance-card--visual {
    min-height: 530px;
  }

  .journey {
    padding: 22px;
  }

  .care-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(285px, 0.65fr);
  }

  .team-orbit .specialist-tags li:nth-child(3),
  .team-orbit .specialist-tags li:nth-child(5) {
    left: 2%;
  }

  .team-orbit .specialist-tags li:nth-child(4),
  .team-orbit .specialist-tags li:nth-child(6) {
    right: 2%;
  }
}

@media (max-width: 780px) {
  .hero {
    background: linear-gradient(165deg, #fafdff 0%, #e5f7ff 100%);
  }

  .hero__visual {
    aspect-ratio: 1586 / 992;
    min-height: 0;
    border-radius: 26px;
    box-shadow: 0 24px 55px rgba(6, 47, 78, 0.12);
  }

  .hero__visual picture {
    position: absolute;
    inset: 0;
  }

  .hero__visual img {
    object-position: 61% center;
  }

  .services .section-heading {
    margin-bottom: 32px;
  }

  .services .section-heading > p,
  .specialists__heading > p {
    display: none;
  }

  .mobile-section-hint {
    display: flex;
  }

  .service-showcase {
    display: grid;
    grid-auto-columns: minmax(278px, 82vw);
    grid-auto-flow: column;
    grid-auto-rows: 385px;
    grid-template-columns: none;
    gap: 12px;
    margin-right: -14px;
    padding: 2px 14px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .service-showcase::-webkit-scrollbar,
  .journey .steps::-webkit-scrollbar {
    display: none;
  }

  .service-showcase .service-card,
  .service-showcase .service-card--photo,
  .service-showcase .service-card--sky,
  .service-showcase .service-card--aqua,
  .service-showcase .service-card--ice,
  .service-showcase .service-card--white,
  .service-showcase .service-card--kids {
    grid-column: auto;
    grid-row: auto;
    min-height: 385px;
    scroll-snap-align: start;
  }

  .service-card__art {
    top: -6%;
    right: -8%;
    width: 87%;
  }

  .service-card__body,
  .service-card--photo .service-card__body {
    padding: 26px 24px 25px;
  }

  .service-showcase .service-card h3 {
    max-width: 240px;
    font-size: 1.55rem;
  }

  .service-showcase .service-card--photo h3 {
    font-size: 2.55rem;
  }

  .service-card__media img {
    object-position: 58% center;
  }

  .approach__heading,
  .specialists__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .approach__heading .section-kicker,
  .specialists__heading .section-kicker {
    grid-column: auto;
    margin-bottom: -5px;
  }

  .approach__heading > p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .approach__canvas {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 35px;
  }

  .approach__visual {
    min-height: 345px;
  }

  .approach__visual img {
    object-position: center 44%;
  }

  .approach__visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 56px;
  }

  .journey {
    min-height: 0;
    padding: 22px 18px 20px;
    border-radius: 25px;
  }

  .journey .mobile-section-hint {
    margin: 0 0 12px;
  }

  .journey .steps {
    display: grid;
    grid-auto-columns: 78vw;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    margin-right: -18px;
    padding: 1px 18px 7px 0;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .journey .steps li,
  .journey .steps li:first-child {
    min-height: 142px;
    scroll-snap-align: start;
  }

  .button--approach {
    width: 100%;
    margin-top: 14px;
  }

  .care-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 35px;
  }

  .team-orbit {
    min-height: 455px;
  }

  .team-orbit::before {
    width: 300px;
    height: 300px;
  }

  .team-orbit::after {
    width: 435px;
    height: 435px;
  }

  .team-orbit__center {
    width: 145px;
    height: 145px;
    padding: 18px;
  }

  .team-orbit__center svg {
    width: 34px;
    height: 34px;
  }

  .team-orbit__center strong {
    font-size: 3.25rem;
  }

  .team-orbit__center span {
    font-size: 0.52rem;
  }

  .team-orbit .specialist-tags li {
    padding: 8px 10px;
    font-size: 0.57rem;
  }

  .team-orbit .specialist-tags li:nth-child(1) { top: 8%; left: 5%; }
  .team-orbit .specialist-tags li:nth-child(2) { top: 8%; right: 5%; }
  .team-orbit .specialist-tags li:nth-child(3) { top: 29%; left: 2%; }
  .team-orbit .specialist-tags li:nth-child(4) { top: 29%; right: 2%; }
  .team-orbit .specialist-tags li:nth-child(5) { bottom: 28%; left: 2%; }
  .team-orbit .specialist-tags li:nth-child(6) { right: 2%; bottom: 28%; }
  .team-orbit .specialist-tags li:nth-child(7) { bottom: 12%; left: 4%; }
  .team-orbit .specialist-tags li:nth-child(8) { right: 4%; bottom: 12%; }

  .team-orbit .arrow-link {
    bottom: 17px;
    max-width: calc(100% - 32px);
    padding: 10px 14px;
    font-size: 0.65rem;
  }

  .finance-card--visual {
    min-height: 0;
  }

  .finance-card--visual .finance-card__top {
    min-height: 245px;
  }

  .finance-card--visual .finance-card__bottom {
    padding: 27px 25px 30px;
  }
}

@media (max-width: 420px) {
  .service-showcase {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .approach__visual {
    min-height: 320px;
  }

  .journey .steps {
    grid-auto-columns: 82vw;
  }

  .team-orbit {
    min-height: 430px;
  }

  .team-orbit .specialist-tags li:nth-child(8) {
    right: 2%;
  }
}
