:root {
  --obsidian: #13161a;
  --graphite: #1c2024;
  --slate: #2a2f36;
  --forest-teal: #1a8f7d;
  --forest-teal-hover: #1da08b;
  --pearl: #e8e6e1;
  --champagne: #c4a46c;
  --ash: #8b9098;
  --ink-line: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 24px 64px rgba(0, 0, 0, 0.3);
  --shadow-heavy: 0 30px 90px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.kailas-site-body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--obsidian);
  color: var(--pearl);
  line-height: 1.6;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

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

.site-shell {
  width: min(1360px, calc(100% - 160px));
  margin: 0 auto;
}

.container-xl {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(19, 22, 26, 0.85);
  border-bottom: 1px solid rgba(42, 47, 54, 0.5);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--pearl);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.site-logo__text span {
  color: inherit;
}

.logo-svg {
  width: 44px;
  height: 32px;
  flex-shrink: 0;
}

.logo-peaks {
  fill: var(--slate);
  opacity: 0.85;
}

.logo-ridge {
  fill: none;
  stroke: var(--champagne);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: traceGold 3s ease-in-out infinite;
}

@keyframes traceGold {
  0% {
    stroke-dashoffset: 120;
    stroke-opacity: 0.3;
  }
  40%,
  60% {
    stroke-dashoffset: 0;
    stroke-opacity: 1;
  }
  100% {
    stroke-dashoffset: -120;
    stroke-opacity: 0.3;
  }
}

.site-nav,
.site-header__actions {
  display: flex;
  align-items: center;
}

.site-mobile-toggle,
.site-mobile-panel {
  display: none;
}

.site-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: 48px;
  min-width: 0;
}

.site-header__actions {
  gap: 12px;
}

.nav-link {
  color: var(--ash);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link--services {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link__chevron {
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-services:hover > .nav-link {
  color: var(--pearl);
}

.nav-services:hover .nav-link__chevron {
  transform: rotate(180deg);
}

.nav-services {
  position: relative;
  padding: 28px 0;
}

.nav-services::after {
  content: "";
  position: absolute;
  left: -36px;
  right: -36px;
  top: 100%;
  height: 34px;
}

.mega-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-34%);
  width: min(900px, calc(100vw - 96px));
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  margin-top: 0;
}

.nav-services:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-34%);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  background: #0d0f12;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.mega-menu__column {
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-menu__column--meta {
  background: rgba(255, 255, 255, 0.02);
  border-right: 0;
}

.mega-menu__label,
.section-eyebrow {
  margin: 0 0 20px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mega-link {
  display: block;
  padding: 0;
}

.mega-link + .mega-link {
  margin-top: 24px;
}

.mega-link__title {
  display: block;
  color: #fff;
  font-weight: 650;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.mega-link__desc {
  display: block;
  color: rgba(232, 230, 225, 0.58);
  font-size: 0.92rem;
}

.mega-link:hover .mega-link__title {
  color: var(--champagne);
}

.mega-link--simple .mega-link__title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.mega-link--simple:hover .mega-link__title {
  color: #fff;
  transform: translateX(4px);
}

.mega-menu__phone {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 28px 0 14px;
}

.mega-menu__cta,
.service-card__link {
  color: var(--forest-teal);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

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

.button--primary {
  background: var(--forest-teal);
  color: #fff;
}

.button--primary:hover {
  background: var(--forest-teal-hover);
}

.button--outline {
  background: transparent;
  border-color: var(--forest-teal);
  color: var(--forest-teal);
}

.button--outline:hover {
  background: rgba(26, 143, 125, 0.1);
  color: var(--pearl);
}

.button--hero-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.button--hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button__arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.button--light {
  background: #fff;
  color: var(--obsidian);
}

.button--dark {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}

.site-main {
  display: block;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--obsidian);
}

.hero-section__bg,
.hero-section__overlay {
  position: absolute;
  inset: 0;
}

.hero-section__bg {
  background-size: cover;
  background-position: 55% center;
}

.hero-section__overlay {
  background: linear-gradient(
    to right,
    rgba(19, 22, 26, 0.92) 0%,
    rgba(19, 22, 26, 0.7) 40%,
    rgba(19, 22, 26, 0.3) 70%,
    transparent 100%
  );
}

@keyframes heroScan {
  0% {
    top: 15%;
    opacity: 0;
    transform: scaleX(0.8);
  }
  10% {
    opacity: 0.8;
  }
  30%,
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    top: 80%;
    opacity: 0;
    transform: scaleX(1.2);
  }
}

.hero-scan-line {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(1, 105, 111, 0.35) 25%,
    rgba(201, 177, 136, 0.7) 50%,
    rgba(1, 105, 111, 0.35) 75%,
    transparent 100%
  );
  filter: drop-shadow(0 0 6px rgba(201, 177, 136, 0.35));
  opacity: 0;
  animation: heroScan 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

.hero-section__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 96px 0 56px;
  align-items: stretch;
  text-align: left;
}

.glass-card-mobile {
  max-width: 620px;
}

