html {
  overflow-x: hidden;
}

:root {
  color-scheme: light;
  --bg: #f5f6f8;
  --bg-soft: #fbfbfd;
  --ink: #1d1d1f;
  --muted: #5c6170;
  --graphite: #4f545d;
  --line: rgba(15, 17, 21, 0.08);
  --accent: #0071e3;
  --accent-soft: #d9ecff;
  --accent-green: #0071e3;
  --hero-glow: rgba(56, 139, 253, 0.25);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 80px rgba(15, 17, 21, 0.14);
  --footer-bg: #4a4a4a;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1400px;
  --title-xl-size: clamp(52px, 5.4vw, 72px);
  --title-xl-weight: 600;
  --title-xl-color: var(--ink);
  --title-xl-tracking: -0.042em;
  --title-card-size: 24px;
  --title-card-size-tablet: 22px;
  --title-card-size-mobile: 19px;
  --lead-size: clamp(20px, 1.55vw, 24px);
  --body-size: 16px;
  --eyebrow-size: 15px;
  --eyebrow-tracking: 0.16em;
  font-family: "Albert Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 82% 14%, rgba(219, 232, 255, 0.72) 0%, rgba(219, 232, 255, 0) 32%),
    radial-gradient(circle at 18% 78%, rgba(244, 247, 255, 0.92) 0%, rgba(244, 247, 255, 0) 34%),
    linear-gradient(180deg, #fcfcfd 0%, #f3f5f8 48%, #eef2f6 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.home-page-main {
  position: relative;
  isolation: isolate;
}

.home-page-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(2300px, 190vw);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 84% 16%, rgba(210, 226, 255, 0.62) 0%, rgba(210, 226, 255, 0) 30%),
    radial-gradient(circle at 18% 74%, rgba(244, 247, 255, 0.84) 0%, rgba(244, 247, 255, 0) 34%),
    radial-gradient(circle at 52% 100%, rgba(236, 241, 248, 0.92) 0%, rgba(236, 241, 248, 0) 42%),
    linear-gradient(180deg, #fbfbfc 0%, #f3f5f8 52%, #edf1f5 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.home-page-main > * {
  position: relative;
  z-index: 1;
}

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

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

.bg-shell {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 84% 18%, rgba(210, 226, 255, 0.58) 0%, rgba(210, 226, 255, 0) 28%),
    radial-gradient(circle at 50% 100%, rgba(236, 241, 248, 0.92) 0%, rgba(236, 241, 248, 0) 40%),
    linear-gradient(180deg, #fbfbfc 0%, #f3f5f8 52%, #edf1f5 100%);
  z-index: -2;
  display: block;
  pointer-events: none;
}