.hero-content-inner {
  width: 100%;
  max-width: 620px;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: left center;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@keyframes heroBackgroundSettle {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

.hero-section .hero-content-inner > *,
.hero-section .hero-actions,
.hero-section .hero-trust,
.inner-hero .hero-content-inner > * {
  opacity: 0;
  animation: heroCopyIn 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}

.hero-section .inner-hero__divider,
.inner-hero .inner-hero__divider {
  opacity: 0;
  animation: heroLineIn 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}

.hero-section .hero-eyebrow,
.inner-hero .hero-eyebrow {
  animation-delay: 120ms;
}

.hero-section .hero-title,
.hero-section .simple-page__title,
.inner-hero .simple-page__title {
  animation-delay: 220ms;
}

.hero-section .hero-lead,
.inner-hero .hero-lead {
  animation-delay: 360ms;
}

.hero-section .hero-actions {
  animation-delay: 460ms;
}

.hero-section .hero-trust {
  animation-delay: 560ms;
}

.hero-section__bg {
  animation: heroBackgroundSettle 1400ms cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform;
}

.hero-eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inner-hero__divider {
  width: 100%;
  height: 1px;
  background: rgba(232, 230, 225, 0.14);
  margin-bottom: 28px;
}

.hero-title,
.section-head h2,
.cta-banner h2,
.simple-page__title {
  margin: 0;
  max-width: 100%;
  word-break: break-word;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.hero-title__line {
  display: block;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 560px;
  color: var(--ash);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 600;
  color: var(--pearl);
}

.hero-trust li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--forest-teal);
}

.highlight-teal,
.highlight-champagne {
  position: relative;
  display: inline;
  z-index: 0;
}

.highlight-teal::before,
.highlight-champagne::before {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  top: 4px;
  border-radius: 4px;
  z-index: -1;
}

.highlight-teal::before {
  background: rgba(26, 143, 125, 0.25);
}

.highlight-champagne::before {
  background: rgba(196, 164, 108, 0.2);
}

.site-section {
  padding: 96px 0;
}

.site-section--light,
.site-section--approach {
  background: rgb(232 234 230 / 1);
  color: #13161a;
}

.site-section--light {
  background: rgb(244 245 240 / 1);
  color: #13161a;
}

.site-section--dark {
  background: linear-gradient(180deg, #13161a 0%, #1c2024 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-section--accent {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(16, 24, 35, 0.98),
    rgba(21, 122, 107, 0.96)
  );
  overflow: hidden;
}

.site-section--deep {
  background: linear-gradient(180deg, #13161a 0%, #1c2024 100%);
}

.home-cases-section {
  background: linear-gradient(180deg, #13161a 0%, #1c2024 100%);
}

.site-section--sage {
  background: rgb(244 245 240 / 1);
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head--between {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head__lead {
  margin-top: 16px;
  color: rgba(232, 230, 225, 0.72);
  max-width: 720px;
}

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

.metrics-ticker {
  overflow: hidden;
  background: var(--graphite);
  padding: 26px 0;
}

.metrics-ticker__track {
  overflow: hidden;
  width: min(1640px, calc(100% - 24px));
  margin: 0 auto;
}

.metrics-ticker__row {
  display: flex;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}

.metric-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
  min-height: 72px;
}

.metric-pill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-50%);
}

.metric-pill__num {
  color: var(--champagne);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  white-space: nowrap;
}

.metric-pill__copy div:first-child {
  color: var(--pearl);
  font-size: 0.9rem;
  white-space: nowrap;
}

.metric-pill__copy div:last-child {
  color: var(--ash);
  font-size: 0.78rem;
  white-space: nowrap;
}

.panel-card,
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  overflow: hidden;
}

.panel-card {
  padding: 28px;
}

.panel-card h3,
.service-card h3,
.site-footer__column h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
}

.panel-card p,
.service-card p,
.site-footer__column p,
.site-footer__lead,
.simple-page__content {
  color: rgba(232, 230, 225, 0.72);
}

.service-card__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

/* Текстовые карточки без медиа-блока (используются в архиве кейсов) */
.service-card--text .service-card__media {
  display: none;
}

.service-card--text .service-card__body {
  padding: 32px;
}

.service-card__body {
  padding: 24px;
}

.service-card__tag {
  margin: 0 0 12px;
}

.cta-banner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-banner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-background,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-background {
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(26, 143, 125, 0.12),
      transparent 60%
    ),
    rgba(19, 22, 26, 0.86);
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading--light {
  color: #fff;
}

.site-section--dark .section-heading,
.site-section--dark h2.section-heading {
  color: #fff;
}

.site-section--dark p,
.site-section--dark .algorithm-step__desc {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #13161a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__main {
  padding: 84px 0 56px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.site-footer__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer__messenger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pearl);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.site-footer__messenger:hover {
  transform: translateY(-1px);
  border-color: rgba(196, 164, 108, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__messenger-icon {
  flex-shrink: 0;
}

.site-footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.site-footer__column a,
.site-footer__contacts a,
.site-footer__bottom-links a {
  color: rgba(232, 230, 225, 0.72);
}

.site-footer__quick-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.site-footer__quick-actions .button {
  justify-content: center;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(232, 230, 225, 0.55);
  flex-wrap: wrap;
}

.site-footer__bottom-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
}

.site-footer__bottom-meta p {
  margin: 0;
  line-height: 1.55;
}

.site-footer__legal-entity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 4px;
}

.site-footer__entity-name {
  font-size: 0.85rem !important;
  font-weight: 500;
  color: rgba(232, 230, 225, 0.78) !important;
  letter-spacing: 0.01em;
}

.site-footer__entity-meta {
  font-size: 0.74rem !important;
  color: rgba(232, 230, 225, 0.5) !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.site-footer__copyright {
  font-size: 0.78rem !important;
  color: rgba(232, 230, 225, 0.6) !important;
}

.site-footer__legal-note {
  font-size: 0.72rem;
  color: rgba(232, 230, 225, 0.42);
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.site-mountains {
  height: 96px;
  overflow: hidden;
  color: var(--graphite);
}

.site-mountains svg {
  width: 100%;
  height: 100%;
  min-width: 800px;
}

.site-main--simple {
  padding-top: 120px;
  padding-bottom: 72px;
}

.business-grid,
.blog-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
}

.business-panel {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

.business-panel h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #2a2f36;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--forest-teal);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.82);
}

.business-panel__cta {
  margin-top: 24px;
}

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

.business-metric-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.business-metric-card__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--champagne);
  margin-bottom: 8px;
}

.business-metric-card__label {
  color: #2a2f36;
  font-size: 0.95rem;
}

.approach-grid,
.why-grid,
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.approach-card,
.why-card,
.entry-card-block {
  position: relative;
  border-radius: 24px;
  padding: 30px;
}

.approach-card,
.entry-card-block {
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.approach-card__index,
.entry-card-block__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.75rem;
  font-weight: 800;
  color: rgba(19, 22, 26, 0.05);
}

.approach-card p,
.entry-card-block p {
  color: #2a2f36;
}

.why-card {
  background: rgba(30, 36, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.why-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(45, 181, 160, 0.4),
    rgba(26, 143, 125, 0.15)
  );
  border: 1px solid rgba(45, 181, 160, 0.25);
}

.why-card p {
  color: var(--ash);
}

.section-link {
  color: var(--forest-teal);
  font-weight: 700;
}

.blog-featured-card,
.blog-list-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.blog-featured-card__media {
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.blog-featured-card__body,
.blog-list-card__body {
  padding: 28px;
}

.blog-list {
  display: grid;
  gap: 24px;
}

.blog-list-card {
  flex-direction: row;
  align-items: center;
}

.blog-list-card__media {
  width: 120px;
  min-width: 120px;
  height: 100px;
  background-size: cover;
  background-position: center;
}

.blog-list-card h3,
.blog-featured-card h3 {
  color: #13161a;
}

.blog-meta {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  color: #8b9098;
  font-size: 0.85rem;
}

.blog-meta--small {
  margin-top: 12px;
}

.simple-page {
  max-width: 900px;
}

.simple-page__content {
  margin-top: 24px;
}

.simple-page__content a {
  color: var(--forest-teal);
}

.inner-hero {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(19, 22, 26, 0.95) 0%,
    rgba(19, 22, 26, 0.7) 40%,
    rgba(19, 22, 26, 0.2) 70%,
    transparent 100%
  );
}

.inner-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 520px;
  padding: 128px 0 80px;
  width: min(1360px, calc(100% - 128px));
  margin: 0 auto;
}

.inner-hero__copy {
  width: 100%;
  max-width: 700px;
}

.inner-hero .simple-page__title {
  max-width: 700px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  font-weight: 700;
}

.inner-hero .hero-lead {
  max-width: 700px;
  margin-left: 0;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(232, 230, 225, 0.65);
}

@media (min-width: 768px) {
  .inner-hero__divider {
    width: min(760px, 66vw);
  }
}

.founder-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 60px;
  align-items: start;
}

.founder-copy h2,
.contact-form-card h2,
.contact-info-card h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #13161a;
}

.founder-link {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(19, 22, 26, 0.08);
  background: rgba(26, 143, 125, 0.08);
  color: var(--forest-teal);
  font-weight: 600;
  font-size: 0.88rem;
}

.founder-copy__text {
  display: grid;
  gap: 18px;
  color: rgba(19, 22, 26, 0.72);
  line-height: 1.76;
  max-width: 780px;
}

.founder-copy__text--light {
  color: rgba(232, 230, 225, 0.62);
}

.founder-metrics {
  margin-top: 32px;
}

.founder-specialties {
  margin-top: 26px;
}

.founder-specialties__label {
  margin: 0 0 14px;
  color: rgba(19, 22, 26, 0.35);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-specialties__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.founder-specialties__list span {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(19, 22, 26, 0.06);
  background: rgba(232, 234, 230, 0.6);
  color: rgba(19, 22, 26, 0.72);
  font-size: 0.78rem;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button--dark {
  background: #13161a;
  color: #fff;
  border-color: #13161a;
}

.button--dark:hover {
  background: #1c2024;
  border-color: #1c2024;
}

.about-practice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 74px;
  align-items: center;
}

.about-practice-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #fff;
}

.about-practice-steps {
  display: grid;
  gap: 18px;
}

.about-practice-step {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
  border-radius: 34px;
  background: #1d2329;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-practice-step__num {
  width: 44px;
  flex-shrink: 0;
  color: var(--champagne);
  font-weight: 700;
  font-size: 1.8rem;
  opacity: 0.42;
  line-height: 1;
  align-self: center;
}

.about-practice-step h3,
.about-not-card h3,
.about-partner-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.18;
}

.about-practice-step h3 {
  color: #fff;
}

.about-practice-step p {
  margin: 0;
  color: rgba(232, 230, 225, 0.56);
  line-height: 1.65;
}

.section-head__plain {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(19, 22, 26, 0.55);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-not-grid,
.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-not-card,
.about-partner-card {
  position: relative;
  padding: 34px 32px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.about-not-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(26, 143, 125, 0.08);
  color: var(--forest-teal);
  font-size: 1.8rem;
  line-height: 1;
}

.about-partner-card__icon {
  width: 12px;
  height: 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a8f7d 0%, #c9a45b 100%);
  box-shadow: 0 0 0 8px rgba(26, 143, 125, 0.06);
}

.about-not-card p,
.about-partner-card p {
  margin: 0;
  color: rgba(19, 22, 26, 0.6);
  line-height: 1.7;
}

.founder-photo-wrap {
  display: flex;
  align-items: stretch;
  align-self: center;
  max-width: 360px;
  width: 100%;
}

.founder-photo-accent {
  width: 5px;
  border-radius: 999px;
  background: var(--champagne);
  flex-shrink: 0;
}

.founder-photo {
  flex: 1;
  margin-left: 14px;
  min-height: 430px;
  border-radius: 42px;
  background-size: cover;
  background-position: top center;
  border: 8px solid #fff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.contact-form-card,
.contact-info-card {
  background: #fff;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.contact-form,
.contact-form__row {
  display: grid;
  gap: 18px;
}

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

.contact-form label,
.contact-form label span {
  display: block;
}

.contact-form label span {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #13161a;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(19, 22, 26, 0.1);
  border-radius: 0;
  background: #f4f5f0;
  color: #13161a;
  font: inherit;
}

.contact-form textarea {
  min-height: 146px;
  resize: vertical;
}

.contact-form__consent {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
}

.contact-form__consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
}

.contact-form__consent span {
  margin: 0 !important;
  font-weight: 400 !important;
  color: rgba(19, 22, 26, 0.74) !important;
}

.contact-form__consent a {
  color: var(--forest-teal);
}

.contact-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 500;
}

.contact-alert--success {
  background: rgba(26, 143, 125, 0.12);
  color: #126b5f;
}

.contact-alert--error {
  background: rgba(196, 56, 56, 0.1);
  color: #9d2d2d;
}

.contact-info-card--plain {
  padding-top: 2px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.contact-info-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(26, 143, 125, 0.08);
  color: var(--forest-teal);
  font-size: 1.05rem;
  line-height: 1;
}

.contact-info-item span {
  display: block;
  margin-bottom: 4px;
  color: rgba(19, 22, 26, 0.42);
  font-size: 0.76rem;
  font-weight: 500;
}

.contact-info-item a {
  color: #13161a;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.35;
}

.contact-hours-card,
.contact-messengers {
  margin-top: 28px;
  padding: 24px;
  border-radius: 0;
  background: #f4f5f0;
  border: 1px solid rgba(19, 22, 26, 0.06);
}

.contact-hours-card__label {
  margin: 0 0 16px;
  color: rgba(19, 22, 26, 0.4);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hours-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.95rem;
}

.contact-hours-card__row + .contact-hours-card__row {
  margin-top: 10px;
}

.contact-hours-card__row span {
  color: rgba(19, 22, 26, 0.68);
}

.contact-hours-card__row strong {
  color: #13161a;
  font-weight: 600;
}

.contact-hours-card__accent {
  color: var(--forest-teal) !important;
}

.contact-messengers__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-messengers__button {
  min-width: 122px;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 0;
  font-size: 0.95rem;
}

.about-network {
  margin-top: 26px;
  padding: 18px 22px 20px;
  border-radius: 24px;
  background: #22262b;
  color: rgba(232, 230, 225, 0.7);
  text-align: center;
}

.about-network__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(232, 230, 225, 0.82);
  font-size: 0.88rem;
}