.container {
  width: min(90%, var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
}

.site-header .container {
  width: min(90%, var(--content-width));
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 203px;
  height: auto;
  max-height: 47px;
  object-fit: contain;
}

.burger-btn {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  z-index: 2000;
  position: relative;
  width: 44px;
  height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.burger-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: transform 0.3s, top 0.3s;
}

.burger-icon::before {
  top: -8px;
}

.burger-icon::after {
  top: 8px;
}

.burger-btn.is-active .burger-icon {
  background-color: transparent;
}

.burger-btn.is-active .burger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.burger-btn.is-active .burger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.main-nav > a,
.main-nav > .nav-dropdown > .nav-link {
  position: relative;
  color: #1d1d1f;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav > a::after,
.main-nav > .nav-dropdown > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.main-nav > a:hover,
.main-nav > .nav-dropdown > .nav-link:hover {
  color: #1d1d1f;
}

.main-nav .is-active {
  color: #1d1d1f;
}

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

.nav-dropdown {
  position: relative;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 7px;
}

.nav-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.65;
}

.menu-backdrop {
  position: fixed;
  inset: 61px 0 0;
  background: rgba(245, 245, 247, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 8;
}

.nav-dropdown-panel {
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  width: 100vw;
  transform: translateY(-14px);
  padding: 18px 0 26px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
  box-shadow: 0 16px 34px rgba(15, 17, 21, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  z-index: 20;
}

.nav-dropdown-panel-inner {
  width: min(90%, var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
}

.nav-dropdown-col-title {
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  color: var(--graphite);
  margin-bottom: 10px;
}

.nav-dropdown-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.nav-dropdown-list li {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity 0.26s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown-list a {
  display: inline-block;
  text-transform: none;
  letter-spacing: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #1d1d1f;
  border-radius: 10px;
  text-rendering: optimizeLegibility;
  transition: color 0s linear, transform 0.46s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-dropdown-list a:hover {
  color: var(--accent);
  transform: translateX(6px);
}

.nav-dropdown.is-open .nav-dropdown-list li,
.nav-dropdown:focus-within .nav-dropdown-list li {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-dropdown.is-open .nav-dropdown-list li:nth-child(1),
.nav-dropdown:focus-within .nav-dropdown-list li:nth-child(1) { transition-delay: 0.02s; }
.nav-dropdown.is-open .nav-dropdown-list li:nth-child(2),
.nav-dropdown:focus-within .nav-dropdown-list li:nth-child(2) { transition-delay: 0.04s; }
.nav-dropdown.is-open .nav-dropdown-list li:nth-child(3),
.nav-dropdown:focus-within .nav-dropdown-list li:nth-child(3) { transition-delay: 0.06s; }
.nav-dropdown.is-open .nav-dropdown-list li:nth-child(4),
.nav-dropdown:focus-within .nav-dropdown-list li:nth-child(4) { transition-delay: 0.08s; }
.nav-dropdown.is-open .nav-dropdown-list li:nth-child(5),
.nav-dropdown:focus-within .nav-dropdown-list li:nth-child(5) { transition-delay: 0.1s; }
.nav-dropdown.is-open .nav-dropdown-list li:nth-child(6),
.nav-dropdown:focus-within .nav-dropdown-list li:nth-child(6) { transition-delay: 0.12s; }
.nav-dropdown.is-open .nav-dropdown-list li:nth-child(7),
.nav-dropdown:focus-within .nav-dropdown-list li:nth-child(7) { transition-delay: 0.14s; }
.nav-dropdown.is-open .nav-dropdown-list li:nth-child(8),
.nav-dropdown:focus-within .nav-dropdown-list li:nth-child(8) { transition-delay: 0.16s; }

.nav-dropdown-preview {
  position: relative;
  width: min(100%, 294px);
  aspect-ratio: 1 / 1;
  justify-self: start;
  align-self: center;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 17, 21, 0.08);
}

.nav-preview-track {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.82s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.nav-preview-image {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  padding: 15%;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
}

.nav-dropdown--solutions .nav-preview-image {
  padding: 30px;
  object-fit: cover;
  clip-path: inset(30px round 18px);
}

.nav-dropdown--solutions .nav-dropdown-preview {
  justify-self: center;
  align-self: center;
}

.nav-dropdown-panel a::after {
  display: none;
}

.nav-dropdown.is-open .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open main,
body.menu-open .site-footer {
  filter: blur(1.6px);
  transition: filter 0.28s ease;
}

.hero {
  position: relative;
  width: 100%;
  height: 780px;
  padding: 96px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 32%, #f4f6f8 72%, #edf1f5 100%);
  isolation: isolate;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.smart-bg.smart-bg--1 {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
  margin-top: clamp(84px, 7vw, 128px);
  margin-left: clamp(12px, 2.2vw, 36px);
  justify-self: start;
}

.hero-badge {
  width: fit-content;
  margin: 0 0 14px;
  color: rgba(15, 17, 21, 0.58);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-size: var(--title-xl-size);
  letter-spacing: var(--title-xl-tracking);
  color: transparent;
  background: linear-gradient(to right, #330867 0%, #30CFD0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: var(--title-xl-weight);
  line-height: 1.02;
  max-width: 12.8ch;
}

.hero-title span {
  display: block;
}

.hero-sub {
  margin-top: 16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.014em;
  max-width: 38ch;
}

.hero-divider {
  display: inline-block;
  width: 120px;
  height: 1px;
  background: rgba(15, 17, 21, 0.15);
  margin: 0 12px 0 0;
  vertical-align: middle;
}

.hero-cta {
  --cta-x: 0px;
  --cta-y: 0px;
  --cta-r: 0deg;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid var(--accent-green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  background: var(--accent-green);
  margin-top: 28px;
  vertical-align: middle;
  box-shadow: 0 18px 36px rgba(15, 17, 21, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: translate(var(--cta-x), var(--cta-y)) rotate(var(--cta-r));
  width: 162px;
  min-height: 42px;
}

.hero-cta:hover {
  box-shadow: 0 12px 30px rgba(15, 17, 21, 0.12);
  background: #0d0d0d;
  border-color: #0d0d0d;
}

.hero-cta.is-engaged {
  box-shadow: 0 12px 30px rgba(15, 17, 21, 0.12);
  background: #0d0d0d;
  border-color: #0d0d0d;
}

.cta-eyes {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.cta-eyes .eye {
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(15, 17, 21, 0.15);
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-eyes .pupil {
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
  transform: translate(var(--eye-x, 0px), var(--eye-y, 0px));
  transition: transform 0.1s linear;
}

.hero-cta.is-blinking .cta-eyes .eye {
  transform: scaleY(0.08);
}

.hero-cta.is-blinking .cta-eyes .pupil {
  opacity: 0;
}

.hero-cta.is-engaged .cta-eyes {
  opacity: 1;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 420px;
}

.device-mock {
  width: min(788px, 100%);
  height: auto;
  object-fit: contain;
  transform: translate(-20px, 18%) scale(1.06);
  transform-origin: center;
}

@media (min-width: 1800px) {
  .hero {
    height: clamp(820px, 46vw, 940px);
  }

  .hero-grid.container {
    width: min(90%, var(--content-width));
  }

  .hero-grid {
    grid-template-columns: minmax(460px, 520px) minmax(0, 1fr);
    gap: clamp(72px, 6vw, 120px);
  }

  .hero-copy {
    max-width: 520px;
    margin-left: 0;
  }

  .hero-visual {
    align-items: flex-start;
  }

  .device-mock {
    width: clamp(700px, 38vw, 820px);
    transform: translate(0, 10%) scale(1.02);
  }
}

.services {
  padding: 96px 0;
  background: transparent;
}

.home-intro {
  padding: 38px 0 36px;
  background: linear-gradient(180deg, #edf1f5 0%, rgba(237, 241, 245, 0) 100%);
}

.home-intro-head {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.home-intro-head h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--title-xl-color);
  font-size: var(--title-xl-size);
  font-weight: var(--title-xl-weight);
  line-height: 1.02;
  letter-spacing: var(--title-xl-tracking);
  text-wrap: balance;
}

.home-intro-head p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.58;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.home-intro-panel {
  position: relative;
  margin-top: clamp(72px, 6.4vw, 96px);
  padding: 0;
}

.home-intro-system {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 22px;
  align-content: center;
  width: 100%;
}

.home-intro-system::before,
.home-intro-system::after {
  display: none;
}

.home-intro-system::before {
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 17, 21, 0.11) 22%, rgba(15, 17, 21, 0.11) 78%, transparent);
}

.home-intro-system::after {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(15, 17, 21, 0.11) 22%, rgba(15, 17, 21, 0.11) 78%, transparent);
}

.home-intro-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 44px 48px;
  overflow: hidden;
  border: none;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.home-intro-row:nth-child(1) {
  background: #e8f0fe;
}

.home-intro-row:nth-child(2) {
  background: #fef7e0;
}

.home-intro-row:nth-child(3) {
  background: #e6f4ea;
}

.home-intro-row:nth-child(4) {
  background: #fce8e6;
}

.home-intro-row > div {
  width: min(100%, 560px);
  align-items: start;
}

.feature-title {
  margin: 0 0 16px;
  padding: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.15vw, 32px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.032em;
  white-space: nowrap;
}

.feature-lead {
  max-width: 34em;
  margin: 0 0 20px;
  padding: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.feature-text {
  max-width: 560px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.home-intro-system .home-intro-row > div {
  gap: 0 !important;
  row-gap: 0 !important;
}

.home-intro-system .home-intro-row > div > * {
  margin-top: 0;
}

.home-intro-system .home-intro-row .feature-title {
  margin-top: 0 !important;
  margin-bottom: 11px !important;
  padding: 0 !important;
}

.home-intro-system .home-intro-row .feature-lead {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  padding: 0 !important;
}

.home-intro-system .home-intro-row .feature-text {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

@media (hover: hover) and (pointer: fine) {
  .home-intro-row {
    transition: transform 0.24s ease;
  }

  .home-intro-row:hover {
    transform: translateY(-2px);
  }
}

@media (min-width: 1025px) {
  #services.services {
    margin-top: 0;
    padding-top: 72px;
    padding-bottom: 96px;
    position: relative;
    z-index: 2;
  }

  .steps {
    padding: 96px 0;
  }

  .solutions {
    padding: 96px 0;
  }

  .trust {
    padding: 96px 0;
  }
}

@media (min-width: 1800px) {
  #services.services {
    margin-top: 0;
  }
}

@media (max-width: 1100px) {
  .home-intro-system {
    gap: 34px 32px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .home-intro-row {
    padding: 44px 40px;
  }

  .feature-title {
    font-size: 28px;
  }
}

@media (min-width: 1025px) and (max-width: 1799px) {
  .hero {
    height: 760px;
  }
}

#services {
  --service-card-size: 358px;
}

.services-head {
  display: grid;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
}

.services-head h2 {
  font-size: var(--title-xl-size);
  letter-spacing: var(--title-xl-tracking);
  font-weight: var(--title-xl-weight);
  color: var(--title-xl-color);
  line-height: 1.02;
}

.services .container {
  overflow: visible;
}

.services-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc((100vw - min(90%, var(--content-width))) / 2);
  padding-right: 0;
}

#services .services-carousel {
  width: calc(100% + (100vw - min(90%, var(--content-width))) / 2);
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

#solutions .services-carousel {
  width: calc(100% + (100vw - min(90%, var(--content-width))) / 2);
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.services-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(358px, 1fr);
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0 18px;
  background: transparent;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  touch-action: auto;
  overscroll-behavior-x: contain;
}

#services .services-track {
  grid-auto-columns: minmax(var(--service-card-size), 1fr);
  padding-right: calc(var(--service-card-size) * 0.5);
  scroll-padding-right: calc(var(--service-card-size) * 0.5);
}

.services-track::-webkit-scrollbar {
  display: none;
}

	  .service-card {
	    background: rgba(255, 255, 255, 0.86);
	    border-radius: 26px;
	    padding: 28px;
	    min-height: 484px;
	    height: 484px;
	    aspect-ratio: 3 / 4;
	    box-shadow: none;
	    display: grid;
	    grid-template-rows: auto auto auto 1fr auto;
	  gap: 10px;
	  position: relative;
	  scroll-snap-align: start;
	  transform-origin: center;
	  will-change: transform;
	  backdrop-filter: blur(14px);
	  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
	              box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
	}

@media (hover: hover) and (pointer: fine) {
  #services .service-card:hover,
  #services .service-card:focus-within,
  .solutions .service-card:hover,
  .solutions .service-card:focus-within {
    transform: translateY(-4px);
    box-shadow: none;
  }
}

/* .service-eyebrow typography → see master eyebrow rule below */

.service-card h3 {
  font-size: var(--title-card-size);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.028em;
  min-height: 54px;
}

	  .service-card p {
	    color: var(--muted);
	    font-size: var(--body-size);
	    line-height: 1.6;
	  }

  #services .service-card p:not(.service-eyebrow) {
    visibility: hidden;
  }

  .service-media {
    border-radius: 20px;
    width: 90%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: transparent;
    display: block;
    object-fit: cover;
    object-position: center bottom;
    margin-top: auto;
    margin-bottom: 20px;
    align-self: end;
  }

#services .service-media {
  width: 85%;
  margin-bottom: calc((100% - 85%) / 2);
  justify-self: center;
  transform: translateY(10%);
  background: transparent;
}

#services .service-card[data-href] {
  cursor: pointer;
}

@media (min-width: 769px) {
  #services .service-media {
    transform: translateY(calc(10% - 20px));
  }
}

  .service-media--bag {
    background: url("chytra-zarovka-chytre-osvetleni.webp") center/cover no-repeat;
  }

.service-media--people {
  background: linear-gradient(135deg, #f0f3f7, #dde3ea);
}

.service-media--app {
  background: linear-gradient(135deg, #cad8ff, #9eb8ff);
}

.service-media--panel {
  background: linear-gradient(135deg, #f0edea, #dedad6);
}

.service-media--chip {
  background: linear-gradient(135deg, #ececec, #d6d6d6);
}

.service-action {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #111;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.service-action::before,
.service-action::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
}

.service-action::after {
  transform: rotate(90deg);
}

.services-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.services-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 17, 21, 0.2);
  cursor: pointer;
}

.services-dots .is-active {
  background: rgba(15, 17, 21, 0.6);
}

.services-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.services-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #f1f1f1;
  color: var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 17, 21, 0.12);
}

.services-arrow svg {
  width: 16px;
  height: 16px;
}

.steps {
  background: #ffffff;
  padding: 96px 0;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   EYEBROW — единый источник правды для всего сайта
   Специфичность: :root + class = 0-2-0 = 20
   Побеждает любой .intro p { font-size } с 0-1-1 = 11
   Desktop 12px · Tablet 11px · Mobile 10px
   ═══════════════════════════════════════════════════════════ */
:root .eyebrow,
:root .service-eyebrow,
:root .trust-eyebrow,
:root .trust-metric-label,
:root .apple-eyebrow,
:root .about-final-cta__eyebrow,
:root .privacy-page-eyebrow,
:root .contact-page-hero__eyebrow,
:root .contact-page-section-label,
:root .contact-page-detail__label,
:root .lead-page-hero__eyebrow,
:root .lead-page-form__eyebrow,
:root .lead-page-intro__eyebrow,
:root .climate-scenarios__eyebrow,
:root .electro-process__eyebrow,
:root .electro-standard__eyebrow,
:root .electro-benefits__eyebrow,
:root .electro-final-cta__eyebrow,
:root .service-logic-grid__eyebrow,
:root .service-editorial-scenarios__eyebrow,
:root .lighting-eyebrow {
  font-size: var(--eyebrow-size);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  color: var(--graphite);
}


.section-head h2 {
  font-size: var(--title-xl-size);
  letter-spacing: var(--title-xl-tracking);
  font-weight: var(--title-xl-weight);
  color: var(--title-xl-color);
  line-height: 1.02;
}

#steps .section-head h2 {
  font-size: var(--title-xl-size);
  letter-spacing: var(--title-xl-tracking);
  font-weight: var(--title-xl-weight);
  color: var(--title-xl-color);
  line-height: 1.02;
}

.steps-panel {
  background: #f3f3f5;
  border-radius: 34px;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.steps-accordion {
  display: grid;
  gap: 10px;
}

.step-item {
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
  padding: 12px 0;
  position: relative;
  z-index: 0;
  background: #f3f3f5;
}

.step-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 560;
  line-height: 1.22;
  letter-spacing: -0.014em;
}

.step-heading {
  display: inline-flex;
  align-items: baseline;
  gap: 13px;
  min-width: 0;
}

.step-index {
  color: var(--accent);
  font-size: 0.92em;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.step-title {
  min-width: 0;
  text-wrap: balance;
}

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

.step-item summary::after {
  content: "";
  width: 16px;
  height: 16px;
  border-right: 2px solid rgba(15, 17, 21, 0.35);
  border-bottom: 2px solid rgba(15, 17, 21, 0.35);
  transform: rotate(45deg) scaleY(1);
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
    border-color 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.step-item[open] summary::after {
  transform: rotate(135deg) scaleY(1);
  border-color: var(--accent);
}

.step-body {
  display: grid;
  gap: 14px;
  margin-top: 0;
  padding-top: 0;
  color: var(--ink);
  font-size: var(--body-size);
  line-height: 1.6;
  max-width: 520px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
    padding-top 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.step-item[open] .step-body {
  opacity: 1;
  padding-top: 12px;
}

.step-item.is-collapsing .step-body {
  transition: max-height 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.15s ease,
    padding-top 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.step-item.is-active {
  z-index: 2;
}

.step-item.is-collapsing {
  z-index: 1;
}

.step-media {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  display: none;
  aspect-ratio: 4 / 3;
  background: #e6e6e6;
}

.step-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.steps-visual {
  display: grid;
  background: transparent;
  margin: -42px -42px -42px 0;
  border-radius: 0 34px 34px 0;
  overflow: hidden;
  align-self: stretch;
  min-height: 100%;
}

.steps-visual img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.steps-visual img.is-current {
  opacity: 1;
}

.steps-visual.is-crossfade img.is-current {
  opacity: 0;
}

.steps-visual.is-crossfade img.is-next {
  opacity: 1;
}

.steps-panel.is-images-off .steps-visual,
.steps-panel.is-images-off .step-media {
  display: none !important;
}

.trust {
  padding: 96px 0;
  background: #ffffff;
}

.trust-head {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.trust-card {
  background: #f7f7f9;
  border-radius: 34px;
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.3fr);
  align-items: center;
  gap: 40px;
}

.trust-eyebrow {
  margin-bottom: 16px;
}

.trust-card h2,
.trust-head h2 {
  font-size: var(--title-xl-size);
  letter-spacing: var(--title-xl-tracking);
  margin-bottom: 16px;
  font-weight: var(--title-xl-weight);
  color: var(--title-xl-color);
  line-height: 1.02;
}

.trust-card-media {
  display: grid;
  place-items: center;
}

.trust-card-media img {
  width: min(820px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(15, 17, 21, 0.16));
}

.trust-card-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.trust-metric {
  border-top: 1px solid rgba(15, 17, 21, 0.12);
  padding-top: 18px;
  display: grid;
  gap: 10px;
}

/* .trust-metric-label typography → master eyebrow rule */

.trust-metric-value {
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.trust-metric-desc {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 40px 44px;
  text-align: left;
  max-width: 1100px;
  margin: 0;
}

.trust-metric {
  border-top: 1px solid rgba(15, 17, 21, 0.12);
  padding-top: 20px;
  display: grid;
  gap: 10px;
}

.trust-metric-label {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 600;
}

.trust-metric-value {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.024em;
}

.trust-metric-desc {
  color: var(--muted);
  font-size: var(--body-size);
  line-height: 1.6;
}

.solutions {
  padding: 96px 0;
  --solution-card-scale: 0.81;
}

.solutions .services-track {
  grid-auto-columns: calc(358px * var(--solution-card-scale));
  padding-right: calc(358px * var(--solution-card-scale) * 0.5);
  scroll-padding-right: calc(358px * var(--solution-card-scale) * 0.5);
  overflow-y: hidden;
  touch-action: auto;
  gap: 24px;
  column-gap: 24px;
}

.solutions .service-card {
  height: calc(484px * var(--solution-card-scale));
  min-height: calc(484px * var(--solution-card-scale));
}

.solution-card {
  position: relative;
  color: #fff;
  background: transparent;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.65) 72%
  );
  z-index: 0;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card .service-eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.solution-card h3 {
  color: #fff;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.85);
}

.solution-card .service-action {
  position: absolute;
  background: #fff;
  color: #111;
}

.solution-card .service-action::before,
.solution-card .service-action::after {
  background: #111;
}

.solution-media {
  position: absolute;
  inset: 0;
  height: auto;
  margin: 0;
  border-radius: inherit;
  background: var(--bg-image) center / cover no-repeat;
  z-index: 0;
  filter: grayscale(1) brightness(0.65) contrast(1.1);
}

.solutions .solution-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.solutions .service-card {
  height: auto;
  min-height: unset;
  width: 100%;
  aspect-ratio: 1 / 2;
}

.solutions .solution-media {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  margin: 0;
  border-radius: inherit;
  background-size: cover;
  background-position: center;
  filter: none;
}

.solutions .solution-card::before {
  background: none;
}

.solutions .solution-card h3 {
  font-size: var(--title-card-size);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.028em;
  max-width: 240px;
}

.solutions .solution-card p {
  font-size: var(--body-size);
  line-height: 1.6;
  max-width: 240px;
}

.solutions .solution-card > p:not(.service-eyebrow) {
  margin-top: auto;
}

.solutions .solution-card .service-action {
  right: 16px;
  left: auto;
  bottom: 16px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(15, 17, 21, 0.08);
  margin-top: 40px;
}

.btn.primary {
  background: #0d0d0d;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-cta {
  padding: 96px 0;
  background: #ffffff;
}

.contact-cta-title {
  font-size: var(--title-xl-size);
  letter-spacing: var(--title-xl-tracking);
  font-weight: var(--title-xl-weight);
  color: var(--title-xl-color);
  line-height: 1.02;
  margin-bottom: 28px;
  text-align: center;
}

.contact-cta-wrap {
  width: min(90%, var(--content-width));
}

.contact-cta-card {
  background: #f3f3f5;
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 560px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.contact-cta-copy {
  padding: clamp(34px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}

.contact-cta-copy > p:not(.contact-cta-note) {
  color: var(--ink);
  font-size: clamp(24px, 2.3vw, 32px);
  letter-spacing: -0.028em;
  font-weight: 600;
  line-height: 1.12;
  max-width: 18ch;
}

.contact-cta-note {
  color: color-mix(in srgb, var(--graphite) 72%, #9aa0ac);
  font-size: var(--body-size);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

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

.contact-cta-media {
  min-height: 100%;
}

.contact-cta-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.btn.primary.contact-cta-btn {
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  padding: 9px 23px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.btn.primary.contact-cta-btn.creepy-btn {
  background: transparent;
}

.contact-cta .creepy-btn {
  --cb-black: #000;
  --cb-white: #f5f5f7;
  --cb-primary: var(--accent);
  --cb-primary-hover: color-mix(in srgb, var(--accent) 84%, #000);
  position: relative;
  --cb-w: 169px;
  --cb-h: 47px;
  display: inline-block;
  width: var(--cb-w);
  height: var(--cb-h);
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: var(--cb-white);
  overflow: visible;
  outline: 0.1875em solid transparent;
  transition: outline 0.1s linear;
}

.contact-cta .creepy-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--cb-black);
  z-index: 0;
}

.contact-cta .creepy-btn__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: inherit;
  box-shadow: none;
  background: var(--cb-primary);
  color: #fff;
  transform-origin: 1.25em 50%;
  transition:
    background-color 0.32s ease,
    transform 0.42s cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 0.32s ease;
}

.contact-cta .creepy-btn:hover .creepy-btn__cover {
  background: var(--cb-primary);
}

.contact-cta .creepy-btn:focus-visible {
  outline-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

.contact-cta .creepy-btn:focus-visible .creepy-btn__cover,
.contact-cta .creepy-btn:hover .creepy-btn__cover,
.contact-cta .creepy-btn.is-engaged .creepy-btn__cover {
  transform: rotate(-12deg);
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1.65);
}

.contact-cta .creepy-btn:active .creepy-btn__cover {
  transform: rotate(0);
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

.contact-cta .creepy-btn__eyes {
  position: absolute;
  right: 24px;
  bottom: 5px;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.14s ease;
}

.contact-cta .creepy-btn__eye {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cb-white);
  overflow: hidden;
  position: relative;
  animation: contactEyeBlink 3s infinite;
  animation-play-state: paused;
}

.contact-cta .creepy-btn__pupil {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--cb-black);
  transform: translate(var(--cb-eye-x, 0px), var(--cb-eye-y, 0px));
}

.contact-cta .creepy-btn:hover .creepy-btn__eyes,
.contact-cta .creepy-btn:focus-visible .creepy-btn__eyes,
.contact-cta .creepy-btn.is-engaged .creepy-btn__eyes {
  opacity: 1;
}

.contact-cta .creepy-btn:hover .creepy-btn__eye,
.contact-cta .creepy-btn:focus-visible .creepy-btn__eye,
.contact-cta .creepy-btn.is-engaged .creepy-btn__eye {
  animation-play-state: running;
}

@keyframes contactEyeBlink {
  0%,
  92%,
  100% {
    height: 18px;
    animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
  }
  96% {
    height: 0;
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
}

@media (max-width: 900px) {
  .contact-cta-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-cta-copy {
    padding: 30px 28px 20px;
  }

  .contact-cta-media {
    order: -1;
    min-height: 260px;
    border-bottom: 1px solid rgba(15, 17, 21, 0.08);
  }
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 60px 0 96px;
  }

  .contact-cta-title {
    margin-bottom: 16px;
  }

  .contact-cta-copy {
    padding: 24px 22px 14px;
    gap: 16px;
  }

  .contact-cta-copy p {
    font-size: clamp(20px, 6.2vw, 28px);
    line-height: 1.16;
  }

  .contact-cta-media {
    min-height: 220px;
  }
}

.site-footer {
  padding: 48px 0 56px;
  background: var(--footer-bg);
  color: #d9d9d9;
}

.site-footer .container {
  display: grid;
  gap: 24px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #fff;
}

.footer-brand img {
  width: 168px;
  height: auto;
  filter: none;
  margin-left: -6px;
}

.footer-block h4 {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-block ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-block a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-block a:hover {
  color: #fff;
}

.privacy-section a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.privacy-section a:hover {
  color: var(--accent);
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li::before {
  content: ">";
  color: var(--accent-green);
  font-weight: 600;
}

.footer-links a {
  color: #d9d9d9;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  :root {
    --title-xl-size: clamp(40px, 4.8vw, 56px);
    --title-card-size: var(--title-card-size-tablet);
    --lead-size: 18px;
    --body-size: 15px;
    --eyebrow-size: 14px;
  }

  .brand-logo {
    width: 240px;
    max-height: 56px;
  }

  .hero {
    height: 600px;
  }

  .device-mock {
    width: min(560px, 90%);
    transform: translate(-10px, 0);
  }

  .hero-cta,
  .hero-cta:hover {
    transform: none;
  }

  .home-intro {
    padding: 34px 0 26px;
  }

  .home-intro-head {
    margin-bottom: 0;
  }

  .home-intro-head p {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.58;
  }

  .home-intro-panel {
    margin-top: 52px;
    padding: 0;
  }

  .home-intro-system {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .home-intro-system::before {
    display: none;
  }

  .home-intro-system::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    background: none;
  }

  .home-intro-row + .home-intro-row {
    border-top: none;
  }

  .home-intro-row {
    display: block;
    min-height: 0;
    padding: 28px 24px;
  }

  .home-intro-row > div {
    width: 100%;
    display: block;
  }

  .feature-title {
    margin: 0 0 16px;
    padding: 0;
    font-size: 25px;
    line-height: 1.14;
    white-space: normal;
  }

  .feature-lead {
    margin: 0 0 18px;
    padding: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .feature-text {
    margin: 0;
    padding: 0;
    font-size: var(--body-size);
    line-height: 1.65;
  }

  .services-carousel {
    margin-right: 0;
    padding-right: 0;
  }

  .services-track {
    grid-auto-columns: minmax(320px, 1fr);
  }

  #services {
    --service-card-size: 320px;
  }

  .solutions .services-track {
    grid-auto-columns: calc(320px * var(--solution-card-scale));
    padding-right: calc(320px * var(--solution-card-scale) * 0.5);
    scroll-padding-right: calc(320px * var(--solution-card-scale) * 0.5);
    gap: 24px;
    column-gap: 24px;
  }

    .service-card {
      min-height: 480px;
      height: 480px;
      padding: 30px;
    }

    .solutions .service-card {
      min-height: unset;
      height: auto;
      width: 100%;
    }

    .service-media {
      height: 210px;
    }


    .solution-card {
      min-height: 300px;
    }

  .trust-card {
    padding: 44px;
    gap: 32px;
  }

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

@media (max-width: 900px) {
  .burger-btn {
    display: block;
  }

  .main-nav {
    display: none !important;
  }

  .main-nav.is-active {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    transform: translateX(0);
    transition: transform 0.3s ease;
    z-index: 1999;
  }

  .nav-dropdown {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .main-nav > .nav-dropdown > .nav-link {
    display: inline-flex;
    justify-content: center;
    width: auto;
    font-size: 1.5rem;
    line-height: 1.25;
    color: #000;
    text-decoration: none;
  }

  .menu-backdrop {
    display: none !important;
  }

  body.menu-open main,
  body.menu-open .site-footer {
    filter: none;
  }

  .nav-link::before {
    display: none;
  }

  .nav-dropdown-panel {
    display: none !important;
  }

  .hero {
    padding-top: 84px;
  }

  .steps-panel {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 32px;
  }

  .steps-accordion {
    width: 100%;
  }

  .step-item {
    padding: 13px 0;
  }

  .step-item summary {
    font-size: 18px;
    font-weight: 560;
    line-height: 1.24;
    letter-spacing: -0.006em;
  }

  .step-heading {
    gap: 12px;
  }

  .step-index {
    font-size: 0.95em;
    font-weight: 500;
  }

  .steps-visual {
    display: none;
  }

  .step-media {
    display: block;
  }

  .step-media img[src*="technicky-projekt-smartport"] {
    object-position: center top;
  }

  .footer-top,
  .footer-grid,
  .footer-note {
    margin-left: 0;
    padding-left: 0;
  }

}

@media (max-width: 900px) {
  .main-nav.is-active {
    overflow-y: auto;
    padding: 104px 24px 56px;
    justify-content: flex-start;
  }

  .main-nav.is-active > a,
  .main-nav.is-active > .nav-dropdown {
    position: relative;
    width: min(100%, 430px);
    padding-bottom: 26px;
  }

  .main-nav.is-active > a {
    text-align: center;
    font-size: 1.5rem !important;
    line-height: 1.25;
    letter-spacing: 0.08em;
  }

  .main-nav.is-active > .nav-dropdown > .nav-link {
    font-size: 1.5rem !important;
    line-height: 1.25;
    letter-spacing: 0.08em;
  }

  .main-nav.is-active > a:not(:last-child)::after,
  .main-nav.is-active > .nav-dropdown:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    top: auto;
    width: min(100%, 360px);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 17, 21, 0.12) 18%, rgba(15, 17, 21, 0.12) 82%, transparent 100%);
    transform: translateX(-50%);
    transform-origin: center;
  }

  .main-nav.is-active .nav-dropdown {
    display: grid;
    justify-items: center;
    gap: 18px;
  }

  .main-nav.is-active .nav-link::before {
    display: block;
    transition: transform 0.22s ease;
  }

  .main-nav.is-active .nav-dropdown.is-open .nav-link::before {
    transform: rotate(-135deg) translate(-1px, -1px);
  }

  .main-nav.is-active .nav-dropdown-panel {
    position: static;
    display: grid !important;
    width: min(100%, 390px);
    max-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.is-active .nav-dropdown.is-open .nav-dropdown-panel {
    max-height: 560px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav.is-active .nav-dropdown-panel-inner {
    width: 100%;
    display: block;
    padding: 0;
  }

  .main-nav.is-active .nav-dropdown-preview {
    display: none;
  }

  .main-nav.is-active .nav-dropdown-list {
    gap: 6px;
    width: 100%;
    justify-items: center;
  }

  .main-nav.is-active .nav-dropdown-list li {
    opacity: 1;
    transform: none;
  }

  .main-nav.is-active .nav-dropdown-list a {
    display: block;
    width: 100%;
    padding: 12px 10px;
    font-size: 22px !important;
    line-height: 1.28;
    font-weight: 600;
    text-align: center;
    color: #4f545d !important;
    text-transform: none;
    letter-spacing: 0;
  }
}

  @media (max-width: 768px) {
  .brand-logo {
    width: 200px;
    max-height: 48px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 36px 0 28px;
    overflow: visible;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: center;
  }

  .hero-visual {
    order: 6;
    justify-self: center;
    min-height: auto;
    margin-top: 18px;
  }

  .device-mock {
    width: min(396px, 94vw);
    max-height: 520px;
    margin: 0 auto;
    transform: none;
    display: block;
  }

  .hero-copy {
    display: contents;
  }

  .hero-badge {
    order: 1;
    max-width: min(88vw, 28em);
    margin: 0 auto 12px;
    text-align: center;
    font-size: 10.5px;
    line-height: 1.45;
    letter-spacing: 0.07em;
  }

  .hero-title {
    order: 2;
    font-size: var(--title-xl-size);
    letter-spacing: var(--title-xl-tracking);
    font-weight: var(--title-xl-weight);
    color: transparent;
    line-height: 1.06;
    max-width: 13.5ch;
    text-align: center;
    margin: 0 auto 14px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
  }

  .hero-sub {
    order: 3;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
    max-width: 22.5em;
    text-wrap: pretty;
  }

  .hero-divider {
  display: none;
  width: 120px;
  height: 1px;
  background: rgba(15, 17, 21, 0.15);
  margin: 0 12px 0 0;
  vertical-align: middle;
}

  .hero-cta {
  order: 4;
  --cta-x: 0px;
  --cta-y: 0px;
  --cta-r: 0deg;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid var(--accent-green);
  color: #fff;
  font-weight: 600;
  background: var(--accent-green);
  margin: 44px auto 0;
  vertical-align: middle;
  box-shadow: 0 18px 36px rgba(15, 17, 21, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: translate(var(--cta-x), var(--cta-y)) rotate(var(--cta-r));
  width: 162px;
  min-height: 42px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

  .cta-eyes {
      display: none;
      top: -24px;
      gap: 6px;
    }

  .cta-eyes .eye {
    width: 18px;
    height: 18px;
  }

  .cta-eyes .pupil {
    top: 5px;
    left: 5px;
  }

  .hero-cta,
  .hero-cta:hover {
    transform: none;
  }

  .services-carousel {
    margin-right: 0;
    padding-right: 0;
  }

    .services-track {
      grid-auto-columns: minmax(308px, 1fr);
    }

    #services {
      --service-card-size: 308px;
    }

  .solutions .services-track {
    grid-auto-columns: calc(308px * var(--solution-card-scale));
    padding-right: calc(308px * var(--solution-card-scale) * 0.5);
    scroll-padding-right: calc(308px * var(--solution-card-scale) * 0.5);
    gap: 24px;
    column-gap: 24px;
  }

      .service-card {
        min-height: 420px;
        height: 420px;
        padding: 24px;
      }

      .solutions .service-card {
        min-height: unset;
        height: auto;
        width: 100%;
      }

      #services .service-card h3 {
        min-height: 50px;
      }

      #services .service-card p:not(.service-eyebrow) {
        min-height: 44px;
        max-height: 44px;
        overflow: hidden;
      }

      #services .service-media {
        width: 85%;
        aspect-ratio: 1 / 1;
        height: auto;
        transform: translateY(-6%);
      }


    .solution-card {
      min-height: 260px;
    }

  .trust {
    padding: 76px 0;
  }

  .trust-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .services,
  .steps,
  .solutions,
  .contact-cta {
    padding: 76px 0;
  }

  .services-head,
  .section-head,
  .trust-head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .contact-cta-title {
    margin-bottom: 20px;
  }

  .contact-cta-copy {
    padding: 24px 22px 18px;
    gap: 14px;
  }

  .contact-cta-copy p {
    font-size: clamp(20px, 5.8vw, 28px);
    line-height: 1.16;
  }

  .trust-card-media {
    order: -1;
  }

  .trust-card-media img {
    width: min(420px, 90%);
  }
}

@media (max-width: 700px) {
  :root {
    --title-xl-size: clamp(38px, 4.8vw, 68px);
    --title-card-size: var(--title-card-size-mobile);
    --lead-size: clamp(18px, 1.35vw, 21px);
    --eyebrow-size: 13px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .cta {
    align-items: flex-start;
  }

  .services-head {
    justify-items: center;
    text-align: center;
  }
}

.contact-page-main {
  padding-top: 118px;
}

.contact-page-hero {
  padding: clamp(56px, 8vw, 110px) 0 32px;
}

.contact-page-hero__inner {
  max-width: 980px;
  text-align: center;
}

.contact-page-hero__eyebrow,
.contact-page-section-label {
  margin-bottom: 16px;
}

.contact-page-hero h1 {
  margin: 0 auto;
  max-width: 11ch;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--ink);
}

.contact-page-hero__lead {
  margin: 24px auto 0;
  max-width: 38ch;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.contact-page-details {
  padding: 32px 0 44px;
}

.contact-page-details__intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-page-details__intro h2,
.contact-page-address__copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--ink);
}

.contact-page-details__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.contact-page-detail {
  min-width: 0;
  text-align: center;
}

.contact-page-detail__label {
  margin-bottom: 16px;
}

.contact-page-detail a,
.contact-page-detail p:last-child {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.contact-page-address {
  padding: 16px 0 96px;
}

.contact-page-address__frame {
  display: block;
  padding: 0;
}

.contact-page-address__copy {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.contact-page-address__copy p:not(.contact-page-section-label) {
  margin: 18px 0 0;
  max-width: none;
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: -0.01em;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .contact-page-main {
    padding-top: 98px;
  }

  .contact-page-hero {
    padding-top: 42px;
  }

}

@media (max-width: 768px) {
  .contact-page-hero__inner {
    text-align: left;
  }

  .contact-page-details__intro {
    text-align: center;
  }

  .contact-page-hero h1,
  .contact-page-hero__lead {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .contact-page-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.98;
  }

  .contact-page-hero__lead {
    font-size: 19px;
    line-height: 1.5;
  }

  .contact-page-details {
    padding-top: 16px;
  }

  .contact-page-details__grid {
    gap: 14px;
    margin-top: 26px;
  }

  .contact-page-detail {
    text-align: center;
  }

  .contact-page-detail a,
  .contact-page-detail p:last-child {
    font-size: 20px;
    line-height: 1.3;
  }

  .contact-page-address {
    padding-bottom: 72px;
  }

  .contact-page-address__frame {
    padding: 0;
  }

  .contact-page-address__copy h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .contact-page-address__copy p:not(.contact-page-section-label) {
    font-size: 16px;
  }
}

.lead-page-main {
  padding-top: 118px;
  padding-bottom: 88px;
}

body.lead-page {
  background: #f7f8fa;
}

body.lead-page .bg-shell {
  display: none;
}

.lead-page-hero {
  padding: clamp(26px, 3.6vw, 46px) 0 18px;
}

.lead-page-hero__inner {
  max-width: 980px;
  text-align: center;
}

.lead-page-hero h1 {
  margin: 0 auto;
  max-width: 15ch;
  font-size: clamp(52px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.lead-page-hero__lead {
  margin: 18px auto 0;
  max-width: 40ch;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.56;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.lead-page-shell {
  padding: 24px 0 0;
}

.lead-page-grid {
  display: block;
}

.lead-page-form-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}

.lead-page-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(15, 17, 21, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.045);
}

.lead-page-hero__eyebrow,
.lead-page-form__eyebrow {
  margin: 0 0 14px;
}

.lead-page-form__eyebrow {
  margin-bottom: 0;
}

.lead-page-form__header {
  display: grid;
  gap: 18px;
}

.lead-page-form__header h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--ink);
  font-weight: 600;
}

.lead-page-form__header p {
  margin: 10px 0 0;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.58;
  color: var(--muted);
}

.lead-page-form__header .lead-page-form__eyebrow {
  margin: 0;
}

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

.lead-page-form__field {
  display: grid;
  gap: 8px;
}

.lead-page-form__field--full {
  grid-column: 1 / -1;
}

.lead-page-form__field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(29, 29, 31, 0.78);
}

.lead-page-form__hint {
  margin: -2px 0 2px;
  font-size: 13px;
  line-height: 1.5;
  color: #5f6575;
}

.lead-page-form__field input,
.lead-page-form__field textarea {
  width: 100%;
  border: 1px solid rgba(15, 17, 21, 0.18);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 17px 18px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.lead-page-form__field input {
  min-height: 58px;
}

.lead-page-form__field textarea {
  min-height: 168px;
  resize: vertical;
}

.lead-page-choice-group {
  margin: 0;
  padding: 0 0 28px;
  border: 0;
  display: block;
}

.lead-page-choice-group + .lead-page-choice-group {
  padding-top: 4px;
}

.lead-page-choice-group legend {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.82);
}

.lead-page-choice-group legend::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  margin-left: 14px;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0.12), rgba(29, 29, 31, 0.035) 74%, transparent);
}

.lead-page-choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-page-date-selects {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(150px, 0.85fr);
  gap: 12px;
  max-width: 620px;
}

.lead-page-date-select {
  display: grid;
  gap: 7px;
}

.lead-page-date-select span {
  color: rgba(29, 29, 31, 0.58);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.lead-page-date-select select {
  width: 100%;
  min-height: 48px;
  padding: 0 44px 0 16px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  border-radius: 16px;
  appearance: none;
  -webkit-appearance: none;
  color: rgba(29, 29, 31, 0.9);
  background:
    linear-gradient(45deg, transparent 50%, rgba(29, 29, 31, 0.52) 50%) calc(100% - 21px) 52% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(29, 29, 31, 0.52) 50%, transparent 50%) calc(100% - 16px) 52% / 6px 6px no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f2f4f7 100%);
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  box-shadow:
    0 8px 22px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lead-page-date-select select:focus {
  outline: none;
  border-color: rgba(0, 113, 227, 0.42);
  box-shadow:
    0 0 0 4px rgba(0, 113, 227, 0.1),
    0 10px 24px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.lead-page-date-group .lead-page-form__hint {
  margin-top: 12px;
}

.lead-page-choice-pill {
  position: relative;
  cursor: pointer;
}

.lead-page-choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lead-page-choice-pill span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
  color: rgba(29, 29, 31, 0.86);
  font-size: 14.5px;
  font-weight: 450;
  line-height: 1.35;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.lead-page-choice-pill:hover span {
  background: linear-gradient(180deg, #ffffff 0%, #f2f4f7 100%);
  border-color: rgba(29, 29, 31, 0.22);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.lead-page-choice-pill input:checked + span {
  background: #1d1d1f;
  border-color: #1d1d1f;
  color: #ffffff;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lead-page-choice-pill input:focus-visible + span {
  outline: 2px solid rgba(0, 113, 227, 0.3);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.08);
}

.lead-page-form__field input:focus,
.lead-page-form__field textarea:focus {
  border-color: rgba(0, 113, 227, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
  background: #fff;
}

.lead-page-form__submit {
  justify-self: start;
  --cb-black: #000;
  --cb-white: #f5f5f7;
  --cb-primary: var(--accent);
  --cb-w: 169px;
  --cb-h: 47px;
  position: relative;
  display: inline-block;
  width: var(--cb-w);
  height: var(--cb-h);
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  cursor: pointer;
  overflow: visible;
  outline: 0.1875em solid transparent;
  box-shadow: none;
  transition: outline 0.1s linear;
}

.lead-page-form__submit::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--cb-black);
  z-index: 0;
}

.lead-page-form__submit .creepy-btn__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--cb-primary);
  color: #fff;
  transform-origin: 1.25em 50%;
  transition:
    background-color 0.32s ease,
    transform 0.42s cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 0.32s ease;
}

.lead-page-form__submit:focus-visible {
  outline-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

.lead-page-form__submit:focus-visible .creepy-btn__cover,
.lead-page-form__submit:hover .creepy-btn__cover,
.lead-page-form__submit.is-engaged .creepy-btn__cover,
.lead-page-form__submit.is-peeking .creepy-btn__cover {
  transform: rotate(-12deg);
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1.65);
}

.lead-page-form__submit:active .creepy-btn__cover {
  transform: rotate(0);
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

.lead-page-form__submit .creepy-btn__eyes {
  position: absolute;
  right: 24px;
  bottom: 5px;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.14s ease;
}

.lead-page-form__submit .creepy-btn__eye {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cb-white);
  overflow: hidden;
  position: relative;
  animation: contactEyeBlink 3s infinite;
  animation-play-state: paused;
}

.lead-page-form__submit .creepy-btn__pupil {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--cb-black);
  transform: translate(var(--cb-eye-x, 0px), var(--cb-eye-y, 0px));
}

.lead-page-form__submit:hover .creepy-btn__eyes,
.lead-page-form__submit:focus-visible .creepy-btn__eyes,
.lead-page-form__submit.is-engaged .creepy-btn__eyes,
.lead-page-form__submit.is-peeking .creepy-btn__eyes {
  opacity: 1;
}

.lead-page-form__submit:hover .creepy-btn__eye,
.lead-page-form__submit:focus-visible .creepy-btn__eye,
.lead-page-form__submit.is-engaged .creepy-btn__eye,
.lead-page-form__submit.is-peeking .creepy-btn__eye {
  animation-play-state: running;
}

.lead-page-form__submit-note {
  margin: -8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5f6575;
}

.lead-page-form__status {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.lead-page-form__status {
  min-height: 1.6em;
}

.lead-page-contact-section {
  padding: 28px 0 0;
  margin-top: 34px;
}

.lead-page-contact {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 17, 21, 0.08);
}

.lead-page-contact__text {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.lead-page-contact__text a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.lead-success-main {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 260px);
}

.lead-success {
  padding: clamp(34px, 5vw, 72px) 0 clamp(44px, 6vw, 84px);
}

.lead-success__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(32px, 4.2vw, 58px);
  border: 1px solid rgba(15, 17, 21, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.09), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.045);
}

.lead-success__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 0 0 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 11%, #ffffff);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(0, 113, 227, 0.14);
}

.lead-success__mark svg {
  width: 34px;
  height: 34px;
}

.lead-success h1 {
  margin: 0 auto;
  max-width: 14ch;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--ink);
}