.about-network__items strong {
  color: #fff;
  font-weight: 700;
}

.about-network p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(232, 230, 225, 0.48);
}

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

.services-extra-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(19, 22, 26, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
  color: #13161a;
  font-weight: 600;
}

.calculator-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 32px;
  align-items: start;
}

.calculator-form-card,
.calculator-result-card,
.privacy-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.calculator-step + .calculator-step {
  margin-top: 28px;
}

.calculator-step h2 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  color: #13161a;
}

.calculator-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.calculator-options--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-result-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  color: #13161a;
}

.calculator-result-card__tier {
  color: #13161a;
  font-weight: 600;
  margin-bottom: 16px;
}

.calculator-result-card__format {
  color: rgba(19, 22, 26, 0.7);
  margin-bottom: 24px;
}

.calculator-result-card--empty {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f2 100%);
}

.privacy-wrap {
  max-width: 920px;
}

.privacy-section + .privacy-section {
  margin-top: 32px;
}

.privacy-section h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  color: #13161a;
}

.privacy-section p {
  color: rgba(19, 22, 26, 0.72);
  line-height: 1.75;
}

.privacy-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(19, 22, 26, 0.72);
}

.privacy-list li + li {
  margin-top: 10px;
}

.privacy-list li::marker {
  color: var(--forest-teal);
}

.privacy-list--contacts {
  list-style: none;
  padding-left: 0;
}

.privacy-list--contacts li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.privacy-list--contacts span {
  color: #13161a;
  font-weight: 700;
}

.privacy-list--contacts a {
  color: var(--forest-teal);
  font-weight: 600;
}

.privacy-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--forest-teal);
  border-radius: 16px;
  background: #f6f8f4;
  color: rgba(19, 22, 26, 0.8);
}

.privacy-back {
  margin-top: 32px;
}

.privacy-back a {
  color: var(--forest-teal);
  font-weight: 700;
}

.kailas-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.kailas-turnstile {
  margin: 0.5rem 0 0;
}


.inner-hero--compact {
  background: #1c2024;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.single-sidebar {
  position: sticky;
  top: 110px;
}

.service-urgency {
  background: #eef0e8;
  border-bottom: 1px solid rgba(19, 22, 26, 0.08);
  padding: 16px 0;
  color: #13161a;
}

.service-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.service-intro__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.service-intro__copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
}

.service-intro__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.26);
  color: #f5f4ef;
}

.button--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.error-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.error-page__hero .inner-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(19, 22, 26, 0.92) 0%,
    rgba(19, 22, 26, 0.7) 40%,
    rgba(19, 22, 26, 0.3) 70%,
    transparent 100%
  );
}

.error-page__routes {
  position: relative;
  z-index: 1;
}

.error-page__routes {
  margin-top: 0;
  padding: 72px 0 96px;
  background: rgb(244 245 240 / 1);
}

.error-page__routes-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.error-page__routes-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  color: #13161a;
}

.error-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.error-route-card {
  border-radius: 24px;
  overflow: hidden;
}

.error-route-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(19, 22, 26, 0.08);
  box-shadow: 0 18px 44px rgba(19, 22, 26, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.error-route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 143, 125, 0.18);
  box-shadow: 0 24px 56px rgba(19, 22, 26, 0.12);
}

.error-route-card__eyebrow {
  margin: 0;
  color: var(--forest-teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.error-route-card h3 {
  margin: 0;
  color: #13161a;
  font-size: 1.45rem;
  line-height: 1.2;
}

.error-route-card p {
  margin: 0;
  color: rgba(19, 22, 26, 0.64);
  line-height: 1.7;
}

.error-route-card__cta {
  margin-top: auto;
  color: var(--forest-teal);
  font-weight: 700;
}

.error-route-card__cta span {
  transition: transform 0.2s ease;
}

.error-route-card:hover .error-route-card__cta span {
  transform: translateX(4px);
}

@media (max-width: 1180px) {
  .error-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .error-page__routes {
    margin-top: 0;
    padding: 56px 0 72px;
  }

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

  .error-route-grid {
    grid-template-columns: 1fr;
  }

  .error-route-card {
    border-radius: 20px;
  }

  .error-route-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .error-page__routes-head {
    margin-bottom: 28px;
  }
}

.service-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
}

.faq-list {
  border: 1px solid rgba(19, 22, 26, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.faq-item {
  border-bottom: 1px solid rgba(19, 22, 26, 0.08);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 700;
  color: #13161a;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(19, 22, 26, 0.7);
}

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

.related-service-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(19, 22, 26, 0.08);
  box-shadow: 0 18px 40px rgba(19, 22, 26, 0.06);
}

.related-service-card__eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-teal);
}

.related-service-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: #13161a;
}

.related-service-card p {
  margin: 0 0 18px;
  color: rgba(19, 22, 26, 0.7);
}

.related-service-card a {
  color: var(--burnt-orange);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .site-nav,
  .site-header__actions {
    display: none;
  }

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

  .manifesto-grid,
  .services-grid,
  .site-footer__grid,
  .cta-banner,
  .business-grid,
  .blog-grid,
  .section-head--between,
  .service-intro,
  .related-services-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .business-metrics,
  .approach-grid,
  .why-grid,
  .entry-grid,
  .founder-grid,
  .contacts-grid,
  .services-extra-grid,
  .post-layout,
  .service-stats-grid,
  .calculator-wrap,
  .calculator-options {
    grid-template-columns: 1fr 1fr;
  }

  .blog-list-card {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-list-card__media {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 767px) {
  .site-shell {
    width: min(100% - 24px, 100%);
  }

  .inner-hero__content {
    min-height: 340px;
    padding: 104px 0 64px;
    width: calc(100% - 40px);
  }

  .inner-hero .simple-page__title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .inner-hero .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-section__content {
    padding: 100px 0 56px;
  }

  .glass-card-mobile {
    background: rgba(19, 22, 26, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 20px;
    margin: 0 4px;
  }

  .hero-content-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-actions,
  .cta-banner__actions,
  .site-footer__bottom-inner,
  .site-footer__bottom-links,
  .section-head--between {
    flex-direction: column;
    align-items: stretch;
  }

  .home-cta,
  .home-cta__actions {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .home-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .business-metrics,
  .approach-grid,
  .why-grid,
  .entry-grid,
  .manifesto-grid,
  .services-grid,
  .founder-grid,
  .contacts-grid,
  .services-extra-grid,
  .contact-form__row,
  .post-layout,
  .service-stats-grid,
  .calculator-wrap,
  .calculator-options,
  .calculator-options--wide {
    grid-template-columns: 1fr;
  }

  .about-practice-grid,
  .about-not-grid,
  .about-partners-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .contact-info-item a {
    font-size: 1.12rem;
  }

  .contact-messengers__button {
    min-width: 0;
    flex: 1 1 140px;
  }

  .metric-pill {
    padding: 0 20px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 42px;
  }

  .hero-trust li {
    white-space: normal;
    line-height: 1.45;
    align-items: flex-start;
  }

  .hero-trust li::before {
    margin-top: 8px;
    flex-shrink: 0;
  }
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading-home {
  margin: 0;
  font-size: clamp(1.95rem, 3.6vw, 3.3rem);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.section-heading-home--light {
  color: var(--pearl);
}

.section-heading-home--dark {
  color: #13161a;
}

.section-heading-home--ghost {
  color: rgba(19, 22, 26, 0.2);
}

.home-section-head {
  margin-bottom: 48px;
  max-width: 760px;
}

.home-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-section-head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.home-section-head--cases {
  margin-bottom: 32px;
}

.home-section-subtitle {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ash);
}

.home-section-subtitle--light {
  margin-left: 0;
  color: rgba(232, 230, 225, 0.72);
}

.home-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest-teal);
}

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

.home-service-card {
  position: relative;
  display: block;
  height: 320px;
  overflow: hidden;
  border-radius: 2.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

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

.home-service-card__media {
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.home-service-card:hover .home-service-card__media {
  transform: scale(1.05);
}

.home-service-card__overlay {
  background:
    linear-gradient(
      to top,
      rgba(15, 14, 12, 0.92),
      rgba(15, 14, 12, 0.55) 55%,
      rgba(15, 14, 12, 0.32)
    );
  backdrop-filter: blur(2px) saturate(1.05);
  -webkit-backdrop-filter: blur(2px) saturate(1.05);
  transition: backdrop-filter 0.4s ease, background 0.4s ease;
}

.home-service-card:hover .home-service-card__overlay {
  backdrop-filter: blur(0.5px) saturate(1.1);
  -webkit-backdrop-filter: blur(0.5px) saturate(1.1);
  background: linear-gradient(
    to top,
    rgba(15, 14, 12, 0.94),
    rgba(15, 14, 12, 0.45) 60%,
    rgba(15, 14, 12, 0.18)
  );
}

.home-tag-pill,
.service-card__tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: max-content;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 143, 125, 0.65);
  background: rgba(11, 25, 22, 0.38);
  color: #dff8f1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-tag-pill--sm {
  min-height: 30px;
  padding: 0 12px;
  font-size: 0.62rem;
}

.home-tag-pill--md {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.66rem;
}

.home-service-card > .home-tag-pill {
  position: absolute;
  top: 16px;
  left: 16px;
}

.home-service-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
}

.home-service-card__body h3 {
  margin: 0 0 6px;
  font-size: 1.32rem;
  font-weight: 620;
  color: var(--pearl);
}

.home-service-card__body p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ash);
  opacity: 0;
  transition: all 0.3s ease;
}

.home-service-card__link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest-teal);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s ease;
}

.home-service-card:hover .home-service-card__body p {
  max-height: 88px;
  margin-top: 8px;
  opacity: 1;
}

.home-service-card:hover .home-service-card__link {
  transform: translateY(0);
  opacity: 1;
}

.home-tab-pills__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.home-tab-pill {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(42, 47, 54, 0.18);
  background: transparent;
  color: #2a2f36;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-tab-pill.is-active,
.home-tab-pill:hover {
  background: var(--forest-teal);
  border-color: var(--forest-teal);
  color: #fff;
}

.home-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.home-check-list {
  display: grid;
  gap: 16px;
}

.home-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-check-item__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--forest-teal);
  color: #fff;
}

.home-check-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2a2f36;
}

.home-check-list__cta {
  padding-top: 16px;
}

.home-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  background: var(--obsidian);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-self: start;
  margin-top: -10px;
}

.home-metric-card {
  min-height: 210px;
  padding: 26px 24px;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-metric-card:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.09);
}

.home-metric-card__num {
  margin-bottom: 8px;
  font-size: 3rem;
  font-weight: 650;
  color: var(--champagne);
}