.lead-success__lead {
  margin: 20px auto 0;
  max-width: 48ch;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.lead-success__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 30px;
}

.lead-success__button,
.lead-success__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.lead-success__button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.lead-success__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 28px rgba(0, 113, 227, 0.2);
}

.lead-success__link {
  color: var(--ink);
  background: #f7f8fa;
  border: 1px solid rgba(15, 17, 21, 0.1);
}

@media (max-width: 1100px) {
  .lead-page-main {
    padding-top: 98px;
  }
}

@media (max-width: 768px) {
  .lead-page-main {
    padding-top: 74px;
    padding-bottom: 64px;
  }

  .lead-page-hero {
    padding-top: 16px;
  }

  .lead-page-hero__inner {
    text-align: center;
  }

  .lead-page-hero h1,
  .lead-page-hero__lead {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }

  .lead-page-hero h1 {
    max-width: 12ch;
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .lead-page-hero__lead,
  .lead-page-contact p {
    font-size: 16px;
  }

  .lead-page-form__header p {
    font-size: 15px;
  }

  .lead-page-form {
    padding: 22px 18px;
    border-radius: 28px;
  }

  .lead-page-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lead-page-choice-pills {
    gap: 8px;
  }

  .lead-page-date-selects {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .lead-page-date-select select {
    min-height: 46px;
    border-radius: 15px;
  }

  .lead-page-choice-group {
    padding-bottom: 24px;
  }

  .lead-page-choice-group + .lead-page-choice-group {
    padding-top: 2px;
  }

  .lead-page-choice-pill {
    max-width: 100%;
  }

  .lead-page-choice-pill span {
    min-height: 42px;
    padding: 9px 14px;
  }

  .lead-page-form__submit {
    justify-self: start;
  }

  .lead-page-contact-section {
    margin-top: 52px;
    padding-top: 36px;
  }

  .lead-success-main {
    min-height: auto;
  }

  .lead-success__inner {
    text-align: left;
    padding: 28px 20px;
    border-radius: 28px;
  }

  .lead-success h1,
  .lead-success__lead {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .lead-success h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .lead-success__actions {
    align-items: stretch;
    justify-content: stretch;
    flex-direction: column;
  }

}

@media (max-width: 700px) {
  .lead-page-date-selects {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: min(100%, 420px);
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .lead-page-date-select {
    gap: 7px;
    padding: 0;
    text-align: left;
  }

  .lead-page-date-select span {
    font-size: 11px;
  }

  .lead-page-date-select select {
    min-height: 46px;
    padding: 0 34px 0 12px;
    border: 1px solid rgba(29, 29, 31, 0.14);
    border-radius: 15px;
    background:
      linear-gradient(45deg, transparent 50%, rgba(29, 29, 31, 0.52) 50%) calc(100% - 19px) 52% / 6px 6px no-repeat,
      linear-gradient(135deg, rgba(29, 29, 31, 0.52) 50%, transparent 50%) calc(100% - 14px) 52% / 6px 6px no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f2f4f7 100%);
    box-shadow:
      0 8px 22px rgba(15, 23, 42, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    text-align: left;
    text-align-last: left;
    font-size: 15px;
    font-weight: 400;
  }

  .lead-page-date-select select:focus {
    box-shadow:
      0 0 0 4px rgba(0, 113, 227, 0.1),
      0 10px 24px rgba(15, 23, 42, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .hero-title,
  .contact-page-hero h1,
  .lead-page-hero h1,
  .lead-success h1 {
    font-size: clamp(48px, 6.2vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.044em;
  }

  .hero-sub,
  .contact-page-hero__lead,
  .lead-page-hero__lead,
  .lead-success__lead {
    font-size: clamp(20px, 1.7vw, 25px);
    line-height: 1.48;
    letter-spacing: -0.014em;
  }

  .hero-title {
    font-size: clamp(40px, 10vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.036em;
    max-width: 11.5ch;
  }

  .hero-sub {
    font-size: clamp(15.5px, 4.1vw, 17px);
    line-height: 1.5;
  }

  .contact-page-details__intro h2,
  .contact-page-address__copy h2,
  .lead-page-contact h2,
  .lead-page-form__header h2 {
    font-size: clamp(38px, 4.8vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.044em;
  }

  .contact-page-address__copy p:not(.contact-page-section-label),
  .lead-page-contact p,
  .lead-page-form__header p {
    font-size: clamp(18px, 1.35vw, 21px);
    line-height: 1.56;
  }
}