.home-metric-card__label {
  font-size: 0.92rem;
  line-height: 1.35;
  color: #2a2f36;
}

.home-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.home-approach-card,
.home-entry-card {
  position: relative;
  height: 100%;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-approach-card:hover,
.home-entry-card:hover,
.home-why-card:hover {
  transform: translateY(-4px) scale(1.025);
}

.home-approach-card__num,
.home-entry-card__num {
  position: absolute;
  top: 12px;
  right: 22px;
  font-size: 3.75rem;
  font-weight: 800;
  color: rgba(19, 22, 26, 0.04);
}

.home-approach-card h3,
.home-entry-card h3,
.home-why-card h3,
.home-blog-featured h3,
.home-blog-small h3,
.home-case-card h3 {
  margin: 0 0 12px;
  font-weight: 620;
}

.home-approach-card p,
.home-entry-card p {
  margin: 0;
  color: #2a2f36;
  line-height: 1.65;
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-why-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(30, 36, 46, 0.85);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.home-why-card:hover {
  border-color: rgba(26, 143, 125, 0.3);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.home-why-card__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(26, 143, 125, 0.15);
  color: var(--forest-teal);
}

.home-why-card__icon svg {
  width: 20px;
  height: 20px;
}

.home-why-card h3 {
  font-size: 1.2rem;
  color: var(--pearl);
}

.home-why-card p {
  margin: 0;
  color: var(--ash);
  font-size: 0.92rem;
  line-height: 1.65;
}

.home-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.home-cases-section {
  overflow: hidden;
  background: #1c2024;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.home-cases-carousel__row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-cases-nav {
  display: inline-flex;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #1c1f26;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
}

.home-cases-nav:hover {
  transform: scale(1.05);
  border-color: var(--forest-teal);
  background: var(--forest-teal);
}

.home-cases-slider {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #20232a;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-radius: 2.25rem;
  transition: border-color 0.5s ease;
}

.home-cases-slider:hover {
  border-color: rgba(26, 143, 125, 0.35);
}

.home-cases-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.home-cases-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #157a6b 0%, #1a8f7d 55%, #c4a46c 100%);
  box-shadow: 0 0 12px rgba(26, 143, 125, 0.45);
}

.home-cases-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-cases-slide {
  width: 100%;
  flex: 0 0 100%;
}

.home-case-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  overflow: hidden;
  background: #1a1d23;
  border: 1px solid rgba(201, 177, 136, 0.08);
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.home-case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(1, 105, 111, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.home-case-card:hover {
  border-color: rgba(201, 177, 136, 0.28);
}

.home-case-card:hover::before {
  opacity: 1;
}

.home-case-card__media {
  display: none;
}

.home-case-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 56px 48px;
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 28px;
}

.home-case-card__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(201, 177, 136, 0.12);
}

.home-case-card__metric-value {
  font-family: var(--font-display, 'Tenor Sans', serif);
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1;
  color: #C9B188;
  letter-spacing: -0.01em;
}

.home-case-card__metric-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 177, 136, 0.55);
}

.home-case-card__body h3 {
  font-size: clamp(1.85rem, 2.4vw, 3.1rem);
  line-height: 1.08;
  color: #fff;
  font-weight: 620;
}

.home-case-card__body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(139, 144, 152, 0.8);
  max-width: 92%;
}

.home-case-card__link {
  display: inline-flex;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-teal);
}

.home-cases-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 18px;
}

.home-cases-dot {
  width: 24px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.home-cases-dot.is-active {
  width: 32px;
  background: var(--forest-teal);
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.home-blog-grid .home-tag-pill,
.home-blog-mobile-list .home-tag-pill {
  border: 0;
  background: #d7ebe4;
  color: #178977;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-blog-mobile-list {
  display: none;
}

.home-blog-featured,
.home-blog-small {
  position: relative;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-blog-featured {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.home-blog-featured:hover,
.home-blog-small:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.home-blog-featured__media {
  height: 360px;
  background-size: cover;
  background-position: center;
  background-color: #1c1f26;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-blog-featured__media--tg,
.home-blog-small__media--tg {
  background: linear-gradient(135deg, #0e1615, #1c1f26);
}

.home-blog-featured__media-icon,
.home-blog-small__media-icon {
  color: rgba(26, 143, 125, 0.92);
}

.home-blog-featured__media-icon {
  width: 72px;
  height: 72px;
}

.home-blog-small__media-icon {
  width: 28px;
  height: 28px;
}

.home-blog-featured__media--vc,
.home-blog-small__media--vc {
  background: linear-gradient(135deg, #1a1f26, #0d1117);
}

.home-blog-featured__media-vc-logo,
.home-blog-small__media-vc-logo {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.home-blog-featured__media-vc-logo {
  font-size: 2.2rem;
}

.home-blog-featured__media-vc-logo span,
.home-blog-small__media-vc-logo span {
  color: #ff5252;
}

.home-blog-featured .home-tag-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.home-blog-featured__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  justify-content: flex-start;
  padding: 28px 34px 30px;
}

.home-blog-featured__body h3 {
  font-size: 1.28rem;
  line-height: 1.18;
  color: #13161a;
  font-weight: 620;
  max-width: 560px;
  margin-bottom: 8px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-blog-featured__excerpt {
  margin: 0 0 16px;
  max-width: 560px;
  color: rgba(19, 22, 26, 0.62);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  gap: 18px;
  justify-content: flex-start;
}

.home-blog-small {
  display: flex;
  align-items: stretch;
  flex: 1 1 0;
  gap: 24px;
  min-height: 0;
  padding: 18px 22px;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.home-blog-small__media {
  width: 176px;
  height: auto;
  min-height: 136px;
  align-self: stretch;
  flex-shrink: 0;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-color: #1c2024;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-blog-small__media-vc-logo {
  font-size: 1rem;
}

.home-blog-small .home-tag-pill {
  position: absolute;
  top: 22px;
  left: 34px;
  z-index: 3;
}

.home-blog-small__body {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.home-blog-small__body h3 {
  font-size: 1.08rem;
  line-height: 1.24;
  color: #13161a;
  font-weight: 620;
  margin-bottom: 6px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-blog-small__excerpt {
  margin: 0;
  color: rgba(19, 22, 26, 0.58);
  font-size: 0.84rem;
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  color: var(--ash);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.home-blog-meta--small {
  margin-top: 8px;
}

.home-blog-meta span:last-child {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}

.home-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  text-align: center;
  flex-direction: column;
}

.home-cta p {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 1100px) {
  .mega-menu {
    width: min(860px, calc(100vw - 96px));
    transform: translateX(-32%);
  }

  .nav-services:hover .mega-menu {
    transform: translateX(-32%);
  }

  .site-mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    color: #fff;
  }

  .site-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .site-mobile-toggle .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .site-mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-mobile-panel {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100dvh - 72px);
    overflow: auto;
    background: rgba(19, 22, 26, 0.985);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    z-index: 999;
  }

  .site-mobile-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .site-mobile-panel__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .site-mobile-group {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-mobile-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--champagne);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .site-mobile-label__chevron {
    color: rgba(232, 230, 225, 0.78);
    transition: transform 0.2s ease;
  }

  .site-mobile-label.is-open .site-mobile-label__chevron {
    transform: rotate(180deg);
  }

  .site-mobile-services {
    display: grid;
    gap: 0;
    margin-top: 22px;
    padding-top: 2px;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-mobile-services[hidden] {
    display: none;
  }

  .site-mobile-service-link,
  .site-mobile-link {
    display: block;
    padding: 14px 0;
  }

  .site-mobile-service-link span,
  .site-mobile-link {
    font-size: 1.02rem;
    font-weight: 500;
    color: rgba(232, 230, 225, 0.82);
    line-height: 1.35;
  }

  .site-mobile-service-link small {
    display: none;
  }

  .site-mobile-links {
    display: grid;
    gap: 4px;
    padding: 20px 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 26px;
  }

  .site-mobile-actions .button {
    width: 100%;
  }

  .home-services-grid,
  .home-approach-grid,
  .home-why-grid,
  .home-blog-grid,
  .home-two-col {
    grid-template-columns: 1fr;
  }

  .home-entry-grid {
    grid-template-columns: 1fr;
  }

  .home-section-head--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cases-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .mega-menu {
    display: none;
  }

  .site-shell {
    width: min(100% - 24px, 100%);
  }

  .site-mobile-panel {
    top: 72px;
  }

  .site-section {
    padding: 72px 0;
  }

  .site-section--accent {
    padding: 96px 0 92px;
  }

  .home-service-card {
    height: 300px;
    border-radius: 1.75rem;
  }

  .home-section-head {
    margin-bottom: 32px;
  }

  .section-heading-home {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.02;
  }

  .home-metric-grid,
  .home-approach-grid,
  .home-why-grid,
  .home-entry-grid,
  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-grid--desktop {
    display: none;
  }

  .home-blog-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .home-blog-mobile-list .home-blog-small {
    flex: none;
    min-height: 27rem;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 20px;
  }

  .home-blog-mobile-list .home-blog-small__media {
    width: 100%;
    height: 188px;
    min-height: 188px;
    align-self: auto;
    border-radius: 16px;
  }

  .home-blog-mobile-list .home-blog-small__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
  }

  .home-blog-mobile-list .home-blog-small__body h3 {
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  .home-blog-mobile-list .home-blog-small__excerpt {
    line-clamp: 4;
    -webkit-line-clamp: 4;
  }

  .home-metric-card {
    min-height: 0;
  }

  .home-case-card {
    flex-direction: column;
    min-height: 0;
  }

  .home-case-card__body {
    padding: 32px 24px 28px;
    width: 100%;
    gap: 22px;
  }

  .home-case-card__body h3 {
    font-size: 1.58rem;
  }

  .home-case-card__metric-value {
    font-size: 2rem;
  }

  .home-cases-slider {
    border-radius: 0;
  }

  .home-cases-carousel__row {
    gap: 0;
  }

  .home-cases-track {
    touch-action: pan-y;
  }

  .home-cases-section .site-shell {
    width: 100%;
  }

  .home-cases-section .home-section-head {
    width: min(100% - 24px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .home-cases-dots {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 14px;
  }

  .home-tab-pills__buttons,
  .hero-actions,
  .home-cta__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cta,
  .home-cta__actions {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .home-cta {
    gap: 26px;
  }

  .home-cta > div:first-child {
    max-width: 680px;
  }

  .home-cta .section-heading-home {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.1rem, 9.5vw, 3rem);
    line-height: 1.04;
  }

  .home-cta p {
    max-width: 330px;
    margin: 16px auto 0;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
  }

  .home-cta__actions {
    width: 100%;
    gap: 18px;
  }

  .contact-form-card,
  .contact-info-card,
  .contact-hours-card,
  .contact-messengers {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-info-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-info-item__icon {
    width: 34px;
    height: 34px;
  }

  .contact-info-item a {
    font-size: 1rem;
  }

  .about-practice-step,
  .about-not-card,
  .about-partner-card {
    border-radius: 24px;
    padding: 24px;
  }

  .founder-photo {
    min-height: 360px;
    border-radius: 32px;
  }

  .about-network {
    border-radius: 18px;
    padding: 16px;
  }

  .hero-actions .button,
  .home-cta__actions .button {
    width: min(100%, 320px);
    min-height: 72px;
    padding: 0 26px;
    border-radius: 24px;
    font-size: 1.05rem;
  }

  .home-metric-grid {
    display: none;
  }

  .home-blog-small {
    padding: 22px;
  }

  .home-tag-pill,
  .home-tag-pill--sm,
  .home-tag-pill--md {
    width: fit-content;
    max-width: max-content;
  }

  .home-entry-card,
  .home-approach-card,
  .home-why-card {
    padding: 24px;
  }
}

.reveal-ready,
.fade-in-on-load {
  --reveal-x: 0px;
  --reveal-y: 20px;
  --reveal-scale: 1;
  --reveal-duration: 620ms;
  --reveal-delay: 0ms;
  opacity: 0.001;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: opacity, transform;
}

.reveal-ready.reveal-in,
.fade-in-on-load.reveal-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-rise {
  --reveal-y: 22px;
}

.reveal-slide {
  --reveal-x: -18px;
  --reveal-y: 0px;
}

.reveal-slide-right {
  --reveal-x: 18px;
}

.reveal-scale {
  --reveal-y: 12px;
  --reveal-scale: 0.975;
}

.delay-100 {
  --reveal-delay: 100ms;
}

.delay-200 {
  --reveal-delay: 200ms;
}

.delay-300 {
  --reveal-delay: 300ms;
}

.home-services-grid > .reveal-ready,
.services-grid > .reveal-ready,
.cases-grid > .reveal-ready,
.about-not-us__grid > .reveal-ready,
.about-partners__grid > .reveal-ready,
.blog-cards > .reveal-ready,
.home-blog-list > .reveal-ready,
.home-blog-mobile-list > .reveal-ready {
  --reveal-y: 24px;
}

.home-section-head.reveal-ready,
.services-page__head.reveal-ready,
.about-not-us__header.reveal-ready,
.about-partners__header.reveal-ready,
.inner-hero__copy.reveal-ready {
  --reveal-y: 12px;
}

.hero-section__bg,
.inner-hero__copy {
  will-change: transform;
}

.home-service-card__media,
.home-case-card__media,
.home-blog-featured__media,
.home-blog-small__media,
.service-card__media,
.blog-featured__media,
.blog-card__media,
.about-founder__img {
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  transform-origin: center center;
}

.reveal-ready .home-service-card__media,
.reveal-ready .home-case-card__media,
.reveal-ready .home-blog-featured__media,
.reveal-ready .home-blog-small__media,
.reveal-ready .service-card__media,
.reveal-ready .blog-featured__media,
.reveal-ready .blog-card__media,
.fade-in-on-load .about-founder__img {
  transform: scale(1.03);
}

.reveal-ready.reveal-in .home-service-card__media,
.reveal-ready.reveal-in .home-case-card__media,
.reveal-ready.reveal-in .home-blog-featured__media,
.reveal-ready.reveal-in .home-blog-small__media,
.reveal-ready.reveal-in .service-card__media,
.reveal-ready.reveal-in .blog-featured__media,
.reveal-ready.reveal-in .blog-card__media,
.fade-in-on-load.reveal-in .about-founder__img {
  transform: scale(1);
}

.home-service-card:hover .home-service-card__media,
.home-case-card:hover .home-case-card__media,
.home-blog-featured:hover .home-blog-featured__media,
.home-blog-small:hover .home-blog-small__media,
.service-card:hover .service-card__media,
.blog-featured:hover .blog-featured__media,
.blog-card:hover .blog-card__media {
  transform: scale(1.02);
}

.home-approach-card.reveal-ready.reveal-in:hover,
.home-entry-card.reveal-ready.reveal-in:hover,
.home-why-card.reveal-ready.reveal-in:hover,
.home-metric-card.reveal-ready.reveal-in:hover {
  transform: translate3d(0, -2px, 0) scale(1.012);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready,
  .fade-in-on-load {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-section__bg,
  .inner-hero__copy,
  .home-service-card__media,
  .home-case-card__media,
  .home-blog-featured__media,
  .home-blog-small__media,
  .service-card__media,
  .blog-featured__media,
  .blog-card__media,
  .about-founder__img {
    transform: none !important;
    transition: none;
  }

  .hero-section .hero-content-inner > *,
  .hero-section .hero-actions,
  .hero-section .hero-trust,
  .inner-hero .hero-content-inner > * {
    opacity: 1;
    animation: none;
  }
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  width: min(100% - 2rem, 24rem);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

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

.cookie-banner__panel {
  border: 1px solid rgba(69, 74, 82, 0.4);
  background: rgba(22, 25, 29, 0.96);
  box-shadow: 0 24px 60px -30px rgba(19, 22, 26, 0.85);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.cookie-banner__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cookie-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background: rgba(26, 143, 125, 0.12);
  color: var(--forest-teal);
}

.cookie-banner__icon-svg,
.cookie-banner__close svg {
  width: 1rem;
  height: 1rem;
}

.cookie-banner__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: color 0.2s ease;
}

.cookie-banner__close:hover {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__text {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.cookie-banner__text a {
  color: var(--forest-teal);
  text-decoration: none;
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-banner__accept,
.cookie-banner__decline {
  flex: 1 1 0;
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 0;
  cursor: pointer;
  font-size: 0.92rem;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.cookie-banner__accept {
  background: var(--forest-teal);
  color: #fff;
  font-weight: 600;
}

.cookie-banner__accept:hover {
  background: #1da08b;
}

.cookie-banner__decline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
}

.cookie-banner__decline:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }

  .cookie-banner__panel {
    padding: 1.25rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }
}

/* ─── Meeting locations (contacts page) ─────────────────────── */
.meeting-locations {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 177, 136, 0.18);
}
.meeting-locations__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 8px;
}
.meeting-locations__note {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft, rgba(15, 14, 12, 0.72));
  margin: 0 0 18px;
}
.meeting-locations__list {
  display: grid;
  gap: 14px;
}
.meeting-location {
  padding: 16px 18px;
  border: 1px solid rgba(1, 105, 111, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.meeting-location:hover {
  border-color: rgba(1, 105, 111, 0.32);
  transform: translateY(-1px);
}
.meeting-location__name {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink, #0F0E0C);
}
.meeting-location__address {
  margin: 0 0 4px;
  font-size: 0.9rem;
  color: var(--ink-soft, rgba(15, 14, 12, 0.72));
}
.meeting-location__meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft, rgba(15, 14, 12, 0.6));
}
.meeting-location__meta a {
  color: var(--forest-teal, #01696F);
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 105, 111, 0.3);
}
.meeting-location__meta a:hover {
  border-bottom-color: var(--forest-teal, #01696F);
}

/* ─── Hero fog canvas (mariarudakova.ru live clouds) ─── */
.hero-fog-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-fog-canvas { display: none; }
}
